/* ============================================
   IndivMedia: Linear-inspired dark system
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #08090a;
  --bg-elev: #0e0f11;
  --bg-card: #111214;
  --bg-alt: #0c0d0f;
  --fg: #f7f8f8;
  --fg-soft: #b4b8bf;
  --fg-mute: #8a8f98;
  --fg-dim: #62666d;
  --line: #23252b;
  --line-soft: #1a1c20;
  --line-strong: #2e3138;
  --accent: #008cfe;
  --accent-2: #3aa8ff;
  --accent-soft: rgba(0, 140, 254, 0.14);
  --accent-glow: rgba(0, 140, 254, 0.28);
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* NAV: floating pill */
.nav-wrap {
  position: fixed;
  top: 20px; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav-pill {
  pointer-events: auto;
  display: inline-flex; align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 22px;
  background: rgba(14,15,17,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 10px 40px -10px rgba(0,0,0,0.55),
    0 6px 28px -10px rgba(0,140,254,0.18);
  max-width: 100%;
}
.nav-pill .logo {
  display: inline-flex; align-items: center;
  height: 18px; flex-shrink: 0;
}
.nav-pill .logo img {
  height: 17px; width: auto; display: block;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}
.nav-pill .logo:hover img { opacity: 1; }
.nav-pill .nav-links {
  display: flex; gap: 20px; align-items: center;
  font-size: 13px; color: var(--fg-mute); font-weight: 500;
  margin-left: 12px;
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
}
.nav-pill .nav-links a { transition: color 0.12s ease; }
.nav-pill .nav-links a:hover { color: var(--fg); }
.nav-pill .nav-links a.active { color: var(--fg); }
.nav-pill .nav-cta {
  padding: 5px 12px; font-size: 11.5px;
  border-radius: 999px;
  margin-left: 4px;
  font-weight: 500;
  white-space: nowrap;
}
/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 4px 6px;
  color: var(--fg-mute);
  flex-shrink: 0;
}
.nav-hamburger svg { display: block; }
.nav-hamburger:hover { color: var(--fg); }

/* MOBILE-ONLY Results link in nav pill */
.nav-results-mobile {
  display: none;
  font-size: 13px; color: var(--fg-mute); font-weight: 500;
  white-space: nowrap; flex-shrink: 0;
  transition: color 0.12s;
}
.nav-results-mobile.active { color: var(--fg); }
.nav-results-mobile:hover { color: var(--fg); }

/* MOBILE DROPDOWN MENU */
.nav-dropdown {
  display: none;
  position: fixed;
  top: 70px; left: 10px; right: 10px;
  background: rgba(14,15,17,0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  z-index: 49;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.7);
}
.nav-dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--fg-mute);
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover, .nav-dropdown a.active { background: var(--bg-elev); color: var(--fg); }
.nav-dropdown.open { display: block; }
.logo-mobile-top { display: none; }
.cta-short { display: none; }
html:has(*:fullscreen) .nav-wrap,
html:has(*:fullscreen) .logo-mobile-top,
html:has(*:-webkit-full-screen) .nav-wrap,
html:has(*:-webkit-full-screen) .logo-mobile-top { display: none !important; }
@media (min-width: 721px) {
  .nav-pill .logo { display: inline-flex !important; }
}

