/* ============================================================
   ADFLUENCE — Main Stylesheet
   Author: Adfluence Studio
   Version: 1.0.0
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

/* ── CSS Variables ── */
:root {
  /* Colors */
  --bg:          #000000;
  --bg2:         #05080F;
  --surface:     #0A0F1C;
  --surface2:    #0D1528;
  --surface3:    #111827;
  --border:      rgba(255, 255, 255, 0.07);
  --border2:     rgba(255, 255, 255, 0.12);

  --blue:        #2563FF;
  --blue-hover:  #1D4EFF;
  --blue-glow:   rgba(37, 99, 255, 0.35);
  --blue-dim:    rgba(37, 99, 255, 0.15);

  --white:       #FFFFFF;
  --g1:          rgba(255, 255, 255, 0.85);
  --g2:          rgba(255, 255, 255, 0.55);
  --g3:          rgba(255, 255, 255, 0.30);
  --g4:          rgba(255, 255, 255, 0.10);

  /* Typography */
  --font:        'Inter', sans-serif;
  --serif:       'Instrument Serif', serif;

  /* Radii */
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        24px;
  --r-pill:      999px;

  /* Spacing */
  --section-y:   100px;
  --max-w:       1200px;
  --pad-x:       44px;

  /* Transitions */
  --t:           0.2s ease;
  --t-slow:      0.4s ease;
}

/* ── Body ── */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ============================================================
   UTILITIES
   ============================================================ */
.wrap   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { max-width: var(--max-w); margin: 0 auto; padding: var(--section-y) var(--pad-x); }

/* Section pill label */
.sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface3);
  border: 1px solid var(--border2);
  color: var(--g2);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.sec-pill::before { content: '•'; color: var(--blue); font-size: 14px; }

/* Section headings */
.sec-h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 14px;
}
.sec-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--g2);
}

.sec-p { font-size: 15px; color: var(--g2); line-height: 1.75; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 28px var(--blue-glow);
  transition: background var(--t), box-shadow var(--t), transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-blue:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 44px var(--blue-glow);
  transform: scale(1.02);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface3);
  color: var(--g1);
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: background var(--t), border-color var(--t);
  cursor: pointer;
  font-family: var(--font);
}
.btn-dark:hover { background: var(--surface2); border-color: var(--g3); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 12px var(--pad-x); }

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.nav__logo-img {
  height: 22px;       /* Desktop: 22px tall → ~126px wide at native ratio */
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 160px;   /* Hard cap so it never blows out */
}
.nav__logo span { display: none; }

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--g2);
  text-decoration: none;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--white); }

.nav__btn {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px var(--blue-glow);
  transition: background var(--t), box-shadow var(--t), transform 0.15s;
}
.nav__btn:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 32px var(--blue-glow);
  transform: scale(1.02);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 61px; left: 0; right: 0;
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--g2);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--r);
  transition: background var(--t), color var(--t);
}
.nav__mobile a:hover { background: var(--surface3); color: var(--white); }
.nav__mobile .btn-blue { margin-top: 12px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 255, 0.08) 0%, transparent 60%);
}
.hero__bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface3);
  border: 1px solid var(--border2);
  padding: 7px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--g2);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s ease both;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: blink 2s infinite;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--g3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.05s ease both;
}

.hero__title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 8px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--g2);
}

.hero__sub {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.7;
  max-width: 520px;
  margin: 24px auto 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero__sub2 {
  font-size: 14px;
  color: var(--g3);
  line-height: 1.7;
  max-width: 460px;
  margin: 10px auto 40px;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.18s ease both;
}

.hero__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.22s ease both;
}

