/* ============================================================
   Agentox — premium design system
   Palette derived from the logo (LinkedIn-adjacent blue + ink)
   ============================================================ */
:root {
  --blue:       #1577D4;
  --blue-600:   #0A66C2;
  --blue-400:   #3B95F0;
  --blue-100:   #E8F2FD;
  --blue-050:   #F4F8FE;
  --ink:        #0A1020;
  --ink-800:    #121A2E;
  --ink-700:    #1B2540;
  --slate:      #566178;
  --slate-300:  #9AA4B8;
  --line:       #EAEEF5;
  --line-2:     #DCE3EE;
  --bg:         #FFFFFF;
  --bg-soft:    #F6F8FC;
  --bg-tint:    #FAFBFE;
  --white:      #FFFFFF;

  --grad: linear-gradient(120deg, var(--blue-400), var(--blue-600));
  --shadow-xs: 0 1px 2px rgba(15, 30, 60, .04), 0 1px 3px rgba(15, 30, 60, .04);
  --shadow-sm: 0 2px 6px rgba(15, 30, 60, .05), 0 8px 24px -12px rgba(15, 30, 60, .08);
  --shadow:    0 8px 24px -8px rgba(15, 30, 60, .12), 0 24px 60px -28px rgba(11, 60, 130, .28);
  --shadow-lg: 0 24px 60px -20px rgba(11, 60, 130, .28), 0 48px 100px -40px rgba(11, 60, 130, .40);
  --shadow-ring: 0 0 0 1px rgba(21,119,212,.10);
  --radius: 18px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Sora', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv11";
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue-100); color: var(--blue-600); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: .1px;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .22s var(--ease), background .2s ease, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(21,119,212,.55), inset 0 -1px 0 rgba(0,0,0,.12); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(21,119,212,.6); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--blue-600); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-100); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- WhatsApp float ---------- */
.wabtn .wa-link { position: fixed; bottom: 22px; right: 22px; z-index: 999999999; display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 100px; background: #00E785; color: #fff; box-shadow: 0 10px 28px -6px rgba(0, 200, 100, .5); animation: pulseWA 2.5s ease infinite; text-decoration: none; }
.wabtn .wa-link:hover { transform: scale(1.06); }
.wabtn svg { padding: 5px; width: 42px; height: 42px; }
@keyframes pulseWA { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ---------- Announcement bar ---------- */
.announce { background: var(--ink); color: #dfe7f3; text-align: center; font-size: 13.5px; padding: 10px 16px; letter-spacing: .1px; }
.announce strong { color: #fff; }
.announce a { color: var(--blue-400); font-weight: 700; margin-left: 4px; transition: color .15s; }
.announce a:hover { color: #fff; }
.announce .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #38d39f; margin-right: 8px; box-shadow: 0 0 0 0 rgba(56,211,159,.6); animation: pulse 2.2s infinite; vertical-align: middle; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(56,211,159,0); } 100% { box-shadow: 0 0 0 0 rgba(56,211,159,0);} }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -.3px; }
.brand img { border-radius: 8px; }
.brand-dot { color: var(--blue); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--slate); position: relative; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform .2s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 6px; padding: 14px 24px 20px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu a { padding: 12px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--bg-soft); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; background:
  radial-gradient(1200px 520px at 50% -12%, rgba(21,119,212,.11), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 320px at 82% 12%, rgba(59,149,240,.16), transparent 60%),
    radial-gradient(520px 300px at 12% 32%, rgba(10,102,194,.10), transparent 60%);
}
.hero-inner { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(21,119,212,.06); color: var(--blue-600);
  border: 1px solid rgba(21,119,212,.18); border-radius: 999px;
  font-size: 13px; font-weight: 600; padding: 7px 16px; margin-bottom: 26px;
  box-shadow: 0 1px 2px rgba(21,119,212,.05);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 6.2vw, 68px); line-height: 1.02; letter-spacing: -1.6px; margin: 0 0 22px;
}
.hero-sub { font-size: clamp(16px, 2.1vw, 20px); color: var(--slate); max-width: 620px; margin: 0 auto 24px; }
.hero-sub em { color: var(--ink); font-style: normal; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof p { font-size: 14.5px; color: var(--slate); margin: 0; }
.hero-proof strong { color: var(--ink); }
.avatars { display: flex; }
.avatars .av { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; box-shadow: 0 2px 6px rgba(15,30,60,.12); object-fit: cover; background: var(--bg-soft); }
.avatars .av:first-child { margin-left: 0; }

/* ---------- Hero VSL (YouTube facade) ---------- */
.vsl { width: min(100%, 820px); margin: 46px auto 6px; }
.vsl-facade {
  position: relative; display: block; width: 100%;
  padding: 0; margin: 0; border: 0; cursor: pointer;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #07162d; color: #fff; font-family: var(--font);
  box-shadow: 0 24px 60px -20px rgba(11,60,130,.35), 0 40px 100px -40px rgba(11,60,130,.35), inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.vsl-facade:hover { transform: translateY(-3px); box-shadow: 0 28px 80px -20px rgba(11,60,130,.45), 0 48px 120px -40px rgba(11,60,130,.45); }
/* Padding-ratio spacer keeps the frame stable in older mobile browsers. */
.vsl-ratio { display: block; width: 100%; padding-top: 56.25%; pointer-events: none; }
.vsl-thumb {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(520px 260px at 16% 18%, rgba(68,163,255,.45), transparent 58%),
    radial-gradient(520px 260px at 86% 84%, rgba(0,95,190,.48), transparent 58%),
    linear-gradient(135deg, #07162d 0%, #0c356d 54%, #061226 100%);
}
.vsl-thumb::before {
  content: ""; position: absolute; inset: 10%;
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.vsl-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(620px at 50% 50%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(620px at 50% 50%, #000, transparent 72%);
}
.vsl-thumb.has-poster { background-size: cover; background-position: center; background-repeat: no-repeat; }
.vsl-thumb.has-poster::before,
.vsl-thumb.has-poster::after { display: none; }
.vsl-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(4,12,25,.08) 0%, rgba(4,12,25,.20) 45%, rgba(4,12,25,.78) 100%); }
.vsl-content { position: absolute; left: 32px; right: 32px; bottom: 26px; text-align: left; color: #fff; z-index: 2; pointer-events: none; }
.vsl-tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: #fff; background: rgba(59,149,240,.35); backdrop-filter: blur(6px); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.vsl-title { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(16px, 2.2vw, 22px); line-height: 1.25; color: #fff; max-width: 560px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.vsl-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: clamp(58px, 17vw, 88px); height: clamp(58px, 17vw, 88px);
  border-radius: 50%; z-index: 3;
  background: #fff; color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 8px rgba(255,255,255,.14);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  pointer-events: none;
}
.vsl-facade:hover .vsl-play { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 12px rgba(255,255,255,.18); }
.vsl-play svg { width: clamp(23px, 7vw, 30px); height: clamp(23px, 7vw, 30px); margin-left: 3px; display: block; flex: none; }
.vsl.playing .vsl-facade { display: none; }
.vsl-iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.vsl-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.vsl-watch-link { display: inline-flex; margin-top: 12px; color: var(--blue-600); font-size: 13.5px; font-weight: 700; }
.vsl-watch-link:hover { color: var(--ink); }

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 34px 24px; text-align: center; }
.strip-item strong { display: block; font-family: var(--display); font-size: 30px; font-weight: 800; color: var(--blue-600); letter-spacing: -.6px; }
.strip-item span { font-size: 13.5px; color: var(--slate); }

/* ---------- Client logo wall ---------- */
.logos { padding: 48px 0; border-bottom: 1px solid var(--line); background: #fff; }
.logos-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate-300); margin: 0 0 28px; }
.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 48px; }
.logo-mark { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.3px; color: #9aa6ba; filter: grayscale(1); opacity: .85; transition: color .2s, opacity .2s, filter .2s; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-mark .logo-img { display: block; object-fit: contain; filter: grayscale(1) contrast(.75) brightness(1.35); opacity: .9; }
.logo-mark .logo-img-icon { width: 24px; height: 24px; }
.logo-mark .logo-img-word { width: 92px; height: auto; max-height: 27px; }
.logo-mark-word { gap: 0; }
.logo-mark:hover { color: var(--blue-600); opacity: 1; filter: grayscale(0); }

/* ---------- Section scaffolding ---------- */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: #d7deec; }
.section-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.eyebrow.light { color: var(--blue-400); }
.section-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.08; letter-spacing: -1.2px; margin: 0 0 16px; }
.section-head h2.on-dark { color: #fff; }
.lead { font-size: clamp(16px,2vw,19px); color: var(--slate); margin: 0; }
.lead em { color: var(--ink); font-style: normal; font-weight: 600; }
.on-dark-sub { color: var(--slate-300); }
.on-dark-sub em { color: #fff; }
.hero-note { font-size: 15.5px; color: var(--ink); max-width: 560px; margin: 0 auto 32px; font-weight: 700; }
.strip-note { max-width: 760px; padding: 0 24px 30px; margin: -12px auto 0; text-align: center; font-size: 13.5px; color: var(--slate); }
.content-block { max-width: 720px; margin: 0 auto 30px; color: var(--slate); font-size: 16px; line-height: 1.65; }
.content-block p { margin: 0 0 14px; }
.content-block p:last-child { margin-bottom: 0; }
.section-note { max-width: 700px; margin: 30px auto 0; text-align: center; font-size: 16px; color: var(--ink); font-weight: 700; line-height: 1.55; }
.section-dark .section-note { color: #fff; }
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 28px; align-items: stretch; }
.split .content-block { margin: 0; }
.highlight-box {
  background: #fff; border: 1px solid rgba(21,119,212,.20); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.highlight-box strong { display: block; font-family: var(--display); font-size: 24px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; letter-spacing: -.3px; }
.highlight-box p { margin: 0; color: var(--slate); font-size: 15.5px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cards-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.plain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-xs);
  transition: transform .22s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.plain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.plain-card h3 { font-family: var(--display); font-size: 17px; line-height: 1.25; margin: 0 0 10px; letter-spacing: -.2px; }
.plain-card p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.6; }
.section-soft .plain-card { background: #fff; }
.steps-6 { grid-template-columns: repeat(3,1fr); }
.idea-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; max-width: 920px; margin: 0 auto; }
.idea-list span {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; color: var(--ink); font-size: 14.5px; font-weight: 600;
  box-shadow: var(--shadow-xs);
}

/* ---------- Compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-xs); transition: transform .2s var(--ease), box-shadow .25s var(--ease); }
.compare-col.new { border-color: rgba(21,119,212,.22); box-shadow: var(--shadow-sm); position: relative; }
.compare-col.new:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.compare-tag { display: inline-block; font-weight: 700; font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--slate); background: var(--bg-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.compare-tag.accent { color: #fff; background: var(--blue); }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li { position: relative; padding: 12px 0 12px 32px; font-size: 15.5px; border-top: 1px solid var(--bg-soft); }
.compare-col li:first-child { border-top: 0; }
.compare-col.old li { color: var(--slate); }
.compare-col.old li::before { content: "✕"; position: absolute; left: 0; top: 12px; color: #c0392b; font-weight: 700; }
.compare-col.new li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--blue); font-weight: 800; }
.compare-col.new strong { color: var(--ink); }

/* ---------- Feature cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature {
  background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-800) 100%);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,149,240,.4), transparent); opacity: 0; transition: opacity .22s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(59,149,240,.35); box-shadow: 0 24px 60px -30px rgba(59,149,240,.4); }
.feature:hover::before { opacity: 1; }
.feature-ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(59,149,240,.20), rgba(10,102,194,.10)); border: 1px solid rgba(59,149,240,.18); margin-bottom: 20px; color: var(--blue-400); }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-family: var(--display); font-size: 19px; color: #fff; margin: 0 0 8px; letter-spacing: -.2px; }
.feature p { font-size: 14.5px; color: var(--slate-300); margin: 0; line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-xs); transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.step-no { font-family: var(--display); font-weight: 800; font-size: 42px; color: transparent; -webkit-text-stroke: 1.5px var(--blue); line-height: 1; margin-bottom: 18px; opacity: .9; }
.step h3 { font-family: var(--display); font-size: 18px; margin: 0 0 8px; letter-spacing: -.2px; }
.step p { font-size: 14.5px; color: var(--slate); margin: 0; }

/* ---------- Embeds ---------- */
.embeds { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s var(--ease), box-shadow .25s var(--ease); }
.embed:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.embed-hero { border-color: rgba(21,119,212,.35); box-shadow: 0 8px 24px -8px rgba(15,30,60,.14), 0 24px 60px -28px rgba(11,60,130,.28); position: relative; }
.embed-hero::before { content: "★ Top post"; position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .6px; padding: 4px 10px; border-radius: 999px; box-shadow: 0 4px 14px rgba(21,119,212,.5); }
.embed iframe { display: block; width: 100%; height: 600px; border: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; padding: 32px 20px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: linear-gradient(180deg, var(--ink-700), var(--ink-800)); transition: transform .2s var(--ease), border-color .2s; }
.stat:hover { transform: translateY(-3px); border-color: rgba(59,149,240,.3); }
.stat-num { display: block; font-family: var(--display); font-weight: 800; font-size: 42px; letter-spacing: -1.2px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { display: block; font-size: 14px; color: var(--slate-300); margin-top: 8px; }
.stat-foot { text-align: center; font-size: 13.5px; color: var(--slate-300); margin: 30px auto 0; max-width: 640px; }
.section-soft .stat-foot, .section:not(.section-dark) .stat-foot { color: var(--slate); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plans-4 { grid-template-columns: repeat(4,1fr); gap: 20px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 26px; box-shadow: var(--shadow-xs); position: relative; transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; display: flex; flex-direction: column; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.plan-pop { border: 1.5px solid var(--blue); box-shadow: 0 24px 60px -20px rgba(11,60,130,.28), 0 40px 100px -40px rgba(11,60,130,.35); transform: translateY(-10px); background: linear-gradient(180deg, #fff, #f9fcff); }
.plan-pop:hover { transform: translateY(-14px); }
.plan-starter { background: linear-gradient(180deg, #f4f9ff 0%, #fff 60%); border-color: rgba(21,119,212,.22); }
.plan-tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; color: var(--blue-600); background: var(--blue-100); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .5px; padding: 6px 16px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 8px 20px -6px rgba(21,119,212,.45); }
.plan h3 { font-family: var(--display); font-size: 21px; margin: 0 0 6px; letter-spacing: -.3px; }
.plan-for { font-size: 13.5px; color: var(--slate); margin: 0 0 20px; min-height: 40px; line-height: 1.45; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line-2); }
.price .amt { font-family: var(--display); font-weight: 800; font-size: 38px; letter-spacing: -1.2px; }
.price .per { color: var(--slate); font-size: 14px; font-weight: 500; }
.plan-cta { width: 100%; margin-bottom: 22px; }
.plan-list { list-style: none; margin: 0; padding: 0; }
.plan-list li { position: relative; padding: 10px 0 10px 26px; font-size: 14px; color: var(--ink); border-top: 1px solid var(--bg-soft); line-height: 1.5; }
.plan-list li:first-child { border-top: 0; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--blue); font-weight: 800; }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-xs); display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .25s var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { margin: 0 0 22px; font-size: 15.5px; line-height: 1.65; color: var(--ink); flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.t-av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--c1, #3B95F0), var(--c2, #0A66C2)); flex-shrink: 0; }
.t-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tcard figcaption span:last-child { display: flex; flex-direction: column; font-size: 13.5px; color: var(--slate); line-height: 1.35; }
.tcard figcaption strong { color: var(--ink); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; background: #fff; transition: border-color .2s, box-shadow .2s, background .2s; }
.faq details:hover { border-color: var(--line-2); }
.faq details[open] { border-color: rgba(21,119,212,.28); box-shadow: var(--shadow-sm); background: #fff; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 17px; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { font-size: 26px; color: var(--blue); font-weight: 300; transition: transform .25s var(--ease); line-height: 1; }
.faq details[open] .chev { transform: rotate(45deg); }
.faq p { margin: 0 0 20px; color: var(--slate); font-size: 15px; line-height: 1.65; }

/* ---------- Final CTA ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue-600) 0%, #0b3f86 70%, #082a5c 100%); color: #fff; padding: 104px 0; text-align: center; }
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px,5vw,50px); line-height: 1.08; letter-spacing: -1.2px; margin: 0 0 18px; }
.cta p { font-size: 18px; color: #d6e6fb; margin: 0 auto 32px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-mini { font-size: 14px; margin-top: 24px !important; color: #b7ceec !important; }
.cta-mini a { color: #fff; text-decoration: underline; font-weight: 600; }
.cta .hero-glow { background: radial-gradient(700px 320px at 70% 0%, rgba(255,255,255,.18), transparent 60%); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--slate-300); padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin: 14px 0 0; line-height: 1.55; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-cols h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.footer-cols a { display: block; font-size: 14px; padding: 6px 0; color: var(--slate-300); transition: color .15s; }
.footer-cols a:hover { color: var(--blue-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; }
.footer-legal a { color: var(--slate-300); }
.footer-legal a:hover { color: #fff; }

/* ---------- Lead popup modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(8, 14, 28, .62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .25s ease; }
.modal-overlay.open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal { position: relative; width: 100%; max-width: 460px; background: #fff; border-radius: 22px; padding: 40px 34px 34px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); transform: translateY(16px) scale(.98); transition: transform .3s var(--ease); }
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--bg-soft); color: var(--slate); cursor: pointer; transition: background .2s, color .2s; }
.modal-close:hover { background: #e9eef5; color: var(--ink); }
.modal-close svg { width: 18px; height: 18px; }
.modal-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11.5px; font-weight: 700; color: var(--blue); background: var(--blue-100); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.modal h3 { font-family: var(--display); font-weight: 800; font-size: 27px; line-height: 1.15; letter-spacing: -.6px; margin: 0 0 12px; }
.modal-lead { font-size: 15px; color: var(--slate); margin: 0 0 22px; }
.modal-countdown { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 6px 12px; margin: -8px 0 18px; border-radius: 999px; background: rgba(224,70,62,.10); color: #d23b32; font-size: 13px; font-weight: 800; }
.modal-countdown[hidden] { display: none; }
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input { width: 100%; padding: 13px 15px; font-size: 15px; font-family: var(--font); border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input::placeholder { color: var(--slate-300); }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,119,212,.14); }
.field input.invalid { border-color: #e0463e; box-shadow: 0 0 0 3px rgba(224,70,62,.12); }
.field-err { display: block; min-height: 16px; margin-top: 5px; font-size: 12.5px; color: #d23b32; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.modal-submit { width: 100%; margin-top: 4px; }
.modal-submit:disabled { opacity: .65; cursor: progress; }
.modal-fineprint { font-size: 12px; color: var(--slate-300); text-align: center; margin: 14px 0 0; }
.modal-success-view { text-align: center; padding: 8px 0; }
.modal-success-view[hidden] { display: none; }
.success-ic { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(56,211,159,.16); color: #16a085; }
.success-ic svg { width: 32px; height: 32px; }
.modal-success-view h3 { font-size: 24px; }
.modal-success-view p { color: var(--slate); font-size: 15px; margin: 0 0 22px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .plans-4 { grid-template-columns: repeat(2,1fr); }
  .plan-pop { transform: none; }
  .cards-5 { grid-template-columns: repeat(3,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  .cards-3, .steps, .stats, .tcards, .embeds { grid-template-columns: repeat(2,1fr); }
  .steps-6 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }
  .section { padding: 64px 0; }
  .compare, .plans, .plans-4, .embeds { grid-template-columns: 1fr; }
  .cards-4, .cards-5, .idea-list { grid-template-columns: 1fr; }
  .hero-note { margin-top: -16px; font-size: 14.5px; }
  .content-block { font-size: 15px; }
  .highlight-box { padding: 24px; }
  .highlight-box strong { font-size: 21px; }
  .plan-pop { transform: none; }
  .strip-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .hero { padding: 60px 0 48px; }
  .vsl-content { left: 20px; right: 20px; bottom: 18px; }
  .vsl-play { width: 68px; height: 68px; }
  .vsl-play svg { width: 26px; height: 26px; }
  .wabtn .wa-link { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wabtn svg { width: 36px; height: 36px; }
}
@media (max-width: 460px) {
  .cards-3, .steps, .stats, .tcards { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .modal { padding: 32px 24px 28px; }
  .modal h3 { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wabtn .wa-link { animation: none; }
  .announce .dot { animation: none; }
}
