/* ============================================
   VIRAL MEDIA — MAIN CSS
   Charte : Bleu #1A4FE0 / Noir #0A0A0A / Blanc #FFF
   ============================================ */


/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root,
html {
  color-scheme: dark;
}

:root {
  --blue:       #1A4FE0;
  --blue-dark:  #1240C4;
  --blue-light: #2D62F5;
  --accent:     #1A4FE0;
  --black:      #0A0A0A;
  --white:      #FFFFFF;
  --gray:       #1A1A1A;
  --gray-mid:   #2E2E2E;
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-tertiary:  rgba(255,255,255,0.35);
  --text-muted:     #888;
  --bg-secondary:   #111111;
  --border-color:   rgba(255,255,255,0.08);

  --font-display: 'Anton', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor {
    width: 12px; height: 12px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    top: 0; left: 0;
    opacity: 0;
  }
  .cursor-follower {
    width: 40px; height: 40px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
    top: 0; left: 0;
    opacity: 0;
  }
  body:hover .cursor { opacity: 1; }
  body:hover .cursor-follower { opacity: 0.6; }
}
@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ── SELECTION ── */
::selection { background: var(--blue); color: var(--white); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; line-height: 1; }
h4, h5, h6, .label { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.bg-blue    { background: var(--blue); }
.bg-black   { background: var(--black); }
.bg-gray    { background: var(--gray); }

/* ── STICKER BADGE (signature brand element) ── */
.sticker {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  text-transform: uppercase;
  padding: 8px 20px;
  clip-path: polygon(2% 0%, 98% 2%, 100% 95%, 97% 100%, 2% 98%, 0% 5%);
  position: relative;
}
.sticker .highlight {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 2px 14px;
  border-radius: 6px;
  margin-top: 4px;
  font-family: var(--font-display);
}

/* ── BUTTON ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 980px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26,79,224,0.4), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(26,79,224,0.5), 0 1px 0 rgba(255,255,255,0.1) inset;
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-white:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,79,224,0.4);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(26,79,224,0.15), 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.nav-logo .logo-viral {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
}
.nav-logo .logo-media {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  background: var(--blue);
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25,0.1,0.25,1);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--white); }
.nav-links a.nav-active::after { width: 100%; background: var(--accent); }
.nav-cta { font-size: 13px !important; padding: 10px 24px !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 28px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--white);
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-wrap.blue-bg {
  background: var(--blue);
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--black);
}
.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-wrap.blue-bg .ticker-item { color: var(--white); }
.ticker-wrap.blue-bg .ticker-item .dot { background: var(--white); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(26,79,224,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(26,79,224,0.08) 0%, transparent 50%),
    #0a0a0a;
  z-index: 0;
}
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 50%, transparent);
  z-index: 2;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,79,224,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,79,224,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding-top: 100px;
}
.hero-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
  content: '';
  display: block; width: 40px; height: 2px;
  background: var(--blue);
}
.hero-title {
  font-size: clamp(26px, 9.5vw, 140px);
  line-height: 0.9;
  margin-bottom: 32px;
  color: var(--white);
}
.hero-words .hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewY(3deg);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94) var(--d,0ms),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94) var(--d,0ms);
}
.hero-words.active .hw {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}
.hero-title .blue-stroke {
  -webkit-text-stroke: 3px var(--blue);
  color: transparent;
}
.hero-title .blue-fill {
  color: var(--blue);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero-subtitle strong { color: var(--white); font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--blue); }
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 2px; height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: rgba(26,26,26,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.1,0.25,1);
  cursor: pointer;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,79,224,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  background: rgba(26,26,26,0.9);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(26,79,224,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,79,224,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(26,79,224,0.12);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(26,79,224,0.25); }
.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(26,79,224,0.3);
  padding: 4px 16px;
  border-radius: 980px;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO VIDEO ── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}

/* ── PRESTIGE BRANDS ── */
.prestige-brands {
  margin-top: 48px;
  margin-bottom: 24px;
}
.prestige-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.prestige-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.prestige-pill {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(26,79,224,0.5);
  background: rgba(26,79,224,0.1);
  padding: 12px 28px;
  border-radius: 980px;
  transition: all 0.35s cubic-bezier(0.25,0.1,0.25,1);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(26,79,224,0.15) inset;
}
.prestige-pill:hover {
  background: rgba(26,79,224,0.2);
  border-color: rgba(26,79,224,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,224,0.3);
}
/* ── BRAND LOGOS ── */
.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 48px;
  margin-bottom: 32px;
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.brand-logo:hover { opacity: 0.95; }
.brand-logo-color { filter: none; opacity: 0.8; }
.brand-logo-color:hover { opacity: 1; }

.clients-divider {
  width: 40px; height: 1px;
  background: var(--border-color);
  margin: 8px auto 24px;
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 60px; }
.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 2px;
  background: var(--blue);
}
.section-title {
  font-size: clamp(30px, 6vw, 80px);
  color: var(--white);
  line-height: 0.95;
}
.section-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  color: transparent;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