/* Hero Card */
.hero__card {
  margin: 60px auto 0;
  width: 100%; max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.28s ease both;
  box-shadow: 0 0 80px rgba(37, 99, 255, 0.12), 0 40px 80px rgba(0, 0, 0, 0.5);
}
.hero__card-top {
  background: linear-gradient(160deg, #050d2e 0%, #091a50 40%, #0a1f5e 70%, #060d30 100%);
  padding: 52px 40px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  position: relative; overflow: hidden; min-height: 220px;
}
.hero__card-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero__card-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.25) 0%, transparent 70%);
}
.hero__card-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px var(--blue-glow);
}
.hero__card-label {
  font-size: 11px; font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.hero__card-value {
  font-family: var(--serif);
  font-size: 72px; font-weight: 400;
  color: var(--white); line-height: 1;
  position: relative; z-index: 1;
  text-shadow: 0 0 40px rgba(37, 99, 255, 0.5);
}
.hero__card-sub {
  font-size: 13px; color: rgba(255, 255, 255, 0.4);
  margin-top: 10px; position: relative; z-index: 1;
}
.hero__card-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.hero__stat { padding: 20px; text-align: center; border-right: 1px solid var(--border); }
.hero__stat:last-child { border-right: none; }
.hero__stat-val { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.hero__stat-lbl { font-size: 11px; color: var(--g3); margin-top: 4px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
  width: 100%;
  max-width: 100vw;
  contain: layout paint;   /* Hard cage — nothing escapes */
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  padding: 15px 0;
  will-change: transform;  /* GPU layer — keeps it off layout */
}
.ticker__item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px;
  font-size: 13px; font-weight: 500;
  color: var(--g3); letter-spacing: 0.04em;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT / FEATURES
   ============================================================ */
.about {
  text-align: center;
  padding: var(--section-y) var(--pad-x);
  position: relative; overflow: hidden;
  background: var(--bg);
}
.about__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37, 99, 255, 0.1) 0%, transparent 60%);
}
.about__title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; color: var(--white);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.about__title em { color: var(--g2); font-style: normal; }
.about__sub {
  font-size: 16px; color: var(--g2); line-height: 1.7;
  max-width: 540px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}

/* Dual stats marquee */
.stats-marquee {
  overflow: hidden;
  background: var(--bg2);
  width: 100%;
  max-width: 100vw;
  contain: layout paint;
}
.stats-marquee__row {
  display: flex; width: max-content; gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  will-change: transform;
}
.stats-marquee__row--fwd  { animation: ticker 22s linear infinite; }
.stats-marquee__row--rev  { animation: ticker 22s linear infinite reverse; border-top: none; }
.stats-marquee__chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.stats-marquee__val { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.stats-marquee__lbl { font-size: 12px; color: var(--g3); }

/* Features grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; margin-top: 60px;
}
.feature-card {
  background: var(--bg2);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background var(--t-slow);
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: transform var(--t-slow);
  transform-origin: left;
}
.feature-card:hover { background: var(--surface2); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__num {
  position: absolute; top: 28px; right: 28px;
  font-size: 12px; font-weight: 700;
  color: var(--g4); letter-spacing: 0.08em;
}
.feature-card__icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--blue-dim);
  border: 1px solid rgba(37, 99, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
}
.feature-card__title {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.feature-card__desc { font-size: 14px; color: var(--g2); line-height: 1.7; }

/* ============================================================
   RESULTS / PORTFOLIO
   ============================================================ */
.results { padding-top: var(--section-y); }
.results__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  padding: 0 var(--pad-x) 52px;
  max-width: var(--max-w); margin: 0 auto;
}
.results__head-right { text-align: right; }
.results__head-right .sec-p { max-width: 380px; margin: 0 0 24px auto; }

.cards-slider { overflow-x: auto; display: flex; gap: 16px; padding: 0 var(--pad-x) 16px; scrollbar-width: none; }
.cards-slider::-webkit-scrollbar { display: none; }