@media (max-width: 720px) {
  .logo-mobile-top {
    display: block;
    text-align: center;
    padding: 16px 0 10px;
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.06em;
    font-weight: 400;
    pointer-events: auto;
    position: relative;
    z-index: 10;
  }
  .logo-mobile-top strong { font-weight: 800; }
  .nav-wrap {
    position: fixed;
    top: 52px;
    transition: top 0.2s ease;
    left: 0; right: 0;
    padding: 0 16px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 50;
    background: none;
  }
  .nav-pill {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: auto;
    padding: 5px 8px 5px 16px;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
    background: rgba(14,15,17,0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-pill .logo { display: none !important; }
  .nav-results-mobile { display: none !important; }
  .nav-pill .nav-links { display: flex; gap: 6px; border-left: none; padding-left: 0; margin-left: 0; }
  .nav-pill .nav-links a { font-size: 14px; }
  .nav-pill .nav-cta { padding: 4px 16px; font-size: 14px; white-space: nowrap; flex-shrink: 0; }
  .nav-hamburger { display: none; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .hero { margin-top: -50px; padding-top: 140px; }
  .results-hero { margin-top: -50px; padding-top: 140px; }
  .w-hero { margin-top: -50px; padding-top: 140px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  background: var(--fg); color: var(--bg);
  padding: 8px 14px; border-radius: 6px;
  font-weight: 500; font-size: 13px; letter-spacing: -0.003em;
  transition: all 0.15s ease;
  border: 1px solid var(--fg);
}
.btn:hover { background: var(--fg-soft); border-color: var(--fg-soft); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--line-strong); }
.btn-lg { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.btn-primary {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0,140,254,0.4), 0 6px 20px -6px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn-cta {
  position: relative;
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  letter-spacing: -0.005em;
  box-shadow:
    0 0 0 1px rgba(0,140,254,0.5),
    0 0 40px -8px var(--accent-glow),
    0 12px 32px -8px rgba(0,140,254,0.55),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-cta:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0,140,254,0.65),
    0 0 60px -6px var(--accent-glow),
    0 18px 40px -8px rgba(0,140,254,0.7),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-cta:hover::before { transform: translateX(100%); }
.btn-cta .btn-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.18s ease;
}
.btn-cta:hover .btn-arrow { transform: translateX(4px); }

/* TYPE */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--fg);
  letter-spacing: -0.022em;
  font-weight: 600;
}
.display {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.display .dim { color: var(--fg-mute); font-weight: 500; }
.display .accent-t { color: var(--accent-2); }
h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg);
  max-width: 760px;
}
h2 .dim { color: var(--fg-mute); font-weight: 500; }
h2 .accent-t { color: var(--accent-2); }
h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--fg);
}
.lead {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--fg-soft); max-width: 620px; line-height: 1.6;
  font-weight: 400;
}

