/* ==========================================================================
   Lead Launchers — recreation of the "Beyond" Digital Marketing Agency layout
   Blue→cyan gradient, clean minimalist, rounded organic shapes, pill buttons
   ========================================================================== */

:root {
  --blue-900: #2b1ea8;
  --blue-700: #3a49e6;
  --blue-500: #3f6fff;
  --blue-600: #3452f0;
  --cyan-500: #17c3f3;
  --cyan-400: #22d3ee;
  --cyan-300: #4dd8f5;
  --ink: #1c2340;
  --slate: #5a6485;
  --muted: #8a93b2;
  --line: #e7eaf3;
  --bg-soft: #f5f7fc;
  --white: #ffffff;
  --grad-hero: linear-gradient(120deg, #3b1fb3 0%, #3a49e6 38%, #22b8f0 100%);
  --grad-cyan: linear-gradient(90deg, #22d3ee 0%, #38bdf8 100%);
  --shadow-sm: 0 10px 30px rgba(31, 45, 120, .08);
  --shadow-md: 0 20px 50px rgba(31, 45, 120, .14);
  --radius: 18px;
  --radius-lg: 34px;
  --maxw: 1180px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-cyan {
  background: var(--grad-cyan);
  color: #06283d;
  box-shadow: 0 12px 26px rgba(34, 211, 238, .38);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(34, 211, 238, .5); }
.btn-white { background: #fff; color: var(--blue-700); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline { background: transparent; color: var(--blue-700); border: 2px solid var(--blue-500); }
.btn-outline:hover { background: var(--blue-500); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 22px 0;
}
.site-header.solid {
  background: #fff;
  box-shadow: 0 6px 24px rgba(20, 30, 80, .08);
  padding: 14px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; letter-spacing: -.5px;
  color: #fff;
}
.brand .mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  padding: 5px;
  box-shadow: 0 4px 14px rgba(18,63,110,.18);
  border: 1px solid rgba(18,63,110,.08);
}
.brand .mark img { width: 100%; height: 100%; display: block; }
.site-header.solid .brand { color: var(--ink); }
.brand b { color: #5cb646; }

.nav-links {
  display: flex; align-items: center; gap: 34px;
  list-style: none;
}
.nav-links > li > a {
  color: rgba(255,255,255,.92);
  font-weight: 500; font-size: 15px;
  padding: 8px 0;
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
}
.site-header.solid .nav-links > li > a { color: var(--ink); }
.nav-links > li > a:hover { color: var(--cyan-300); }
.site-header.solid .nav-links > li > a:hover { color: var(--blue-500); }
.nav-links > li > a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--cyan-400); border-radius: 2px;
}

/* dropdowns */
.has-drop { position: relative; }
.caret { font-size: 10px; opacity: .8; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 10px; min-width: 250px;
  opacity: 0; visibility: hidden;
  transition: all .22s ease;
  border: 1px solid var(--line);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: var(--ink); font-size: 14.5px; font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.dropdown a span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; }
.dropdown a:hover { background: var(--bg-soft); color: var(--blue-600); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { color: #fff; font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.site-header.solid .nav-phone { color: var(--ink); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.site-header.solid .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 180px 0 200px;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.hero::before { width: 520px; height: 520px; top: -120px; left: -160px; }
.hero::after { width: 380px; height: 380px; bottom: -120px; right: -80px; background: rgba(255,255,255,.05); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-eyebrow { font-size: 15px; color: var(--cyan-300); font-weight: 500; margin-bottom: 14px; letter-spacing: .3px; }
.hero h1 { font-size: 54px; line-height: 1.1; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.82); max-width: 500px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 46px; }
.hero-stats .num { font-size: 30px; font-weight: 700; }
.hero-stats .lbl { font-size: 13.5px; color: rgba(255,255,255,.7); }
.hero-visual { position: relative; }
.hero-visual .blob {
  aspect-ratio: 1/1; border-radius: 44% 56% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(150deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.28);
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  padding: 40px;
}
.hero-visual .blob .emoji { font-size: 120px; }

.wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave svg { width: 100%; height: 90px; display: block; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-500); margin-bottom: 14px;
}
.section-head h2 { font-size: 40px; line-height: 1.15; letter-spacing: -.8px; font-weight: 700; margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--slate); }
h2 .grad, .grad { background: linear-gradient(90deg, #3a49e6, #22b8f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(58,73,230,.12), rgba(34,184,240,.12));
}
.card h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -.3px; }
.card p { color: var(--slate); font-size: 15px; }
.card .link { margin-top: 16px; display: inline-flex; gap: 6px; color: var(--blue-500); font-weight: 600; font-size: 14.5px; }
.card .link:hover { gap: 10px; }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 22px; font-weight: 600; font-size: 15px; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: .2s;
  display: inline-flex; align-items: center; gap: 9px;
}
.pill:hover { transform: translateY(-3px); color: var(--blue-500); border-color: var(--blue-500); }
.pill .dot { color: var(--cyan-400); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .visual {
  border-radius: var(--radius-lg);
  background: var(--grad-hero); min-height: 380px;
  display: grid; place-items: center; color: #fff; font-size: 130px;
  box-shadow: var(--shadow-md);
  border-radius: 46% 54% 52% 48% / 52% 48% 52% 48%;
}
.split h2 { font-size: 36px; letter-spacing: -.6px; margin-bottom: 18px; line-height: 1.18; }
.split p { color: var(--slate); font-size: 16.5px; margin-bottom: 18px; }
.checklist { list-style: none; display: grid; gap: 14px; margin: 22px 0 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.checklist li .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-cyan);
  color: #06283d; display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 2px;
}

/* ---------- Stats band ---------- */
.band { background: var(--grad-hero); color: #fff; padding: 70px 0; }
.band .grid-4 { text-align: center; }
.band .num { font-size: 44px; font-weight: 700; }
.band .lbl { color: rgba(255,255,255,.8); font-size: 15px; }

/* ---------- CTA ---------- */
.cta-final { text-align: center; padding: 100px 0; background: var(--bg-soft); }
.cta-final h2 { font-size: 42px; letter-spacing: -.8px; margin-bottom: 16px; }
.cta-final p { font-size: 18px; color: var(--slate); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote-card .stars { color: #f7b500; margin-bottom: 14px; letter-spacing: 2px; }
.quote-card p { font-size: 15.5px; color: var(--ink); font-style: italic; }
.quote-card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-hero); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote-card .who b { font-size: 15px; }
.quote-card .who span { font-size: 13px; color: var(--muted); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: 170px 0 130px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content:''; position:absolute; width:460px; height:460px; border-radius:50%; background:rgba(255,255,255,.06); top:-140px; right:-120px; }
.page-hero .eyebrow { color: var(--cyan-300); }
.page-hero h1 { font-size: 48px; letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 2; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.crumb { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 18px; position: relative; z-index: 2; }
.crumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #0f1533; color: #c7cee6; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid .brand { color: #fff; margin-bottom: 16px; }
.site-footer p { font-size: 14.5px; color: #939cc0; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .3px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: #a6adce; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 13.5px; color: #7c85a8; flex-wrap: wrap; gap: 10px; }

/* ---------- Channel deep-dive ---------- */
.chan { padding: 74px 0; border-bottom: 1px solid var(--line); }
.chan:last-of-type { border-bottom: none; }
.chan .split { align-items: center; }
.chan-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 14px;
}
.chan-badge .n {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--grad-cyan); color: #06283d; font-size: 14px; font-weight: 800;
}
.chan h2 { font-size: 32px; letter-spacing: -.5px; margin-bottom: 16px; line-height: 1.2; }
.chan p { color: var(--slate); font-size: 16px; margin-bottom: 16px; }
.chan .visual { min-height: 320px; font-size: 108px; }
.secret {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
  background: rgba(34,211,238,.12); color: #0b6b86; border: 1px dashed var(--cyan-400);
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
}

/* ---------- Calculation callout ---------- */
.calc { background: var(--grad-hero); color: #fff; border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-md); margin: 22px 0; }
.calc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--cyan-300); margin-bottom: 16px; }
.calc .row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 15px; color: rgba(255,255,255,.9); }
.calc .row:last-of-type { border-bottom: none; }
.calc .row b { font-size: 17px; color: #fff; white-space: nowrap; }
.calc .result { margin-top: 16px; font-size: 22px; font-weight: 700; line-height: 1.35; }
.calc .result span { color: var(--cyan-300); }

/* ---------- Trusted / results ---------- */
.trusted { text-align: center; }
.trusted .label { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 24px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.logo-chip { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 28px; font-weight: 700; font-size: 16px; color: var(--ink); box-shadow: var(--shadow-sm); }
.roi-hero { font-size: 60px; font-weight: 800; letter-spacing: -1.5px; }
.roi-hero .grad { background: linear-gradient(90deg,#3a49e6,#22b8f0); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* placeholder / coming-soon channel */
.chan.tbd { opacity: .96; }
.tbd-tag { display:inline-block; background: var(--bg-soft); border:1px solid var(--line); color: var(--muted); font-size:12px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-left:10px; vertical-align:middle; }

@media (max-width: 720px) {
  .chan .visual { min-height: 220px; font-size: 76px; }
  .calc .row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .roi-hero { font-size: 44px; }
}

/* ---------- Client logo carousel (marquee) ---------- */
.logo-strip { padding: 30px 0 6px; }
.logo-strip .strip-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 20px; width: max-content; animation: scrollX 32s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-slide {
  flex: none; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 30px; font-weight: 700; font-size: 16.5px; color: var(--ink);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.logo-slide .rk { color: #5cb646; font-size: 18px; }
.logo-slide.placeholder { color: var(--muted); border-style: dashed; background: transparent; box-shadow: none; font-weight: 600; }
.logo-slide { padding: 20px 34px; }
.logo-slide img { height: 68px; width: auto; display: block; }

/* ---------- Process steps ---------- */
.step { position: relative; }
.step .step-n {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-hero); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--slate); font-size: 14.5px; }

/* ---------- Split hero (page hero with side panel) ---------- */
.page-hero.hero-split { text-align: left; padding-top: 150px; padding-bottom: 110px; }
.hero-split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; position: relative; z-index: 2; }
.hero-split-copy .crumb, .hero-split-copy .eyebrow { text-align: left; }
.hero-split-copy h1 { margin-left: 0; margin-right: 0; }
.hero-split-copy p { margin-left: 0; }
@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero.hero-split { text-align: center; }
  .hero-split-copy .crumb, .hero-split-copy .eyebrow { text-align: center; }
}

/* ---------- Average results card ---------- */
.results-card.light { background: #fff; color: var(--ink); }
.results-card.light .rc-sub { color: var(--slate); }
.results-card.light .rc-num { color: #2f9e37; }
.results-card.light .rc-lbl { color: var(--ink); }
.results-card.light .rc-stat { border-bottom-color: var(--line); }

.results-card { background: var(--grad-hero); color: #fff; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-md); }
.results-card h3 { font-size: 23px; margin-bottom: 8px; }
.results-card .rc-sub { color: rgba(255,255,255,.82); font-size: 14.5px; margin-bottom: 24px; }
.rc-stat { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.rc-stat:last-of-type { border-bottom: none; }
.rc-num { font-size: 34px; font-weight: 800; color: var(--cyan-300); min-width: 128px; letter-spacing: -.5px; }
.rc-lbl { font-size: 15.5px; color: rgba(255,255,255,.92); }
.results-card .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ---------- Marketing calculator modal ---------- */
.calc-modal { position: fixed; inset: 0; background: rgba(10,18,45,.62); backdrop-filter: blur(4px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.calc-modal.open { display: flex; }
.calc-box { background: #fff; border-radius: 20px; max-width: 470px; width: 100%; padding: 36px; box-shadow: var(--shadow-md); position: relative; animation: popIn .25s ease; }
@keyframes popIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.calc-box h3 { font-size: 25px; margin-bottom: 6px; letter-spacing: -.4px; }
.calc-box > p { color: var(--slate); font-size: 15px; margin-bottom: 22px; }
.calc-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 28px; color: var(--muted); cursor: pointer; line-height: 1; }
.calc-close:hover { color: var(--ink); }
.calc-box label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.calc-input { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; background: #fbfcff; margin-bottom: 22px; transition: border .2s, box-shadow .2s; }
.calc-input:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(63,111,255,.14); }
.calc-input span { font-size: 18px; color: var(--muted); font-weight: 600; }
.calc-input input { flex: 1; border: none; background: none; padding: 14px 8px; font-size: 18px; font-family: var(--font); color: var(--ink); outline: none; }
.calc-out { background: var(--bg-soft); border-radius: 14px; padding: 4px 18px; margin-bottom: 16px; }
.co-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--slate); }
.co-row:last-child { border-bottom: none; }
.co-row b { font-size: 18px; color: var(--ink); white-space: nowrap; }
.co-row.big { padding-top: 15px; }
.co-row.big b { font-size: 25px; color: #2f9e37; }
.calc-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }
.calc-box .btn { width: 100%; justify-content: center; }
.calc-box label { margin-top: 4px; }
.calc-result { text-align: center; background: var(--grad-hero); color: #fff; border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.calc-result .roas { font-size: 46px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.calc-result .roas-line { font-size: 14px; color: rgba(255,255,255,.9); margin-top: 10px; }
.calc-result .roi-pct { font-size: 13px; color: var(--cyan-300); margin-top: 8px; font-weight: 600; }
.calc-q { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 16px; line-height: 1.4; }
.calc-q-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-q-btns button { padding: 14px; border-radius: 12px; font-family: var(--font); font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: .2s; }
.calc-q-btns button:hover { border-color: var(--blue-500); background: var(--bg-soft); }
.calc-verdict { font-size: 23px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 10px; }
.calc-verdict.bad { color: #e0563b; }
.calc-verdict.good { color: #2f9e37; }
#step3body p { color: var(--slate); font-size: 15px; margin-bottom: 20px; }
.calc-back { background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; margin-top: 12px; font-family: var(--font); width: 100%; }
.calc-back:hover { color: var(--ink); }

/* ---------- Services list rows ---------- */
.svc-list { display: grid; gap: 12px; margin: 24px 0 28px; }
.svc-row { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; color: var(--ink); }
.svc-row:hover { border-color: var(--blue-500); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.svc-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 21px; background: linear-gradient(135deg, rgba(58,73,230,.12), rgba(34,184,240,.12)); flex: none; }
.svc-row b { display: block; font-size: 16px; }
.svc-row .sub { font-size: 13.5px; color: var(--muted); }
.svc-row .arr { margin-left: auto; color: var(--blue-500); font-weight: 700; font-size: 18px; }

/* ---------- ROI dashboard mock ---------- */
.dash { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); overflow: hidden; }
.dash-top { background: var(--grad-hero); color: #fff; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
.dash-top b { font-size: 14.5px; }
.dash-top .dot3 { display: flex; gap: 6px; }
.dash-top .dot3 span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); }
.dash-body { padding: 16px; }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.dcard { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.dcard-h { font-size: 10.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.dcard-big { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.5px; margin: 4px 0 8px; }
.dcard-rows { display: grid; gap: 4px; }
.dcard-rows span { display: flex; align-items: center; font-size: 11px; color: var(--slate); }
.dcard-rows b { margin-left: auto; color: var(--ink); }
.dcard-rows i { width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; flex: none; }
.dcard-rows i.g { background: #2f9e37; } .dcard-rows i.b { background: #3a49e6; } .dcard-rows i.r { background: #ef5a5a; }
.dash-charts { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; }
.dpanel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.dpanel-h { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.funnel { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.frow { width: var(--w); min-width: 92px; background: var(--c); color: #fff; border-radius: 6px; padding: 6px 12px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 600; }
.frow b { font-weight: 800; }
.donut { width: 118px; height: 118px; display: block; margin: 0 auto 10px; }
.dlegend { display: grid; gap: 5px; }
.dlegend span { display: flex; align-items: center; font-size: 10.5px; color: var(--slate); }
.dlegend i { width: 8px; height: 8px; border-radius: 2px; margin-right: 7px; flex: none; }
@media (max-width: 520px) { .dash-cards { grid-template-columns: 1fr 1fr; } .dash-charts { grid-template-columns: 1fr; } }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split .visual { min-height: 280px; order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 24px; gap: 6px;
    box-shadow: var(--shadow-md); border-radius: 0 0 16px 16px;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a { color: var(--ink); width: 100%; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 8px 14px; min-width: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .section-head h2, .split h2, .cta-final h2, .page-hero h1 { font-size: 30px; }
  .hero-stats { gap: 24px; }
  .section { padding: 66px 0; }
}

.grid > p, .split > p:empty, .footer-grid > p:empty { display:none !important; }

/* LL-FIX-2 */
p:empty{display:none !important;}
.grid>p,.logo-track>p,.svc-list>p,.nav>p,.nav-links>p,.footer-grid>p,.footer-col>p,.dash-cards>p,.dlegend>p,.funnel>p,.calc-box>p:empty,.calc-q-btns>p,.hero-split-grid>p,.split>p:empty,.results-card>p:empty{display:none !important;}
.nav-links>li>a{white-space:nowrap;}
.nav-phone{white-space:nowrap;}
.nav-cta .btn{white-space:nowrap;}