/* ── ABOUT / STORY ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-hero-photo {
  position: relative;
}
.about-hero-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--blue);
  padding: 16px 20px;
  text-align: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .about-hero-badge {
    top: 16px;
    right: 16px;
  }
}
.anis-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 600px) {
  .anis-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--blue);
  padding: 20px 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .about-exp-badge {
    bottom: 16px;
    right: 16px;
  }
}
.about-image-bg {
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  background: var(--blue);
  z-index: 0;
  opacity: 0.15;
}
.about-image {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-image-placeholder {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--blue);
  padding: 20px 24px;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}
.about-badge-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}
.about-timeline {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 32px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
}
.timeline-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-quote {
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--blue);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
  backdrop-filter: blur(12px);
}
.about-quote p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}
.about-quote span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── CLIENTS LOGOS ── */
.clients-section { background: rgba(26,26,26,0.5); backdrop-filter: blur(8px); }
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.client-pill {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 24px;
  border-radius: 980px;
  transition: all 0.35s cubic-bezier(0.25,0.1,0.25,1);
  backdrop-filter: blur(4px);
}
.client-pill:hover {
  color: var(--white);
  border-color: rgba(26,79,224,0.5);
  background: rgba(26,79,224,0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,79,224,0.2);
}
.client-pill.featured {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}

/* ── PORTFOLIO ── */
.portfolio-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25,0.1,0.25,1);
  border-radius: 980px;
  backdrop-filter: blur(8px);
}
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26,79,224,0.4);
}
.filter-btn:hover:not(.active) {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 4; }
.portfolio-item:nth-child(3) { grid-column: span 4; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { grid-column: span 4; }

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-item:nth-child(1) .portfolio-thumb { aspect-ratio: 16/10; height: 100%; }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 28px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
@media (pointer: coarse) {
  .portfolio-overlay { opacity: 1; }
}
.portfolio-info { }
.portfolio-cat {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.portfolio-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-play { opacity: 1; }
.play-circle {
  width: 64px; height: 64px;
  background: rgba(26,79,224,0.9);
  backdrop-filter: blur(16px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 32px rgba(26,79,224,0.5), 0 0 0 1px rgba(255,255,255,0.15) inset;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.portfolio-item:hover .play-circle,
.portfolio-full-item:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(26,79,224,0.6), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

/* Portfolio placeholder */
.portfolio-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
}

/* ── MODAL & LIGHTBOX ── */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.modal.active {
  opacity: 1; pointer-events: all;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
}
.modal-inner {
  position: relative;
  width: min(92vw, 1100px);
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 60px 120px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.06);
  transform: scale(0.93) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal.active .modal-inner {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.modal iframe, .modal video {
  width: 100%; aspect-ratio: 16/9; display: block; border: none; background: #000;
}

/* ── LIGHTBOX PHOTO ── */
#lightboxModal .modal-inner {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  width: min(95vw, 1200px);
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  overflow: visible;
}
#lightboxModal .lightbox-img-wrap {
  position: relative; width: 100%;
  max-height: 82vh;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
#lightboxModal .lightbox-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  max-height: 82vh; display: block;
  background: #0a0a0a;
}
.lightbox-caption {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 4px 0;
  width: 100%;
}
.lightbox-caption-text {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 0.05em;
}
.lightbox-counter {
  font-family: var(--font-heading); font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2010;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav:hover.prev { transform: translateY(-50%) translateX(-3px); }
.lightbox-nav:hover.next { transform: translateY(-50%) translateX(3px); }

/* ── PORTFOLIO GRID FILTER ANIMATION ── */
.portfolio-full-item, .portfolio-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-full-item.hidden, .portfolio-item.hidden {
  opacity: 0; transform: scale(0.95); pointer-events: none;
  position: absolute; visibility: hidden;
}

/* ── PHOTO ITEM INDICATOR ── */
.portfolio-full-item[data-cat="photo"] .portfolio-full-play::after {
  content: '⊕';
  font-size: 32px; color: white;
}
.portfolio-full-item[data-cat="photo"] .portfolio-full-play .play-circle {
  display: none;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1), box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,79,224,0.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars { color: var(--blue); font-size: 16px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  color: var(--white);
}
.testimonial-company {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'VIRAL MEDIA';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
}
.cta-band-sub {
  font-family: var(--font-heading);
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ── CONTACT ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-details {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 40px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(26,79,224,0.12);
  border: 1px solid rgba(26,79,224,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.contact-item-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px; color: var(--white);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(26,26,26,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.form-control:focus {
  border-color: rgba(26,79,224,0.6);
  box-shadow: 0 0 0 4px rgba(26,79,224,0.12);
  background: rgba(26,26,26,0.9);
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { height: 140px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 13px; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25,0.1,0.25,1);
  backdrop-filter: blur(8px);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 8px 20px rgba(26,79,224,0.4);
}

/* ── REVEAL ANIMATIONS (Apple-style) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .portfolio-item:nth-child(1) { grid-column: span 12; }
  .portfolio-item:nth-child(n+2) { grid-column: span 6; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-home-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .about-home-grid .reveal-left { order: 2; margin-top: 40px; }
  .about-home-grid .reveal-right { order: 1; }
  .hero-scroll { display: none; }
  .hero-subtitle { font-size: 15px; }
  .hero-stat-num { font-size: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-title .blue-stroke { -webkit-text-stroke: 2px var(--blue); }
}