/* SECTION */
section { padding: 96px 0; border-top: 1px solid var(--line-soft); }
section:first-of-type { border-top: none; }
.section-alt { background: var(--bg-alt); }
.section-head {
  margin-bottom: 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.section-head h2 { margin: 0 auto; max-width: 920px; }
.section-head .lead { margin: 20px auto 0; max-width: 880px; }
.section-label {
  display: inline-block;
  font-size: 14.5px; color: var(--fg-mute);
  font-weight: 500; letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.section-label::before {
  content: ""; display: inline-block;
  width: 15px; height: 15px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-6 -6 112 112'><path d='M 10 10 L 40 10 C 40 -4 60 -4 60 10 L 90 10 L 90 40 C 104 40 104 60 90 60 L 90 90 L 60 90 C 60 76 40 76 40 90 L 10 90 Z' fill='%23008cfe'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: 140px 0 88px;
  text-align: center;
  border-top: none;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(0,140,254,0.10) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-bg-piece {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-piece.tr {
  top: 130px; right: -70px;
  width: 240px; height: 240px;
  transform: rotate(-18deg);
}
.hero-bg-piece.bl {
  bottom: 110px; left: -60px;
  width: 180px; height: 180px;
  transform: rotate(26deg);
}
@media (max-width: 1100px) { .hero-bg-piece.tr { width: 180px; height: 180px; right: -50px; } }
@media (max-width: 860px) { .hero-bg-piece { display: none; } }
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero .display { max-width: 900px; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-cta { justify-content: center; }
.hero-video {
  margin: 56px auto 0;
  width: 100%; max-width: 960px;
}
.hero-video .video-frame {
  max-width: 100%;
  margin: 0;
  box-shadow:
    0 0 0 1px var(--accent-soft),
    0 20px 80px -20px var(--accent-glow),
    0 40px 120px -40px rgba(0,140,254,0.18);
  border-color: rgba(0,140,254,0.22);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--fg-mute);
  margin-bottom: 22px;
  font-weight: 500;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(0,140,254,0.25);
  border-radius: 999px;
  background: rgba(0,140,254,0.05);
}
.hero-eyebrow a { color: var(--fg); }
.hero-eyebrow a:hover { color: var(--accent-2); }
.hero-eyebrow .arrow { color: var(--fg-dim); }
.hero-eyebrow .eyebrow-piece {
  width: 16px; height: 16px;
  display: block; flex-shrink: 0;
  transform: rotate(-12deg);
  overflow: visible;
}
.hero-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--fg-soft); max-width: 560px;
  line-height: 1.55; margin: 24px 0 36px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* HERO CERT BADGE */
.hero-cert {
  display: inline-flex; align-items: center; gap: 24px;
  margin: 28px auto 28px;
  padding: 20px 30px;
  border: 1px solid rgba(0,140,254,0.35);
  background: rgba(0,140,254,0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  text-align: left;
}
.hero-cert:hover {
  border-color: rgba(0,140,254,0.75);
  background: rgba(0,140,254,0.1);
  transform: translateY(-2px);
}
.hero-cert img { height: 66px; width: auto; display: block; flex-shrink: 0; }
.hero-cert-text {
  font-size: 17px; color: var(--fg-soft); font-weight: 400;
  line-height: 1.35; letter-spacing: -0.005em;
}
.hero-cert-text strong { color: var(--fg); font-weight: 600; }
.hero-cert-text small {
  display: block; font-size: 14px; color: var(--fg-mute); font-weight: 400; margin-top: 4px;
}
.hero-cert .cert-img-mobile { display: none; }
@media (max-width: 640px) {
  .hero-cert {
    background: none; border: none; box-shadow: none;
    padding: 0; gap: 0; margin-top: 36px; margin-bottom: 4px;
    border-radius: 0;
  }
  .hero-cert:hover { transform: none; background: none; }
  .hero-cert-text { display: none; }
  .hero-cert img { height: 68px; width: auto; }
}

/* SECTION CTA */
.section-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* VIDEO BLOCK */
.video-wrap { padding: 0 0 96px; }
.video-frame {
  max-width: 960px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
}
.video-inner {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.video-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 50%, rgba(91,141,239,0.18) 0%, transparent 60%),
    #0a0b0d;
  transition: opacity 0.15s;
}
.video-poster:hover { opacity: 0.9; }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s;
}
.video-poster:hover .play-btn { transform: scale(1.04); }

/* MARQUEE */
.marquee {
  padding: 56px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(13,15,22,0.3), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee-intro {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  margin-bottom: 28px;
}
.marquee-intro a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.marquee-intro a:hover { color: var(--fg); border-bottom-color: var(--fg); }
.nowrap { white-space: nowrap; }

/* JIGSAW ILLUSTRATION — single interlocking puzzle */
#problem { padding-top: 56px; padding-bottom: 40px; }
#problem .section-head { margin-bottom: 0; }
#problem .section-head .lead { margin-bottom: 0; margin-top: 16px; }
#before-after { padding-top: 72px; }
#before-after .section-head { margin-bottom: 40px; }
.jigsaw-illustration {
  margin: -8px auto 0;
  max-width: 1140px;
  padding: 0 8px;
}
.jigsaw-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}
.jp-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  fill: rgba(255,255,255,0.7);
  letter-spacing: -0.005em;
  pointer-events: none;
}
.jp-label.accent { fill: var(--fg); font-weight: 600; }
.jp-label.floating { font-size: 16px; font-weight: 600; }
.jp-missing-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  fill: rgba(0,140,254,0.75);
  letter-spacing: -0.005em;
  pointer-events: none;
}
.jp-missing-sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  fill: rgba(0,140,254,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.jigsaw-caption {
  text-align: center;
  color: var(--fg-soft);
  font-size: 16px;
  margin-top: -16px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.008em;
}
.jigsaw-mobile { display: none; }
br.br-mobile-only { display: none; }
.nav-mobile-bar { display: none; }
br.br-desktop-only { display: block; }
@media (max-width: 720px) {
  .jigsaw-illustration { padding: 0 12px; margin-top: 44px; }
  .jigsaw-caption { font-size: 14px; margin-top: 4px; }
}

/* HOMEPAGE VIDEO STRIP */
.video-grid-home {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
@media (max-width: 820px) {
  .video-grid-home { grid-template-columns: 1fr; }
}

/* FOOTER CERT */
.foot-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-cert {
  display: inline-flex; align-items: center;
  padding: 4px 8px;
  background: #fff; border-radius: 6px;
  border: 1px solid var(--line-soft);
  transition: transform 0.15s, box-shadow 0.15s;
}
.foot-cert img { height: 20px; width: auto; display: block; }
.foot-cert:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,140,254,0.15); }
.marquee-track {
  display: inline-flex; gap: 56px; align-items: center;
  animation: scroll 70s linear infinite;
  white-space: nowrap;
}
.marquee-track .client {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.marquee-track .client img {
  height: 100%; width: auto; display: block;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter 0.25s ease;
}
.marquee-track .client:hover img { filter: brightness(0) invert(1) opacity(0.95); }
.marquee-track .client.xs img { height: 22px; }
.marquee-track .client.sm img { height: 26px; }
.marquee-track .client.lg img { height: 38px; }
.marquee-track .client.xl img { height: 46px; }
/* Text fallback for clients without a clean fetchable logo */
.marquee-track .client.text {
  font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marquee-track .client.text:hover { color: rgba(255,255,255,0.95); }
.marquee-track .client.text.caps {
  text-transform: uppercase; font-weight: 600; letter-spacing: 0.14em; font-size: 17px;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track-row2 { display: none; }

/* FEATURE GRID (problem/etc) */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 48px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.feature-col {
  background: var(--bg);
  padding: 32px;
}
.feature-col h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 18px;
  color: var(--fg-mute);
  letter-spacing: 0;
}
.feature-col.good h3 { color: var(--fg); }
.feature-col ul { list-style: none; }
.feature-col li {
  padding: 10px 0;
  color: var(--fg-soft); font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.feature-col li::before {
  content: "·"; color: var(--fg-dim); flex-shrink: 0;
}
.feature-col.good li::before { content: "→"; color: var(--accent-2); }
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* OFFER CARD */
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  max-width: 900px; margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.offer-card .offer-piece {
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
}
.offer-card .offer-piece.tr {
  top: -90px; right: -90px;
  width: 220px; height: 220px;
  transform: rotate(18deg);
}
@media (max-width: 720px) {
  .offer-card .offer-piece.tr { width: 150px; height: 150px; top: -60px; right: -60px; }
}
.offer-tag {
  display: inline-block;
  font-size: 12px; color: var(--accent-2);
  font-weight: 500; margin-bottom: 16px;
}
.offer-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--fg);
}
.offer-card .desc {
  font-size: 15px; color: var(--fg-soft); line-height: 1.6;
  margin-bottom: 32px; max-width: 640px;
}
.offer-price {
  display: flex; align-items: baseline; gap: 12px;
  padding: 20px 0; margin-bottom: 32px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.offer-price .amt {
  font-size: 36px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--fg);
}
.offer-price .unit { color: var(--fg-mute); font-size: 13px; }
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
.incl-item {
  display: flex; gap: 10px; align-items: flex-start;
}
.incl-item .tick {
  width: 18px; height: 18px; border-radius: 0;
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.incl-item span { display: block; font-weight: 500; color: var(--fg); font-size: 14px; }
.incl-item small { color: var(--fg-mute); font-size: 13px; font-weight: 400; display: block; margin-top: 2px; }
@media (max-width: 760px) {
  .offer-card { padding: 28px 22px; }
  .incl { grid-template-columns: 1fr; }
}

/* PROCESS STEPS */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 28px;
  position: relative;
}
.step-piece {
  position: absolute;
  top: 16px; right: 16px;
  width: 52px; height: 52px;
  pointer-events: none;
  opacity: 0.85;
}
.step:nth-child(1) .step-piece { transform: rotate(18deg); }
.step:nth-child(2) .step-piece { transform: rotate(-14deg); }
.step:nth-child(3) .step-piece { transform: rotate(24deg); }
.step-num {
  font-family: var(--mono);
  font-size: 12px; color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 16px;
}
.step-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.step-desc { font-size: 13.5px; color: var(--fg-soft); line-height: 1.55; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* STATS (section) */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.stat-block {
  background: var(--bg);
  padding: 32px;
}
.stat-block .big {
  font-size: 36px;
  font-weight: 600; letter-spacing: -0.03em;
  color: var(--fg); line-height: 1;
  margin-bottom: 10px;
}
.stat-block .big .plus { color: var(--accent-2); }
.stat-block .cap { font-size: 13.5px; color: var(--fg-soft); line-height: 1.5; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* QUOTES */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.quote-cell {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, rgba(0,140,254,0.6) 0%, rgba(0,140,254,0.08) 45%, transparent 100%) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 0 50px rgba(0,140,254,0.07), 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
}
.quote-cell::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 55%; height: 45%;
  background: radial-gradient(ellipse at top left, rgba(0,140,254,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.quote-cell .q-stat {
  display: inline-flex; align-items: center;
  background: rgba(0,140,254,0.13);
  border: 1px solid rgba(0,140,254,0.28);
  color: var(--accent-2);
  font-size: 12px; font-weight: 700;
  padding: 5px 13px;
  border-radius: 99px;
  letter-spacing: 0.01em;
  width: fit-content;
  margin-bottom: 18px;
}
.quote-cell .q {
  font-size: 15px; line-height: 1.72;
  color: var(--fg);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.quote-cell .q-footer {
  display: flex; align-items: center; gap: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.quote-cell .q-logo {
  height: 28px; width: auto; max-width: 84px;
  object-fit: contain; object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}
.quote-cell .cite-name { font-size: 12.5px; font-weight: 600; color: var(--fg-soft); }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-q {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500; font-size: 15px;
  color: var(--fg);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q .plus {
  color: var(--fg-mute);
  font-size: 18px; flex-shrink: 0; font-weight: 300;
  transition: transform 0.15s;
}
.faq-q .plus::before { content: "+"; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--accent-2); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--fg-soft); font-size: 14.5px; line-height: 1.6;
  transition: max-height 0.2s ease, padding 0.2s ease;
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 0 22px; }

/* FINAL */
.final {
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,140,254,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,140,254,0.06), transparent 60%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.final-inner {
  display: flex; flex-direction: column; align-items: center;
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 1;
}
.final .section-label { margin-bottom: 18px; }
.final h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 0 0 20px;
}
.final .lead { margin: 0 auto 36px; max-width: 600px; font-size: clamp(15px, 1.05vw, 17px); }
.final-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-cta .btn { padding: 14px 28px; font-size: 14.5px; }
.final-trust {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 36px;
  font-size: 12.5px; color: var(--fg-mute);
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  width: 100%; max-width: 720px;
}
.final-trust .t-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.final-trust .t-item strong { color: var(--fg); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.final-bg-piece {
  position: absolute; pointer-events: none; z-index: 0;
}
.final-bg-piece.p1 {
  top: 40px; left: 6%;
  width: 150px; height: 150px;
  transform: rotate(-20deg);
}
.final-bg-piece.p2 {
  top: 140px; right: 7%;
  width: 110px; height: 110px;
  transform: rotate(22deg);
}
.final-bg-piece.p3 {
  bottom: 50px; right: 14%;
  width: 90px; height: 90px;
  transform: rotate(-14deg);
}
@media (max-width: 860px) { .final-bg-piece { display: none; } }
@media (max-width: 760px) { .final { padding: 80px 0; } }

/* FOOTER */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px 0 32px;
}
.foot {
  display: flex; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-mute);
}
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--fg); }

/* RESULTS PAGE */
.results-hero {
  padding: 100px 0 10px;
  text-align: center;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(0,140,254,0.10) 0%, transparent 60%);
}
.results-hero .container { display: flex; flex-direction: column; align-items: center; }
.results-hero h1 {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.12;
  margin-top: 8px; max-width: 900px;
}
.results-hero h1 .dim { color: var(--fg-mute); font-weight: 500; }
.results-hero .lead { margin: 24px auto 0; max-width: 640px; }
.results-strip {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; width: 100%; max-width: 960px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.results-strip .stat {
  background: var(--bg);
  padding: 24px;
}
.results-strip .stat .big {
  font-size: 26px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--fg); line-height: 1; margin-bottom: 8px;
}
.results-strip .stat .big .plus { color: var(--accent-2); }
.results-strip .stat .cap { font-size: 12.5px; color: var(--fg-mute); }
@media (max-width: 760px) { .results-strip { grid-template-columns: repeat(2, 1fr); } }

