/* ============================================================
   G by Growxth — Home page styles
   Self-contained: fonts + tokens + sections + 3D/glass/motion
   ============================================================ */

@font-face {
  font-family: 'Mont';
  src: url('fonts/Mont-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mont';
  src: url('fonts/Mont-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --navy: #001746;
  --blue: #3263d1;
  --red: #e01a50;
  --pink: #e01ade;
  --midnight: #091e2e;
  --mist: #a4cfe6;
  --off: #f4f8fc;
  --white: #ffffff;
  --ink: #091e2e;
  --body: #1a2b3c;
  --muted: #5a7a90;
  --faint: #8a9fb0;
  --border: #dce8f0;
  --border-strong: #c8d8e5;
  --tint: #eef3ff;
  --bg-2: #f4f8fc;

  --grad-hero: linear-gradient(135deg, #001746, #3263d1);
  --grad-energy: linear-gradient(135deg, #e01a50, #e01ade);
  --grad-dark: linear-gradient(135deg, #091e2e, #001746);
  --grad-light: linear-gradient(135deg, #3263d1, #a4cfe6);

  --font: 'Mont', 'Montserrat', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --shadow-card: 0 2px 16px rgba(9,30,46,0.08);
  --shadow-hover: 0 8px 40px rgba(9,30,46,0.16);
  --shadow-pop: 0 16px 48px rgba(0,23,70,0.28);
  --container: 100%;
  --container-body: 100%;
  --gutter: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--off);
  color: var(--body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-variant-ligatures: none;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

.wrap { max-width: var(--container-body); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(66px, 6.75vw, 105px) 0; }

/* ---- Type ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(31.5px, 4.5vw, 52.5px); line-height: 1.06; letter-spacing: -0.015em; }
h2 { font-size: clamp(24px, 3.3vw, 36px); line-height: 1.15; }
h3 { font-size: 16.5px; }
.eyebrow { display: none !important; }
.eyebrow-hidden-legacy {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.lead { font-size: 12.8px; line-height: 1.7; color: var(--body); }
.section-head { max-width: 660px; }
.section-head.center { margin: 0; text-align: left; }
.section-head .lead { margin-top: 16px; }

/* ---- Zero-spacing utilities (Tailwind-compatible names, no Tailwind needed) ---- */
.p-0 { padding: 0 !important; }
.m-0 { margin: 0 !important; }
.border-0 { border: 0 !important; }
.focus\:p-0:focus { padding: 0 !important; }
.focus\:m-0:focus { margin: 0 !important; }
.focus\:border-0:focus { border: 0 !important; }
.focus\:outline-none:focus { outline: none !important; }
/* ring drawn as a box-shadow so it never affects layout */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring-color, #3b82f6) !important; }
.focus\:ring-blue-500:focus { --ring-color: #3b82f6; }
.focus\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--ring-color, #3b82f6) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; cursor: pointer; border: none;
  letter-spacing: 0.01em; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  padding: 13px 26px; font-size: 11px; border-radius: 8px; min-height: 44px;
}
.btn-lg { padding: 17px 34px; font-size: 12px; border-radius: 10px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #2a55b8; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(50,99,209,0.4); }
.btn-outline-white { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(164,207,230,0.55); }
.btn-outline-white:hover { background: rgba(164,207,230,0.12); }
.link-arrow { font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.link-arrow .a { transition: transform .2s ease; }
.link-arrow:hover .a { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80; height: 120px;
  background: rgba(5,9,20,0.55); transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav.scrolled { height: 84px; background: rgba(5,9,20,0.88); backdrop-filter: saturate(160%) blur(12px); box-shadow: 0 1px 0 rgba(164,207,230,0.12); }
.nav-inner { max-width: none; margin: 0; padding: 0 30px; height: 100%; display: flex; align-items: center; gap: 38px; }
.nav-logo { flex: none; display: flex; align-items: center; }
.nav-logo img { height: 60px; transition: height .25s ease; }
.nav.scrolled .nav-logo img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 12.8px; font-weight: 400; color: rgba(255,255,255,0.9); transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--mist); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cta .btn { font-size: 12px; padding: 11px 22px; border-radius: 8px; white-space: nowrap; }
.btn-nav-soft { background: rgba(164,207,230,0.16); color: #fff; border: 1px solid rgba(164,207,230,0.22); }
.btn-nav-soft:hover { background: rgba(164,207,230,0.28); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--mist); margin: 4px 0; border-radius: 2px; transition: .25s; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; background: var(--navy); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 28px 32px; }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-top img { height: 60px; }
.drawer-close { background: none; border: none; color: var(--mist); font-size: 22.5px; cursor: pointer; line-height: 1; }
.drawer a { color: #fff; font-size: 18px; font-weight: 700; padding: 16px 0; border-bottom: 1px solid rgba(164,207,230,0.12); }
.drawer .btn { margin-top: 28px; }
.drawer .btn + .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: #050914;
  padding: 172px 0 360px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ---- ambient starfield ---- */
.hero-stars { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* ---- space-scene background (black hole) ---- */
.space-scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.space-scene > div {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.space-scene .ring-outer {
  width: 1400px; height: 1400px;
  border: 1px solid rgba(100,150,255,0.1);
  border-radius: 50%;
}
.space-scene .ring-inner {
  width: 820px; height: 820px;
  border: 1px solid rgba(100,150,255,0.15);
  border-radius: 50%;
}
.space-scene .accretion-flare {
  width: 2100px; height: 26px;
  background: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,100,255,0.8) 25%,
    rgba(255,0,255,1) 40%,
    rgba(255,255,255,1) 50%,
    rgba(255,0,255,1) 60%,
    rgba(0,100,255,0.8) 75%,
    rgba(0,0,0,0) 100%);
  border-radius: 50%;
  filter: blur(11px);
  z-index: 2;
}
.space-scene .glow-field {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #ff0099 0%, rgba(0,100,255,0.8) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}
.space-scene .black-hole {
  width: 340px; height: 340px;
  background-color: #000;
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    inset 0 0 36px rgba(255,0,150,0.5),
    0 0 18px 7px #fff,
    0 0 54px 18px #ff0099,
    0 0 108px 36px #ff0099;
  border: 3px solid rgba(255,255,255,0.9);
  animation: orbitDot 14s linear infinite, glowPulse 3.8s ease-in-out infinite;
}
@keyframes orbitDot {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 36px rgba(255,0,150,0.5),
      0 0 16px 5px rgba(255,255,255,0.95),
      0 0 44px 12px rgba(255,0,153,0.8),
      0 0 84px 26px rgba(255,0,153,0.42);
  }
  50% {
    box-shadow:
      inset 0 0 36px rgba(255,0,150,0.5),
      0 0 24px 9px #ffffff,
      0 0 90px 32px rgba(255,0,153,0.92),
      0 0 168px 64px rgba(255,0,153,0.4);
  }
}
.space-scene .black-hole::after {
  content: '';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 24px 12px #fff, 0 0 50px 22px #ff0099;
  z-index: 4;
}

.hero-mesh { position: absolute; inset: -10% 0; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: -20% -10%; opacity: 0.5;
  background-image:
    linear-gradient(rgba(164,207,230,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164,207,230,0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 35%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 70% at 60% 35%, #000 0%, transparent 75%);
  will-change: transform;
}
.hero-blob { position: absolute; border-radius: 50%; will-change: transform; }
.hero-blob-1 { top: -240px; right: -160px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(50,99,209,0.5) 0%, transparent 68%); }
.hero-blob-2 { bottom: -240px; left: -160px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(224,26,80,0.2) 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0; }
.hero-copy { max-width: 1320px; margin: 50px auto 0; text-align: center; }
.hero .eyebrow { color: var(--mist); }
.hero h1 { color: #fff; font-size: clamp(28.5px, 4.8vw, 54px); line-height: 1.056; letter-spacing: -0.035em; font-weight: 400; }
.hero-body { font-size: 14.3px; line-height: 1.6; color: rgba(164,207,230,0.92); max-width: 560px; margin: 22px auto 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero-proof { margin-top: 26px; font-size: 11px; font-weight: 700; color: rgba(164,207,230,0.78); }

/* ---- 3D parallax scene ---- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; perspective: 1100px; perspective-origin: 50% 45%; }
.hero-stage {
  position: relative; width: 100%; height: 400px;
  transform-style: preserve-3d; will-change: transform;
  transition: transform .12s ease-out;
}
.hero-glow { position: absolute; top: 50%; left: 50%; width: 320px; height: 320px; margin: -160px 0 0 -160px; border-radius: 50%; background: var(--grad-hero); filter: blur(48px); opacity: 0.55; transform: translateZ(-40px); }
.hero-ring {
  position: absolute; top: 50%; left: 50%; width: 360px; height: 360px; margin: -180px 0 0 -180px;
  border: 1.5px solid rgba(164,207,230,0.22); border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(50,99,209,0.18);
  animation: ringSpin 36s linear infinite;
}
.hero-ring::after { content: ""; position: absolute; inset: 26px; border: 1px dashed rgba(164,207,230,0.16); border-radius: 50%; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero-float {
  position: absolute; top: 50%; left: 50%; z-index: 4; width: 210px; margin: -105px 0 0 -105px;
  animation: float 6s ease-in-out infinite; transform-style: preserve-3d; will-change: transform, translate, rotate;
}
.hero-float img { width: 100%; filter: drop-shadow(0 36px 56px rgba(0,0,0,0.5)); }
@keyframes float {
  0%, 100% { translate: 0 -12px; rotate: y -5deg; }
  50% { translate: 0 12px; rotate: y 5deg; }
}

/* glass metric cards */
.float-card {
  position: absolute; z-index: 5; padding: 14px 16px; min-width: 132px;
  background: rgba(13,38,72,0.55); border: 1px solid rgba(164,207,230,0.22);
  border-radius: 14px; backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 18px 40px rgba(0,8,28,0.45);
  will-change: transform, translate; animation: cardBob 7s ease-in-out infinite;
}
.float-card .fc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(164,207,230,0.7); }
.float-card .fc-value { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1; margin-top: 2px; }
.fc-engage { top: 6%; left: -6%; animation-delay: -1s; }
.fc-followers { bottom: 10%; right: -8%; animation-delay: -3.5s; }
.fc-roas { bottom: -2%; left: 2%; animation-delay: -2.2s; }
@keyframes cardBob { 0%,100% { translate: 0 -7px; } 50% { translate: 0 7px; } }

.fc-spark { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin-bottom: 8px; }
.fc-spark span { width: 5px; border-radius: 2px; background: var(--mist); opacity: 0.85; animation: sparkPulse 1.8s ease-in-out infinite; }
.fc-spark span:nth-child(1){ height:35%; animation-delay:0s; } .fc-spark span:nth-child(2){ height:55%; animation-delay:.12s; }
.fc-spark span:nth-child(3){ height:42%; animation-delay:.24s; } .fc-spark span:nth-child(4){ height:72%; animation-delay:.36s; }
.fc-spark span:nth-child(5){ height:58%; animation-delay:.48s; } .fc-spark span:nth-child(6){ height:90%; background:var(--blue); animation-delay:.6s; }
.fc-spark span:nth-child(7){ height:100%; background:var(--blue); animation-delay:.72s; }
@keyframes sparkPulse { 0%,100% { transform: scaleY(0.82); } 50% { transform: scaleY(1); } }

.fc-avatars { display: flex; margin-bottom: 8px; }
.fc-avatars i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(13,38,72,0.9); margin-left: -7px; }
.fc-avatars i:first-child { margin-left: 0; }
.fc-avatars i:nth-child(1){ background: var(--blue); } .fc-avatars i:nth-child(2){ background: var(--mist); }
.fc-avatars i:nth-child(3){ background: var(--pink); } .fc-avatars i:nth-child(4){ background: var(--red); }
.fc-bar { height: 6px; border-radius: 100px; background: rgba(164,207,230,0.18); margin-top: 8px; overflow: hidden; }
.fc-bar span { display: block; height: 100%; width: 78%; border-radius: 100px; background: var(--grad-light); }

/* scroll cue */
.hero-scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid rgba(164,207,230,0.4); border-radius: 100px; z-index: 3; }
.hero-scrollcue span { position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 100px; background: var(--mist); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* stats bar */
.stats { background: var(--midnight); border-top: 1px solid rgba(164,207,230,0.12); }
.stats-grid { max-width: var(--container-body); margin: 0 auto; padding: 44px var(--gutter); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .n { font-size: clamp(21px, 2.25vw, 27px); font-weight: 700; color: #fff; line-height: 1; }
.stat .l { font-size: 11px; color: var(--mist); margin-top: 8px; letter-spacing: 0.03em; }

/* ============================================================
   AUDIT
   ============================================================ */
.audit { background: var(--off); }
.audit .wrap { padding-left: 160px; padding-right: 160px; }
@media (max-width: 1100px) { .audit .wrap { padding-left: 20px; padding-right: 20px; } }
.audit-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-card); padding: 40px; margin-top: 36px; }
.audit-form { display: flex; gap: 12px; margin-top: 4px; }
.audit-form input {
  flex: 1; padding: 15px 16px; font-family: var(--font); font-size: 12px;
  border: 1.5px solid var(--border-strong); border-radius: 8px; outline: none; color: var(--ink);
  transition: border-color .18s, box-shadow .18s; min-height: 44px;
}
.audit-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(50,99,209,0.18); }
.chips { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.chip { font-size: 11px; font-weight: 700; color: #1a6a96; background: #e8f4fb; padding: 7px 14px; border-radius: 100px; display: inline-flex; align-items: center; gap: 7px; }
.chip .score { color: var(--blue); }
/* result */
.audit-result { display: none; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.audit-result.show { display: block; }
.audit-score-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.audit-score { font-size: 48px; font-weight: 700; color: var(--blue); line-height: 1; }
.audit-score span { font-size: 18px; color: var(--faint); }
.audit-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 14px; }
.bar-row .k { font-size: 11px; font-weight: 700; color: var(--ink); }
.bar-track { height: 8px; background: var(--border); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--grad-light); border-radius: 100px; width: 0; transition: width 1s ease; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: #fff; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; perspective: 1100px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-card); transition: box-shadow .3s ease, transform .25s ease;
  transform-style: preserve-3d; will-change: transform; position: relative;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(50,99,209,0.14), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.svc-card.tilting::after { opacity: 1; }
.svc-card:hover { box-shadow: var(--shadow-hover); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transform: translateZ(30px); }
.svc-icon svg { width: 24px; height: 24px; stroke: #fff; }
.svc-card h3 { font-size: 14.3px; margin-bottom: 8px; transform: translateZ(20px); }
.svc-card p { font-size: 11px; color: var(--muted); line-height: 1.55; transform: translateZ(12px); }
.svc-foot { text-align: left; margin-top: 40px; }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { background: var(--navy); position: relative; overflow: hidden; }
.compare-bg { content: ""; position: absolute; top: -200px; left: 50%; margin-left: -350px; width: 700px; height: 460px; background: radial-gradient(ellipse, rgba(50,99,209,0.26) 0%, transparent 70%); pointer-events: none; will-change: transform; z-index: 0; }
.compare::before { content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(50,99,209,0.22) 0%, transparent 70%); pointer-events: none; }
.compare .eyebrow { color: var(--mist); }
.compare h2 { color: #fff; }

/* ---- VS section: Eight specialists, one retainer (reference layout, Growxth colors) ---- */
.team-roster { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 40px 0 32px; }
.tr-role { display: flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 99px; background: #fff; border: 1.5px solid var(--border); font-size: 12px; font-weight: 700; color: var(--navy); }
.tr-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--grad-energy); display: inline-block; }
.tr-price-tag { display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 99px; background: var(--midnight); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55); white-space: nowrap; }
.tr-price-tag strong { background: var(--grad-energy); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
.vs-seg { display: inline-grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 4px; gap: 4px; margin-bottom: 28px; }
.vs-seg-btn { padding: 11px 24px; border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--muted); background: transparent; border: 0; cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
.vs-seg-btn.active { background: var(--navy); color: #fff; }
.vs-card { border-radius: 24px; overflow: hidden; border: 1.5px solid var(--border); background: #fff; }
.vs-split { display: grid; grid-template-columns: 1fr 1fr; }
.vs-theirs { padding: 32px; border-right: 1.5px solid var(--border); transition: opacity .12s; }
.vs-theirs-head { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.vs-receipt { list-style: none; margin: 0; padding: 0; }
.vs-receipt li { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--border); gap: 12px; }
.vs-receipt li:last-child { border-bottom: 0; }
.vs-receipt-label { font-size: 12px; font-weight: 600; color: var(--body); }
.vs-receipt-val { font-size: 13px; font-weight: 800; color: var(--navy); text-align: right; white-space: nowrap; }
.vs-receipt-total { display: flex; justify-content: space-between; align-items: flex-end; padding: 14px 0 6px; border-top: 2px solid var(--navy); margin-top: 10px; gap: 12px; }
.vs-receipt-total-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--body); }
.vs-receipt-total-sub { font-size: 10px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.vs-receipt-total-val { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--navy); white-space: nowrap; }
.vs-reality { margin-top: 18px; display: flex; flex-direction: column; }
.vs-reality-item { display: flex; align-items: flex-start; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.vs-reality-item:last-child { border-bottom: 0; }
.vs-reality-x { width: 18px; height: 18px; border-radius: 5px; background: var(--off); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 9px; font-weight: 900; color: var(--muted); }
.vs-reality-text { font-size: 12px; font-weight: 500; color: var(--body); line-height: 1.5; }
.vs-reality-text strong { color: var(--navy); font-weight: 800; }
.vs-ours { padding: 32px; background: var(--midnight); }
.vs-ours-head { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 22px; }
.vs-price-num { font-size: 50px; font-weight: 800; letter-spacing: -.04em; line-height: 1; background: var(--grad-energy); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vs-price-sub { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 24px; margin-top: 4px; }
.vs-checks { display: flex; flex-direction: column; }
.vs-check { display: flex; align-items: flex-start; gap: 11px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.vs-check:last-child { border-bottom: 0; }
.vs-check-tick { width: 20px; height: 20px; border-radius: 6px; background: var(--grad-energy); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.vs-check-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .05em; }
.vs-check-val { font-size: 12.5px; font-weight: 800; color: #fff; line-height: 1.35; }
.vs-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1.5px solid var(--border); }
.vs-strip-cell { padding: 20px 24px; text-align: center; border-right: 1px solid var(--border); }
.vs-strip-cell:last-child { border-right: 0; }
.vs-strip-val { font-size: 20px; font-weight: 800; letter-spacing: -.03em; background: var(--grad-energy); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 5px; }
.vs-strip-lbl { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; line-height: 1.4; }
@media (max-width: 960px) { .vs-split { grid-template-columns: 1fr; } .vs-theirs { border-right: 0; border-bottom: 1.5px solid var(--border); } .vs-strip { grid-template-columns: 1fr; } .vs-strip-cell { border-right: 0; border-bottom: 1px solid var(--border); } }
@media (max-width: 680px) { .vs-seg { display: grid; grid-template-columns: 1fr; width: 100%; } }
.compare-table { position: relative; z-index: 2; margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(164,207,230,0.2); }
.col-head { padding: 24px 28px; font-size: 11px; font-weight: 700; border-bottom: 1px solid rgba(164,207,230,0.16); }
.col-head.old { color: rgba(164,207,230,0.5); }
.col-head.g { color: var(--blue); display: flex; align-items: center; gap: 10px; background: rgba(50,99,209,0.1); }
.col-head.g img { height: 18px; }
.cmp-row { padding: 17px 28px; display: flex; align-items: flex-start; gap: 11px; font-size: 11px; border-bottom: 1px solid rgba(164,207,230,0.1); }
.cmp-row:nth-last-child(-n+2) { border-bottom: none; }
.cmp-row.old { color: rgba(255,255,255,0.78); }
.cmp-row.g { color: #fff; font-weight: 700; background: rgba(50,99,209,0.08); border-left: 3px solid var(--blue); }
.cmp-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cmp-row.old svg { stroke: #f9a8be; }
.cmp-row.g svg { stroke: var(--mist); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--off); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: start; perspective: 1200px; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.plan-head { padding: 26px 28px; color: #fff; position: relative; }
.plan-head.starter { background: var(--navy); }
.plan-head.growth { background: var(--grad-hero); }
.plan-head.scale { background: var(--midnight); }
.plan.popular { transform: translateY(-12px); box-shadow: var(--shadow-pop); }
.plan.popular:hover { transform: translateY(-16px); }
.plan-badge { position: absolute; top: 16px; right: 16px; background: var(--grad-energy); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
.plan-name { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.plan-price { font-size: 30px; font-weight: 700; margin-top: 10px; line-height: 1; }
.plan-price small { font-size: 11.3px; font-weight: 400; opacity: 0.7; }
.plan-intro { font-size: 11px; opacity: 0.78; margin-top: 6px; }
.plan-body { padding: 24px 28px 30px; }
.plan-body .feat { display: flex; gap: 10px; align-items: flex-start; font-size: 11px; color: var(--body); padding: 8px 0; }
.plan-body .feat svg { width: 17px; height: 17px; stroke: var(--blue); flex-shrink: 0; margin-top: 2px; }
.plan .btn { width: 100%; margin-top: 18px; }
.pricing-foot { text-align: left; margin-top: 36px; }

/* ---- price cards (reference layout, Growxth colors) ---- */
.price-toggle-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 22px 0 6px; }
.ptoggle-track { display: flex; align-items: center; gap: 2px; background: #fff; border: 1px solid var(--border); border-radius: 99px; padding: 4px; box-shadow: var(--shadow-card); }
.ptoggle-opt { font-size: 13px; font-weight: 700; color: var(--muted); background: transparent; border: 0; padding: 9px 22px; border-radius: 99px; cursor: pointer; transition: background .2s, color .2s; }
.ptoggle-opt.active { background: var(--navy); color: #fff; }
.save-badge { color: var(--blue); font-size: 13px; font-weight: 700; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; margin-top: 40px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 32px; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.price-card.featured { background: var(--midnight); border-color: transparent; transform: translateY(-8px); box-shadow: var(--shadow-pop); }
.price-card.featured:hover { transform: translateY(-12px); }
.price-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--grad-energy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 10px 10px; }
.price-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.price-card.featured .price-name { color: rgba(255,255,255,.5); }
.price-desc { font-size: 12.5px; color: var(--body); margin-bottom: 22px; line-height: 1.55; min-height: 40px; }
.price-card.featured .price-desc { color: rgba(255,255,255,.55); }
.price-amount { margin-bottom: 6px; }
.price-amount .currency { font-size: 18px; font-weight: 800; color: var(--muted); vertical-align: top; }
.price-amount .amount { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--navy); }
.price-card.featured .price-amount .amount { background: var(--grad-energy); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-amount .period { font-size: 13px; font-weight: 600; color: var(--muted); }
.price-card.featured .price-amount .period { color: rgba(255,255,255,.4); }
.price-note { font-size: 11.5px; color: var(--muted); margin-bottom: 24px; }
.price-card.featured .price-note { color: rgba(255,255,255,.35); }
.price-divider { height: 1px; background: var(--border); margin: 0 0 22px; }
.price-card.featured .price-divider { background: rgba(255,255,255,.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--body); }
.price-card.featured .pf { color: rgba(255,255,255,.75); }
.pf-check { width: 18px; height: 18px; border-radius: 5px; background: rgba(224,26,80,.1); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .pf-check { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pf-muted { color: var(--muted); text-decoration: line-through; }
.pf-x { background: var(--off); color: var(--muted); }
.price-cta { display: block; text-align: center; padding: 13px; border-radius: 11px; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: all .18s; border: 0; }
.price-cta-outline { background: transparent; border: 1.5px solid var(--border); color: var(--navy); }
.price-cta-outline:hover { border-color: var(--blue); color: var(--blue); }
.price-cta-fill { background: var(--grad-hero); color: #fff; }
.price-cta-fill:hover { opacity: .9; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 12.5px; color: var(--muted); }
.pricing-note a { color: var(--blue); font-weight: 600; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }
.pricing .wrap, .compare .wrap, .tmonials .wrap { padding-left: 160px; padding-right: 160px; }
@media (max-width: 1100px) { .pricing .wrap, .compare .wrap, .tmonials .wrap { padding-left: 20px; padding-right: 20px; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta { background: var(--midnight); position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; top: -160px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(50,99,209,0.34) 0%, transparent 70%); pointer-events: none; will-change: transform; z-index: 0; }
.cta::before { content: ""; position: absolute; top: -120px; right: -60px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(50,99,209,0.32) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: var(--mist); font-size: 13.5px; margin-top: 18px; }
.cta .btn { margin-top: 30px; }

/* ---- final CTA (matches Social Media Branding service page) ---- */
.final { padding: 76px 0 0; text-align: center; background: #eef4fb; position: relative; }
.final h2 { font-size: clamp(28px, 4.4vw, 48px); margin-bottom: 12px; color: var(--ink); }
.final p { color: var(--muted); margin-bottom: 26px; font-size: 15px; }
.final .sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.cta-box { display: flex; gap: 10px; justify-content: center; max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 8px; box-shadow: 0 20px 40px -26px rgba(0,23,70,.22); }
.cta-box input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; padding: 0 14px; font: inherit; font-size: 15px; color: var(--ink); }
.cta-box:focus-within { border-color: var(--blue); }
.cta-msg { margin-top: 12px; font-size: 13.5px; color: #1a8a5c; min-height: 20px; font-weight: 600; }
@media (max-width: 640px) { .cta-box { flex-direction: column; padding: 12px; } .cta-box input { padding: 10px 8px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(180deg, var(--off) 0%, #f8f6fd 28%, #f6dcf1 48%, #eeb2e2 62%, #e79ad9 72%, #b9a8f0 82%, #8fb0f2 91%, #6f95ee 100%); color: var(--muted); padding: 0 0 48px; }
.footer > .wrap { margin-left: 80px; margin-right: 80px; }
@media (max-width: 900px) { .footer > .wrap { margin-left: 20px; margin-right: 20px; } }
.footer .wrap { background: rgba(255,255,255,0.78); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.85); border-radius: 26px; padding: clamp(36px, 4vw, 60px) clamp(24px, 3.4vw, 56px) clamp(24px, 3vw, 36px); }
.footer-top { display: grid; grid-template-columns: 0.8fr repeat(5, minmax(0,1fr)); gap: 32px; padding-bottom: 36px; }
@media (max-width: 1100px) { .footer-top { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 640px) { .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.footer-brand img { width: 170px; height: auto; display: block; margin: -34px 0 -30px -10px; }
.footer-brand p { font-size: 11px; color: var(--muted); line-height: 1.7; margin-top: 18px; max-width: 220px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0; text-transform: none; color: var(--navy); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 11px; color: #5c6b80; padding: 5px 0; line-height: 1.45; transition: color .15s ease; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 11px; color: var(--muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 9px; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, border-color .2s; }
.footer-social a:hover { color: var(--blue); border-color: var(--blue); }
.footer-social svg { width: 17px; height: 17px; stroke: currentColor; }
.footer-social svg[fill="currentColor"] { fill: currentColor; stroke: none; }

/* ============================================================
   SCROLL ENTRANCE
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 900px) {
  section { padding: 54px 0; }  .hero { padding: 122px 0 230px; min-height: 86vh; }
  .hero-copy { max-width: 100%; }
  .space-scene > div { top: 100%; }
  .space-scene .ring-outer { width: 920px; height: 920px; }
  .space-scene .ring-inner { width: 560px; height: 560px; }
  .space-scene .accretion-flare { width: 1280px; }
  .space-scene .black-hole { width: 240px; height: 240px; }
  .float-card { transform: none !important; min-width: 116px; padding: 11px 13px; }
  .float-card .fc-value { font-size: 15px; }
  .fc-engage { top: 0; left: 0; } .fc-followers { bottom: 4%; right: 0; } .fc-roas { display: none; }
  .hero-scrollcue { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .audit-form { flex-direction: column; }
  .svc-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .col-head.old, .cmp-row.old { display: none; }
  .plans { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

@media (hover: none) {
  .svc-card:hover { transform: none !important; }
  .svc-card.tilting { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-float, .hero-ring, .float-card, .fc-spark span, .hero-scrollcue span { animation: none !important; }
  .hero-stage { transform: none !important; }
  [data-parallax] { transform: none !important; }
}

/* ============================================================
   LIGHT-BLUE TINT — soft sky cast across the original light theme.
   The whole site reads light blue; navy bands (hero, stats,
   compare, cta, footer) stay for contrast and the sphere energy.
   ============================================================ */
:root {
  --off: #e4f0fb;          /* light-blue section band (was #f4f8fc) */
  --tint: #eaf3fd;
  --border: #d2e3f2;
  --border-strong: #bcd5ea;
}
body { background: var(--off); }

/* faint blue cast on the otherwise-white content sections */
.intro, .deliver { background: #f4faff; }



/* ============================================================
   GRADIENT SHIFT — navy stats sweeping into the light-blue page
   (navy → royal blue → soft light blue)
   ============================================================ */
.grad-shift {
  height: 120px;
  background: linear-gradient(180deg, #091e2e 0%, #2a59c6 100%);
}

/* ============================================================
   HOME — HOW IT WORKS (4-step onboarding timeline)
   ============================================================ */
.howit { background: #fff; }
.howit .wrap { padding-left: 80px; padding-right: 80px; }
.hw-scroll { height: 300vh; }
.hw-card { position: sticky; top: max(84px, calc(50vh - 330px)); background: #141414; border-radius: 26px; padding: clamp(28px, 3vw, 48px); display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.hw-copy h2 { color: #fff; font-size: clamp(21px, 2.4vw, 30px); line-height: 1.12; letter-spacing: -0.02em; }
.hw-lead { margin-top: 14px; font-size: 12.4px; line-height: 1.6; color: rgba(255,255,255,0.62); max-width: 420px; text-wrap: pretty; }
.hw-list { margin-top: clamp(24px, 3vw, 40px); }
.hw-item { position: relative; border-bottom: 1px solid rgba(255,255,255,0.14); }
.hw-trigger { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; width: 100%; background: none; border: none; padding: 14px 0 12px; cursor: pointer; font: inherit; text-align: left; }
.hw-day { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hw-item.active .hw-day { color: var(--mist); }
.hw-title { font-size: 12.4px; font-weight: 700; color: rgba(255,255,255,0.78); transition: color .2s ease; }
.hw-item:hover .hw-title, .hw-item.active .hw-title { color: #fff; }
.hw-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.hw-item.active .hw-body { grid-template-rows: 1fr; }
.hw-body > p { overflow: hidden; margin: 0; font-size: 11px; line-height: 1.65; color: rgba(255,255,255,0.56); max-width: 460px; }
.hw-item.active .hw-body > p { padding-bottom: 14px; }
.hw-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--blue); }
.hw-progress { transition: width .15s linear; }
.hw-cta { margin-top: 26px; }
.hw-media { position: relative; align-self: center; border-radius: 18px; min-height: 0; background: radial-gradient(120% 90% at 50% 40%, #1e2433 0%, #121212 70%); border: 1px solid rgba(255,255,255,0.08); aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 24px; }
.hw-shot { position: absolute; inset: 24px; border-radius: 12px; border: 1px dashed rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; opacity: 0; transform: scale(.98); transition: opacity .4s ease, transform .4s ease; pointer-events: none; }
.hw-shot.active { opacity: 1; transform: none; }
.hw-media-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
/* short viewports (or zoomed in): stop the sticky scroll, but keep the crossfading image column on the right */
@media (max-height: 820px) {
  .hw-scroll { height: auto; }
  .hw-card { position: static; max-height: none; padding: clamp(24px, 3vw, 44px); grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
  .hw-media { aspect-ratio: 4 / 3; min-height: 320px; }
}
/* narrow screens: only here does the image drop below the copy */
@media (max-width: 860px) {
  .hw-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; aspect-ratio: auto; padding: 16px; }
  .hw-shot { position: relative; inset: auto; opacity: 1; transform: none; aspect-ratio: 4 / 3; }
  .hw-scroll { height: auto; }
  .hw-card { position: static; max-height: none; grid-template-columns: 1fr; padding: clamp(24px, 4vw, 44px); }
  .hw-item .hw-body { grid-template-rows: 1fr; }
  .hw-item .hw-body > p { padding-bottom: 18px; }
  .hw-progress { display: none; }
}
@media (max-width: 900px) {
  .howit .wrap { padding-left: 20px; padding-right: 20px; }
}

/* WHAT WE DO — service tabs */
.wd-section { background: #fff; }
.wd-section .wrap { padding-left: 160px; padding-right: 160px; }
.wd-section h2 { text-wrap: balance; }
.wd-cats { display: flex; gap: 10px; margin: 32px 0 16px; }
.wd-cat { appearance: none; border: 1px solid rgba(11,31,59,0.14); background: #fff; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; color: #5a6b83; padding: 12px 26px; border-radius: 12px; transition: .2s; }
.wd-cat:hover { color: var(--navy); border-color: rgba(50,99,209,0.35); }
.wd-cat.active { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 8px 24px rgba(0,23,70,0.18); }
.wd-tabs { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 6px 10px; margin: 0 0 46px; max-width: 1000px; }
.wd-tab { appearance: none; border: 1px solid transparent; background: none; cursor: pointer; font: inherit; font-size: 11.3px; font-weight: 600; color: #5a6b83; padding: 10px 18px; border-radius: 100px; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.wd-tab:hover { color: var(--navy); background: rgba(11,31,59,0.05); }
.wd-tab.active { color: var(--navy); background: #fff; border-color: rgba(50,99,209,0.45); box-shadow: 0 6px 22px rgba(50,99,209,0.14); }
.wd-panels { position: relative; }
.wd-panel { display: none; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: clamp(32px,5vw,80px); align-items: center; animation: wdfade .35s ease both; }
.wd-panel.active { display: grid; }
@keyframes wdfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wd-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 20px; }
.wd-list li { position: relative; padding-left: 20px; font-size: 12.4px; line-height: 1.6; color: #43566f; text-wrap: pretty; }
.wd-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue, #3263d1); }
.wd-list strong { color: var(--navy); font-weight: 700; }
.wd-media { position: relative; aspect-ratio: 16 / 10; border-radius: 18px; background: repeating-linear-gradient(135deg, #f4f7fb 0 14px, #eef3f9 14px 28px); border: 1px dashed rgba(11,31,59,0.18); display: flex; align-items: center; justify-content: center; padding: 24px; }
.wd-media-label { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: #8a9bb1; text-align: center; }
@media (max-width: 1100px) {
  .wd-section .wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 860px) {
  .wd-cats { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .wd-cats::-webkit-scrollbar { display: none; }
  .wd-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; scrollbar-width: none; }
  .wd-tabs::-webkit-scrollbar { display: none; }
  .wd-tab { flex: none; }
  .wd-panel.active { grid-template-columns: 1fr; }
  .wd-media { order: -1; }
}

/* ============================================================
   TESTIMONIALS (home + our-work) — quote cards
   ============================================================ */
.tmonials { background: var(--off); overflow: hidden; }
.tmonials-marquee { display: flex; flex-direction: column; gap: 22px; margin-top: 48px; }
.tm-row { display: flex; width: max-content; }
.tm-row.row1 { animation: tmScrollLeft 42s linear infinite; }
.tm-row.row2 { animation: tmScrollRight 48s linear infinite; }
@keyframes tmScrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tmScrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tmonials-marquee:hover .tm-row { animation-play-state: paused; }
.tcard {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 28px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  width: 380px; flex-shrink: 0; margin-right: 22px;
  transition: box-shadow .3s ease, transform .25s ease;
}
.tcard:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.tcard-quote { font-size: 30px; line-height: 0.6; color: var(--mist); font-family: Georgia, 'Times New Roman', serif; height: 20px; }
.tcard p { font-size: 11px; line-height: 1.7; color: var(--body); flex: 1; }
.tcard-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.tcard-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-hero); color: #fff; font-weight: 700; font-size: 11.3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tcard-name { font-size: 11px; font-weight: 700; color: var(--navy); }
.tcard-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

@media (max-width: 900px) {
  .hl-card { width: 88vw; height: clamp(420px, 70vh, 560px); }
  .hl-track { padding: 0 6vw; gap: 14px; }
  .hl-caption { padding: 28px; }
  .tmonials-marquee .tcard { width: 300px; margin-right: 16px; }
  .grad-shift { height: 90px; }
}
@media (min-width: 901px) and (max-width: 1024px) {
  .tmonials-marquee .tcard { width: 340px; margin-right: 22px; }
}

/* ---- unified band: Instant Audit → Testimonials all share the audit background ---- */
.audit, .services, .hl-section, .howit, .pricing, .compare, .tmonials { background: var(--off); }
.compare::before, .compare-bg { display: none; }
.compare .eyebrow, .hl-head .eyebrow { color: var(--blue); }
.compare h2, .hl-head h2 { color: var(--navy); }
.compare-table { background: #fff; border-color: var(--border); backdrop-filter: none; box-shadow: var(--shadow-card); }
.compare::before, .compare-bg, .compare-table, .col-head { display: none; }
.col-head { border-bottom: 1px solid var(--border); }
.col-head.old { color: var(--muted); }
.cmp-row { border-bottom: 1px solid var(--border); }
.cmp-row.old { color: var(--muted); }
.cmp-row.g { color: var(--navy); }
.cmp-row.g svg { stroke: var(--blue); }

/* ---- type-scale corrections after the 25% reduction (restore hierarchy) ---- */
.plan-body .feat, .cmp-row, .tcard p, .svc-card p, .hw-body > p, .footer-col a, .footer-brand p, .wd-list li { font-size: 12.5px; }
.lead, .hero-body { font-size: 13.5px; }
.stat .l, .bar-row .k, .tcard-name, .hw-title { font-size: 12.5px; }
.tcard-role, .chip, .plan-intro, .footer-bottom { font-size: 11px; }
.hw-title { font-size: 14px; }
.audit-form input { font-size: 16px; }
.btn { font-size: 13px; }
.btn-lg { font-size: 14.5px; }
.nav-links a { font-size: 14.5px; }
.nav-cta .btn { font-size: 13.5px; }

/* ============================================================
   HERO TYPOGRAPHY — shared by Home and the coming-soon page.
   Larger headline, gradient on the <em> phrase, narrower copy.
   ============================================================ */
.hero h1 { font-size: clamp(32px, 5.4vw, 60px); }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #a4cfe6, #ffffff 45%, #ff7ac8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 820px; }
.hero-copy--wide { max-width: 1040px; } /* Home: room for its two-line headline */
.hero-body { max-width: 600px; }
@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .hero h1 br { display: none; }
}
@media (max-width: 900px) {
  .hero-copy--wide { padding: 0 20px; }
}