.result-card {
  flex-shrink: 0; width: 300px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(37, 99, 255, 0.15), 0 0 0 1px rgba(37, 99, 255, 0.2);
}
.result-card__img {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.result-card__img--1 { background: linear-gradient(135deg, #0d0524, #1a0a42); }
.result-card__img--2 { background: linear-gradient(135deg, #051a0d, #0a3320); }
.result-card__img--3 { background: linear-gradient(135deg, #1a0505, #330a0a); }
.result-card__img--4 { background: linear-gradient(135deg, #050d1a, #0a1f3c); }
.result-card__img--5 { background: linear-gradient(135deg, #0d1a05, #1a3310); }

.result-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--g1); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.result-card__tag--blue  { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 12px var(--blue-glow); }
.result-card__tag--green { background: rgba(13, 51, 32, 0.9); border-color: #1a6b3c; color: #4ade80; }

.result-card__body { padding: 22px; }
.result-card__name { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.result-card__desc { font-size: 13px; color: var(--g2); line-height: 1.65; margin-bottom: 16px; }
.result-card__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--surface3); border: 1px solid var(--border2); color: var(--g2);
}
.pill--green { background: rgba(26, 107, 60, 0.2); border-color: rgba(74, 222, 128, 0.25); color: #4ade80; }
.pill--blue  { background: var(--blue-dim); border-color: rgba(37, 99, 255, 0.3); color: #93c5fd; }
.pill--red   { background: rgba(220, 38, 38, 0.15); border-color: rgba(248, 113, 113, 0.25); color: #fca5a5; }

.slider-nav { display: flex; gap: 10px; padding: 20px var(--pad-x) 0; max-width: var(--max-w); margin: 0 auto; }
.slider-nav__btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--g2); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t), border-color var(--t), color var(--t);
}
.slider-nav__btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how { background: var(--bg2); padding-bottom: var(--section-y); }
.how__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 52px; padding-top: var(--section-y);
}

.stages { display: flex; flex-direction: column; gap: 10px; }
.stage {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stage:hover { border-color: rgba(37, 99, 255, 0.3); }
.stage.active {
  border-color: rgba(37, 99, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(37, 99, 255, 0.1), 0 8px 40px rgba(37, 99, 255, 0.1);
}

.stage__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; cursor: pointer;
}
.stage__header-left { display: flex; align-items: center; gap: 18px; }
.stage__icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--surface3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.stage.active .stage__icon { background: var(--blue-dim); border-color: rgba(37, 99, 255, 0.4); }
.stage__tag {
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--g2); font-size: 12px; font-weight: 600;
  padding: 5px 16px; border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.stage.active .stage__tag { background: var(--blue-dim); border-color: rgba(37, 99, 255, 0.4); color: #93c5fd; }
.stage__title { font-size: 18px; font-weight: 700; letter-spacing: -0.03em; margin-top: 4px; }

.stage__body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.stage.active .stage__body { max-height: 400px; }
.stage__content {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--border);
}
.stage__content-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; }
.stage__desc { font-size: 15px; color: var(--g2); line-height: 1.75; margin-bottom: 20px; }
.stage__chips { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.stage__chip {
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--g2); font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--r);
  white-space: nowrap; text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 52px; }

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 255, 0.1);
  border-color: rgba(37, 99, 255, 0.3);
}
.testi-card__stars { color: #FBBF24; font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card__quote { font-size: 14px; color: var(--g2); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
}
.testi-card__avatar--1 { background: linear-gradient(135deg, #2563FF, #60a5fa); }
.testi-card__avatar--2 { background: linear-gradient(135deg, #059669, #34d399); }
.testi-card__avatar--3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.testi-card__avatar--4 { background: linear-gradient(135deg, #dc2626, #f87171); }
.testi-card__avatar--5 { background: linear-gradient(135deg, #d97706, #fbbf24); }
.testi-card__avatar--6 { background: linear-gradient(135deg, #0891b2, #67e8f9); }
.testi-card__name { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; }
.testi-card__role { font-size: 12px; color: var(--g3); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-y) 0; }
.faq__inner { max-width: 800px; margin: 0 auto; padding: 0 var(--pad-x); }
.faq__head { text-align: center; margin-bottom: 52px; }
.faq__head .sec-pill { display: inline-flex; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(37, 99, 255, 0.4); }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; cursor: pointer; gap: 16px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em;
  transition: color var(--t);
  user-select: none;
}
.faq-item__question:hover { color: var(--g1); }
.faq-item__icon {
  width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--g3);
  transition: transform 0.35s, background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue); border-color: var(--blue);
  color: var(--white); box-shadow: 0 0 14px var(--blue-glow);
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--g2); line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-item__answer { max-height: 200px; padding: 0 26px 22px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 0 var(--pad-x) 80px; }
.cta__block {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(37, 99, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(37, 99, 255, 0.08) 0%, transparent 60%);
}
.cta__pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px,
    transparent 1px, transparent 40px
  );
}
.cta__left { position: relative; z-index: 1; }
.cta__eyebrow { font-size: 12px; font-weight: 600; color: var(--g3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.cta__title { font-size: clamp(36px, 4vw, 56px); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; }
.cta__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--g2); }
.cta__right { position: relative; z-index: 1; }
.cta__right p { font-size: 15px; color: var(--g2); line-height: 1.75; margin-bottom: 32px; }
.cta__btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px var(--pad-x) 40px;
  background: var(--bg2);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
}
.footer__brand .nav__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer__brand .nav__logo-img {
  height: 24px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.footer__brand p { font-size: 14px; color: var(--g3); line-height: 1.7; max-width: 240px; }
.footer__col h4 {
  font-size: 12px; font-weight: 600;
  color: var(--g3); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a {
  display: block; font-size: 14px; color: var(--g2);
  text-decoration: none; margin-bottom: 11px;
  transition: color var(--t);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 32px;
  font-size: 13px; color: var(--g3);
  max-width: var(--max-w); margin: 0 auto;
}
.footer__bottom a { color: var(--g3); text-decoration: none; }
.footer__bottom a:hover { color: var(--g1); }

/* ============================================================
   VIDEO SHOWCASE
   Desktop: 1920×568 landscape · Mobile: 1080×1350 portrait
   ============================================================ */
.video-showcase {
  width: 100%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.video-showcase__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 568; /* Desktop landscape ratio */
  overflow: hidden;
}
.video-showcase__video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
.video-showcase__fade {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.video-showcase__fade--top {
  top: 0;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 100%);
}
.video-showcase__fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* ============================================================
   HERO — proof line
   ============================================================ */
.hero__proof {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--g2);
  margin: 0 auto 28px; position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.19s ease both;
}
.hero__proof strong { color: var(--white); font-weight: 600; }
.hero__proof-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.7);
  flex-shrink: 0; animation: blink 2s infinite;
}

/* ============================================================
   LOGOS — client section
   ============================================================ */
.logos-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px var(--pad-x);
}
.logos-label {
  font-size: 11px; font-weight: 600; color: var(--g3);
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; margin-bottom: 24px;
}
.logos-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
}
.logo-chip {
  background: var(--surface3); border: 1px solid var(--border2);
  border-radius: var(--r-pill); padding: 9px 20px;
  font-size: 13px; font-weight: 700; color: var(--g2);
  letter-spacing: -0.02em; white-space: nowrap;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.logo-chip:hover { border-color: rgba(37,99,255,0.4); color: var(--white); background: var(--surface2); }

/* ============================================================
   FEATURED IN
   ============================================================ */
.featured {
  background: var(--bg);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
}
.featured__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
  padding: 0 var(--pad-x);
}
.pubs-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: var(--surface);
  width: 100%; max-width: 100vw;
  contain: layout paint;
}
.pubs-track {
  display: flex; gap: 0; width: max-content;
  padding: 8px 0;
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.pubs-marquee:hover .pubs-track { animation-play-state: paused; }
.pub-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  padding: 20px 32px; border-right: 1px solid var(--border2);
  min-width: 168px; text-align: center;
  transition: background var(--t); cursor: default;
}
.pub-item:hover { background: var(--surface2); }
.pub-icon { font-size: 20px; }
.pub-name { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; white-space: nowrap; }
.pub-tag  { font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; margin-top: 2px; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards { background: var(--bg2); padding: var(--section-y) 0; }
.awards__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
  padding: 0 var(--pad-x);
}
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 12px;
  padding: 0 var(--pad-x);
}
.award-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.award-card:hover {
  border-color: rgba(37,99,255,0.35); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,99,255,0.12);
}
.award-card--hero {
  border-color: rgba(37,99,255,0.3);
  background: linear-gradient(135deg, #0a0f1c 0%, #0d1730 60%, #0a1040 100%);
}
.award-card--hero:hover { border-color: rgba(37,99,255,0.6); box-shadow: 0 20px 60px rgba(37,99,255,0.25); }
.award-card__glow {
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(37,99,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.award-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.award-card__icon { font-size: 30px; }
.award-card__badge {
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-pill); letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.award-card__badge--blue { background: rgba(37,99,255,0.18); border: 1px solid rgba(37,99,255,0.4); color: #93c5fd; }
.award-card__badge--gold { background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.35); color: #fbbf24; }
.award-card__badge--gray { background: var(--surface3); border: 1px solid var(--border2); color: var(--g2); }
.award-card__org   { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.award-card__title { font-size: 15px; font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.award-card__desc  { font-size: 13px; color: var(--g2); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.award-card__meta  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.award-meta-chip   { font-size: 11px; font-weight: 600; color: var(--g3); background: var(--surface3); border: 1px solid var(--border); padding: 3px 10px; border-radius: var(--r-pill); }
.trophy-shelf      { border: 1px solid var(--border2); border-radius: var(--r-lg); background: var(--surface); padding: 24px 28px; margin: 0 var(--pad-x); }
.trophy-shelf__label { font-size: 11px; font-weight: 700; color: var(--g3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.trophy-shelf__row   { display: flex; gap: 10px; flex-wrap: wrap; }
.trophy-item       { display: flex; align-items: center; gap: 10px; background: var(--surface3); border: 1px solid var(--border2); border-radius: var(--r); padding: 11px 16px; flex: 1; min-width: 140px; transition: border-color var(--t), background var(--t); }
.trophy-item:hover { border-color: rgba(37,99,255,0.3); background: var(--surface2); }
.trophy-item__icon { font-size: 16px; flex-shrink: 0; }
.trophy-item__name { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; flex: 1; }
.trophy-item__year { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.06em; flex-shrink: 0; }

/* ============================================================
   WHO WE WORK WITH
   ============================================================ */
.who { background: var(--bg); padding: var(--section-y) 0; }
.who__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
  padding: 0 var(--pad-x);
}
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 0 var(--pad-x);
}
.who-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.who-card:hover { border-color: rgba(37,99,255,0.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,255,0.1); }
.who-card__icon  { font-size: 28px; margin-bottom: 16px; }
.who-card__title { font-size: 16px; font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 10px; }
.who-card__desc  { font-size: 13px; color: var(--g2); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.who-card__stat  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  background: var(--blue-dim); border: 1px solid rgba(37,99,255,0.3);
  padding: 5px 14px; border-radius: var(--r-pill);
  width: fit-content; margin-top: auto;
}
.who-card__stat::before { content: '↑'; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--bg2); padding: var(--section-y) 0; }
.services__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
  padding: 0 var(--pad-x);
}

/* ============================================================
   CTA — scarcity
   ============================================================ */
.cta__scarcity      { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cta__scarcity-bar  { width: 100%; max-width: 280px; height: 4px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); overflow: hidden; }
.cta__scarcity-fill { height: 100%; width: 66.6%; background: linear-gradient(90deg, var(--blue), #60a5fa); border-radius: var(--r-pill); box-shadow: 0 0 12px rgba(37,99,255,0.6); }
.cta__scarcity-text { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--g2); }
.cta__scarcity-text strong { color: var(--white); font-weight: 600; }
.cta__scarcity-dot  { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.7); flex-shrink: 0; animation: blink 2s infinite; }
.cta__small         { font-size: 12px; color: var(--g3); margin-top: 14px; line-height: 1.6; }

/* ============================================================
   FOOTER — logo image & social icons
   ============================================================ */
.footer__logo     { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer__logo-img { height: 24px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.footer__social   { display: flex; gap: 10px; margin-top: 16px; align-items: center; }
.footer__social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--g2); text-decoration: none;
  transition: background var(--t), border-color var(--t), color var(--t), transform 0.2s;
}
.footer__social-icon svg { width: 15px; height: 15px; }
.footer__social-icon:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   CALENDLY MODAL
   ============================================================ */
.cal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cal-overlay.is-open { opacity: 1; pointer-events: all; }
.cal-modal {
  position: relative; width: 100%; max-width: 680px;
  height: min(90vh, 780px);
  background: #05080F; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(37,99,255,0.15);
}
.cal-overlay.is-open .cal-modal { transform: translateY(0) scale(1); }
.cal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; font-family: var(--font);
}
.cal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.cal-widget { width: 100%; height: 100%; }
.cal-widget .calendly-inline-widget { width: 100% !important; height: 100% !important; min-height: 100% !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET (max-width: 960px)
   ============================================================ */
@media (max-width: 960px) {

  /* ── Variables ── */
  :root {
    --pad-x:     20px;
    --section-y: 60px;
  }

  /* ── Nav ── */
  .nav          { padding: 14px var(--pad-x); }
  .nav.scrolled { padding: 10px var(--pad-x); }
  .nav__links   { display: none; }
  .nav__hamburger { display: flex; }

  /* ── Utility containers ── */
  .section { padding: var(--section-y) var(--pad-x); }
  .wrap    { padding: 0 var(--pad-x); }

  /* ── Hero ── */
  .hero { padding: 110px 20px 52px; }
  .hero__title { font-size: clamp(36px, 8vw, 56px); }
  .hero__sub   { font-size: 15px; max-width: 100%; }
  .hero__sub2  { max-width: 100%; }
  .hero__card  { margin-top: 40px; }
  .hero__card-stats { grid-template-columns: repeat(2, 1fr); }
  .hero__card-top   { padding: 36px 24px; min-height: 160px; }
  .hero__card-value { font-size: 52px; }
  .hero__btns { flex-direction: column; align-items: center; gap: 10px; }

  /* ── Ticker ── */
  .ticker__item { padding: 0 20px; font-size: 12px; }

  /* ── Logos ── */
  .logos-section .section { padding: 32px var(--pad-x); }
  .logos-grid { gap: 8px; }

  /* ── About ── */
  .about { padding: 60px 20px; }

  /* ── Features grid ── */
  .features-grid { grid-template-columns: 1fr; margin-top: 40px; }

  /* ── Results ── */
  .results { padding-top: var(--section-y); }
  .results__head {
    grid-template-columns: 1fr;
    padding: 0 var(--pad-x) 36px;
  }
  .results__head-right { text-align: left; }
  .results__head-right .sec-p { margin-left: 0; margin-bottom: 16px; }
  .cards-slider { padding: 0 var(--pad-x) 12px; gap: 12px; }
  .result-card  { width: 260px; }
  .slider-nav   { padding: 16px var(--pad-x) 0; }

  /* ── Stats marquee ── */
  .stats-marquee__chip { padding: 10px 20px; }
  .stats-marquee__val  { font-size: 13px; }
  .stats-marquee__lbl  { font-size: 11px; }

  /* ── Who We Work With ── */
  .who__head { grid-template-columns: 1fr; margin-bottom: 36px; }
  .who-grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .who-card  { padding: 22px; }
  .who-card__icon { font-size: 24px; margin-bottom: 12px; }
  .who-card__title { font-size: 15px; }
  .who-card__desc  { font-size: 12px; }

  /* ── Services ── */
  .services-section .section { padding: var(--section-y) var(--pad-x); }
  .services__head { grid-template-columns: 1fr; margin-bottom: 36px; }
  .feature-card   { padding: 28px 24px; }
  .feature-card__title { font-size: 16px; }

  /* ── How We Work ── */
  .how__head { grid-template-columns: 1fr; padding-top: var(--section-y); margin-bottom: 36px; }
  .stages    { padding: 0 var(--pad-x); }
  .stage__header { padding: 20px 20px; }
  .stage__content { padding: 20px 20px 24px; }
  .stage__content-grid { grid-template-columns: 1fr; gap: 16px; }
  .stage__chips { flex-direction: row; flex-wrap: wrap; }
  .stage__chip  { padding: 7px 14px; font-size: 12px; }

  /* ── Featured In ── */
  .featured { padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .featured__head { grid-template-columns: 1fr; margin-bottom: 32px; }
  .pub-item { min-width: 140px; padding: 16px 20px; }
  .pub-icon { font-size: 18px; }
  .pub-name { font-size: 12px; }
  .pub-tag  { font-size: 9px; }

  /* ── Awards ── */
  .awards__head { grid-template-columns: 1fr; margin-bottom: 36px; }
  .awards-grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .award-card   { padding: 22px; }
  .award-card__title { font-size: 14px; }
  .award-card__desc  { font-size: 12px; }
  .trophy-shelf { padding: 18px 20px; }
  .trophy-shelf__row { gap: 8px; }
  .trophy-item  { min-width: calc(50% - 4px); padding: 10px 14px; }

  /* ── Testimonials ── */
  .testi-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
  .testi-card { padding: 22px; }
  .testi-card__quote { font-size: 13px; }

  /* ── FAQ ── */
  .faq { padding: var(--section-y) 0; }
  .faq__inner { padding: 0 var(--pad-x); }
  .faq__head  { margin-bottom: 36px; }
  .faq-item__question { font-size: 14px; padding: 18px 20px; }
  .faq-item.open .faq-item__answer { padding: 0 20px 18px; }

  /* ── CTA ── */
  .cta        { padding: 0 var(--pad-x) 60px; }
  .cta__block { padding: 48px 28px; grid-template-columns: 1fr; gap: 32px; }
  .cta__title { font-size: clamp(32px, 6vw, 48px); }
  .cta__scarcity-bar { max-width: 100%; }

  /* ── Footer ── */
  .footer { padding: 48px var(--pad-x) 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .footer__brand { grid-column: span 2; }

  /* ── Section headings ── */
  .sec-h2 { font-size: clamp(28px, 5vw, 44px); }

  /* ── Video ── */
  .video-showcase__fade { height: 50px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* ── Variables ── */
  :root { --section-y: 52px; }

  /* ── Hero ── */
  .hero { padding: 100px 16px 44px; }
  .hero__title  { font-size: clamp(32px, 9vw, 48px); letter-spacing: -0.03em; }
  .hero__sub    { font-size: 14px; }
  .hero__proof  { font-size: 12px; text-align: center; }
  .hero__btns   { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__btns .btn-blue,
  .hero__btns .btn-dark { justify-content: center; padding: 14px 20px; }
  .hero__card   { margin-top: 32px; }
  .hero__card-stats { grid-template-columns: repeat(2, 1fr); }
  .hero__card-value { font-size: 44px; }
  .hero__card-top   { padding: 28px 16px; min-height: 140px; }
  .hero__stat-val   { font-size: 17px; }
  .hero__stat-lbl   { font-size: 10px; }
  .hero__badge      { font-size: 11px; padding: 5px 14px; }

  /* ── Ticker ── */
  .ticker__item { padding: 0 16px; font-size: 11px; }
  .ticker-track { padding: 12px 0; }

  /* ── Logos ── */
  .logos-grid { gap: 6px; }
  .logo-chip  { font-size: 12px; padding: 7px 12px; }

  /* ── Section headings ── */
  .sec-h2 { font-size: clamp(26px, 7vw, 36px); }
  .sec-pill { font-size: 11px; padding: 5px 14px; }

  /* ── Results cards ── */
  .cards-slider { padding: 0 16px 12px; gap: 10px; }
  .result-card  { width: calc(100vw - 48px); flex-shrink: 0; }
  .result-card__img { height: 150px; font-size: 44px; }
  .result-card__name { font-size: 14px; }
  .result-card__desc { font-size: 12px; }
  .slider-nav { padding: 12px 16px 0; }

  /* ── Stats marquee ── */
  .stats-marquee__chip { padding: 8px 16px; }
  .stats-marquee__val  { font-size: 12px; }

  /* ── Who We Work With ── */
  .who-grid { grid-template-columns: 1fr; }
  .who-card { padding: 20px; }
  .who-card__stat { font-size: 11px; }

  /* ── Features grid ── */
  .feature-card { padding: 24px 20px; }
  .feature-card__icon { width: 44px; height: 44px; font-size: 20px; }
  .feature-card__title { font-size: 15px; }
  .feature-card__desc  { font-size: 13px; }

  /* ── How We Work ── */
  .stage__header { padding: 16px; gap: 12px; }
  .stage__icon   { width: 40px; height: 40px; font-size: 18px; }
  .stage__title  { font-size: 15px; }
  .stage__tag    { font-size: 11px; padding: 4px 12px; }
  .stage__content { padding: 16px; }
  .stage__desc   { font-size: 14px; }
  .stage__chips  { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .stage__chip   { font-size: 11px; padding: 6px 12px; }

  /* ── Featured In ── */
  .pub-item  { min-width: 120px; padding: 14px 16px; }
  .pub-name  { font-size: 11px; }

  /* ── Awards ── */
  .awards-grid { grid-template-columns: 1fr; }
  .award-card  { padding: 20px; }
  .award-card__icon { font-size: 24px; }
  .award-card__title { font-size: 14px; }
  .trophy-item { min-width: 100%; }

  /* ── Testimonials ── */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 20px; }

  /* ── FAQ ── */
  .faq-item__question { font-size: 14px; padding: 16px; }
  .faq-item.open .faq-item__answer { padding: 0 16px 16px; font-size: 13px; }
  .faq-item__icon { width: 26px; height: 26px; }

  /* ── CTA ── */
  .cta__block { padding: 36px 20px; }
  .cta__title { font-size: clamp(28px, 8vw, 40px); }
  .cta__btns  { flex-direction: column; }
  .cta__btns .btn-blue,
  .cta__btns .btn-dark { justify-content: center; padding: 14px 20px; font-size: 14px; }
  .cta__right p { font-size: 14px; }

  /* ── Footer ── */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .nav__logo-img  { height: 22px; }
  .footer__logo-img { height: 24px; }

  /* ── Video ── */
  /* ── Video — portrait ratio for mobile video (1080×1350 = 4:5) ── */
  .video-showcase__inner {
    aspect-ratio: 4 / 5;
  }
  .video-showcase__video { object-fit: fill; }
  .video-showcase__fade  { height: 40px; }
}

/* ============================================================
   CALENDLY MODAL OVERLAY
   ============================================================ */
.cal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cal-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: min(90vh, 780px);
  background: #05080F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(37, 99, 255, 0.15);
}
.cal-overlay.is-open .cal-modal {
  transform: translateY(0) scale(1);
}
.cal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}
.cal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.cal-widget {
  width: 100%;
  height: 100%;
}
/* Calendly inline widget needs this */
.cal-widget .calendly-inline-widget {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}
.footer__social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface3);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--g2);
  text-decoration: none;
  transition: background var(--t), border-color var(--t), color var(--t), transform 0.2s;
  flex-shrink: 0;
}
.footer__social-icon svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer__social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile adjustments for modal */
@media (max-width: 600px) {
  .cal-modal {
    height: min(95vh, 700px);
    border-radius: 14px;
  }
  .cal-overlay { padding: 12px; }
}

/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.testi-sub {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 500px;
}

/* 3-column video grid */
.vtesti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* ── Video Card ── */
.vtesti-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.vtesti-card:hover {
  border-color: rgba(37,99,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(37,99,255,0.13);
}

/* ── Video wrapper — 16:9 container ── */
.vtesti-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #05080F;
}

/* ── Thumbnail (click-to-play) ── */
.vtesti-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  /* Fallback gradient when thumbnail image can't load (local dev) */
  background-color: #0d1528;
  background-image:
    linear-gradient(135deg, rgba(37,99,255,0.12) 0%, transparent 60%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* When real thumbnail loads, it overrides the gradient */
.vtesti-thumb[style*="youtube.com"] {
  background-image: var(--thumb-url);
}

/* Semi-transparent overlay — sits between thumbnail and play button */
.vtesti-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.25s;
  z-index: 1;
}
.vtesti-thumb:hover::before { background: rgba(0, 0, 0, 0.18); }

/* ── Play button — centered, above overlay ── */
.vtesti-play-btn {
  position: relative;
  z-index: 2;                        /* Above the ::before overlay */
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.vtesti-play-btn svg { fill: #111827; margin-left: 4px; }
.vtesti-thumb:hover .vtesti-play-btn {
  transform: scale(1.12);
  background: #ffffff;
}

/* ── YouTube badge ── */
.vtesti-yt-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;                         /* Above overlay */
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}

/* ── Iframe replaces thumb on click ── */
.vtesti-iframe-active {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 10;
}

/* ── Card content below video ── */
.vtesti-info {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vtesti-stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.vtesti-quote {
  font-size: 14px;
  color: var(--g2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}
.vtesti-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vtesti-avatar {
  width: 38px; height: 38px;
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
}
.vtesti-avatar--1 { background: linear-gradient(135deg, #2563FF, #60a5fa); }
.vtesti-avatar--2 { background: linear-gradient(135deg, #059669, #34d399); }
.vtesti-avatar--3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.vtesti-name { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); }
.vtesti-role { font-size: 11px; color: var(--g3); margin-top: 3px; }

.vtesti-result-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,255,0.1);
  border: 1px solid rgba(37,99,255,0.25);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.04em;
  width: fit-content;
  margin-top: auto;
}

/* ── Developer note (hidden in production) ── */
.vtesti-note {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(37,99,255,0.06);
  border: 1px dashed rgba(37,99,255,0.25);
  border-radius: var(--r);
  margin-bottom: 40px;
  font-size: 12px; color: var(--g3);
}

/* ── Divider between video and text testimonials ── */
.testi-divider {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.testi-divider__line {
  flex: 1; height: 1px;
  background: var(--border2);
}
.testi-divider__label {
  font-size: 11px; font-weight: 600; color: var(--g3);
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — Founder + Video Testimonials
   ============================================================ */
@media (max-width: 960px) {
  /* Video testimonials */
  .vtesti-grid { grid-template-columns: 1fr; gap: 12px; }
  .vtesti-play-btn { width: 56px; height: 56px; }
}

@media (max-width: 600px) {
  .vtesti-info { padding: 16px 18px 18px; }
  .vtesti-play-btn { width: 52px; height: 52px; }
}