.client-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.client-card {
  background: var(--bg);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: background 0.12s;
}
.client-card:hover { background: var(--bg-elev); }
.client-card .head {
  font-size: 12px; color: var(--accent-2); font-weight: 500;
  margin-bottom: 12px;
}
.client-card .big-num {
  font-size: 28px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--fg); line-height: 1; margin-bottom: 12px;
}
.client-card .big-num .plus { color: var(--fg-mute); font-weight: 500; }
.client-card .desc {
  font-size: 13.5px; color: var(--fg-soft); line-height: 1.55;
  flex: 1; margin-bottom: 16px;
}
.client-card .brand {
  padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--fg); font-weight: 500;
}
.client-card .brand small {
  display: block; color: var(--fg-mute); font-size: 12px; font-weight: 400; margin-top: 2px;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .client-grid { grid-template-columns: 1fr; } }

.quote-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 720px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 34px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.quote-card .q-logo {
  height: 26px; width: auto;
  object-fit: contain; object-position: left center;
  opacity: 0.7; filter: brightness(0) invert(1);
}
.quote-card .q {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6; color: var(--fg-soft); flex: 1;
}
.quote-card .cite {
  font-size: 12.5px; color: var(--fg-mute);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px; margin-top: auto;
}
.quote-card .cite strong { color: var(--fg); font-weight: 600; }

/* VIDEOS PAGE */
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s;
  display: flex; flex-direction: column;
}
.video-card:hover { border-color: var(--line-strong); }
.video-thumb {
  aspect-ratio: 16/9; background: var(--bg);
  position: relative; overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.video-card:hover .video-thumb img { opacity: 1; }
.video-thumb .play {
  position: absolute; inset: 0; margin: auto;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s;
}
.video-card:hover .video-thumb .play { opacity: 1; }
.video-meta { padding: 16px 18px; }
.video-meta .date {
  font-size: 12px; color: var(--fg-mute); font-weight: 500;
  margin-bottom: 6px;
}
.video-meta .title {
  font-size: 14px; font-weight: 500; line-height: 1.4;
  color: var(--fg);
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

/* ARTICLES PAGE */
.article-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.article-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  transition: background 0.12s;
}
.article-row:hover { background: var(--bg-elev); }
.article-row .date {
  font-size: 13px; color: var(--fg-mute); font-weight: 500;
}
.article-row .title {
  font-size: 15px; font-weight: 500; color: var(--fg);
}
.article-row .arrow { color: var(--fg-mute); font-size: 16px; transition: color 0.12s, transform 0.12s; }
.article-row:hover .arrow { color: var(--accent-2); transform: translateX(3px); }
@media (max-width: 640px) {
  .article-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 4px; }
  .article-row .arrow { display: none; }
}

/* ARTICLE BODY */
.article-body {
  max-width: 720px; margin: 0 auto; padding: 140px 28px 96px;
  font-size: 16px; line-height: 1.7; color: var(--fg-soft);
}
.article-body .back {
  color: var(--fg-mute); font-size: 13px; margin-bottom: 32px;
  display: inline-block; font-weight: 500;
}
.article-body .back:hover { color: var(--fg); }
.article-body h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 16px; color: var(--fg);
}
.article-body .date {
  font-size: 13px; color: var(--fg-mute); margin-bottom: 32px; font-weight: 500;
}
.article-body p { margin-bottom: 20px; color: var(--fg-soft); }
.article-body h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  margin: 40px 0 14px; line-height: 1.25; color: var(--fg);
}
.article-body ul { margin: 0 0 22px 20px; }
.article-body ul li { margin-bottom: 8px; }
.article-body .video-embed {
  margin: 32px 0;
  aspect-ratio: 16/9;
  border-radius: 10px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.article-body .video-embed iframe { width: 100%; height: 100%; border: 0; }
.article-body .cta-block {
  margin: 40px 0;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.article-body .cta-block h3 { font-size: 17px; margin-bottom: 8px; color: var(--fg); }
.article-body .cta-block p { color: var(--fg-soft); margin-bottom: 16px; font-size: 14px; }

/* WATCH PAGE */
.watch-hero { padding: 140px 0 48px; text-align: center; }
.watch-hero .container { display: flex; flex-direction: column; align-items: center; }
.watch-hero h1 {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
  margin-top: 8px; max-width: 880px;
}
.watch-hero h1 .dim { color: var(--fg-mute); font-weight: 500; }
.watch-hero .lead { margin: 24px auto 0; max-width: 680px; }
.watch-step { max-width: 1000px; margin: 0 auto; }
.step-label {
  display: inline-block;
  font-size: 12px; color: var(--fg-mute); font-weight: 500;
  margin-bottom: 16px;
}
.step-label .num { color: var(--accent-2); font-family: var(--mono); font-weight: 500; margin-right: 6px; }

.faq-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.faq-video {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden; cursor: pointer;
  transition: border-color 0.15s;
}
.faq-video:hover { border-color: var(--line-strong); }
.faq-video .poster {
  aspect-ratio: 16/9;
  background: radial-gradient(circle at 50% 50%, rgba(91,141,239,0.15) 0%, #0a0b0d 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-video .poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.faq-video .poster .play-btn { width: 44px; height: 44px; }
.faq-video .label { padding: 14px 16px; font-size: 13.5px; font-weight: 500; color: var(--fg); line-height: 1.4; }
@media (max-width: 900px) { .faq-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .faq-video-grid { grid-template-columns: 1fr; } }

.checklist {
  max-width: 700px; margin: 32px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}
.checklist h3 { margin-bottom: 16px; color: var(--fg); }
.checklist ul { list-style: none; }
.checklist li {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--fg-soft); font-size: 14px;
}
.checklist li:first-child { border-top: none; padding-top: 0; }
.checklist li::before {
  content: "→"; color: var(--accent-2); flex-shrink: 0;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 18px; }
  .container-narrow { padding: 0 18px; }

  /* Hero */
  .hero { padding: 140px 0 60px; }
  .hero-sub { font-size: 15px; margin: 18px 0 28px; }
  .hero-cta { gap: 8px; }
  .hero-video { margin-top: 36px; }
  .hero-cert .cert-img-desktop { display: none; }
  .hero-cert .cert-img-mobile { display: block; height: 78px; width: auto; flex-shrink: 0; }
  .cert-prefix { display: none; }

  /* Sections */
  section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }

  /* Before/after grid */
  .feature-col { padding: 22px 18px; }

  /* Offer card */
  .offer-card { padding: 24px 18px; }
  .incl { grid-template-columns: 1fr; gap: 14px; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; }
  .step { padding: 22px 18px; }

  /* Quotes */
  .quotes { grid-template-columns: 1fr; gap: 12px; }
  .quote-cell { padding: 22px 18px 18px; }

  /* FAQ */
  .faq-list { margin-top: 32px; }
  .faq-item.open .faq-a { max-height: 400px; }

  /* Offer tag — prevent wrap */
  .offer-tag { font-size: 10.5px; }
  .offer-card .offer-piece.tr { display: none; }

  /* H2 in section heads */
  .section-head h2 { font-size: clamp(22px, 6vw, 32px); }
  /* Hide manual line breaks on mobile — let text wrap naturally */
  h1 br, h2 br, .hero-sub br { display: none; }
  br.br-desktop-only { display: none; }
  /* Mobile-only breaks */
  br.br-mobile-only { display: block; }

  /* Page hero spacing — reduce on mobile */
  .results-hero { padding: 140px 0 8px; }
  .w-hero { padding: 140px 0 20px; }
  .w-main { padding: 12px 0 56px; }

  /* Final CTA */
  .final { padding: 64px 0 72px; }
  .final h2 { font-size: clamp(28px, 7vw, 40px); }
  .final-trust { gap: 14px 18px; flex-wrap: nowrap; font-size: 11px; }
  .final-trust .t-item strong { font-size: 14px; }
  .final-cta .btn { padding: 13px 22px; font-size: 14px; }

  /* Jigsaw — hide desktop, show mobile version */
  .jigsaw-illustration { display: none; }
  .jp-float-piece { display: none; }
  .jigsaw-mobile { display: block; margin-top: 44px; }
  .jigsaw-mobile svg { width: 100%; height: auto; }

  /* Ticker — faster + 2 rows on mobile */
  .marquee { padding: 32px 0; display: flex; flex-direction: column; gap: 22px; }
  .marquee-track { animation-duration: 14s; }
  .marquee-track-row2 { display: inline-flex; animation-duration: 11s; }

  /* Article body */
  .article-body { padding: 110px 18px 64px; font-size: 15px; }

  /* Results stack */
  .results-strip { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  /* Footer */
  .foot { flex-direction: column; gap: 14px; }
  .foot-links { gap: 14px; flex-wrap: wrap; }
}
