  :root {
    --bg: #ffffff;
    --bg-2: #f5f7fb;            /* alt section bg */
    --surface: #ffffff;
    --surface-2: #f5f7fb;
    --border: rgba(15,20,30,.08);
    --border-strong: rgba(15,20,30,.14);
    --text: #0b1320;
    --muted: #4a5568;
    --muted-2: #6b7280;
    --accent: #044CAC;          /* Decipher brand blue */
    --accent-2: #1f6dd1;
    --accent-glow: rgba(4,76,172,.22);
    --solar: #1f6dd1;           /* secondary blue accent (gold removed) */
    --solar-glow: rgba(4,76,172,.20);
    --good: #00b67a;
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1200px;
  }

  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

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

  /* ---------- Brand wordmark (swap for a logo image when ready) ---------- */
  .wordmark { display: inline-flex; align-items: center; gap: 10px; }
  .wordmark .mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    position: relative; flex: 0 0 34px;
    box-shadow: 0 6px 20px -6px var(--accent-glow);
  }
  .wordmark .mark::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 9px;
    background: radial-gradient(circle at 70% 30%, var(--solar), transparent 55%);
    opacity: .9;
  }
  .wordmark .name { font-weight: 800; font-size: 21px; letter-spacing: -0.03em; color: var(--text); }
  .wordmark .name .sub { color: var(--accent); }
  footer .wordmark .name, .final .wordmark .name { color: var(--text); }
  .wordmark img { height: 64px; width: auto; display: block; }
  footer .wordmark img { height: 104px; }

  /* ---------- Top Nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 11px 18px; border-radius: 999px;
    font-weight: 600; font-size: 14px; letter-spacing: .01em;
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 30px -8px var(--accent-glow);
  }
  .nav-cta:hover { transform: translateY(-1px); background: var(--accent-2); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 18px 30px; border-radius: 999px;
    font-weight: 700; font-size: 16px; letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 14px 50px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.18);
  }
  .btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid var(--border-strong);
  }
  .btn-ghost:hover { border-color: var(--text); }

  /* ---------- Generic section ---------- */
  section { padding: 110px 0; position: relative; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 600;
    color: var(--muted);
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15,20,30,.03);
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 16px var(--accent-glow); }
  .eyebrow .dot.dot-x {
    width: 20px; height: 20px; border-radius: 999px;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-size: 11px; font-weight: 800; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 0 12px var(--accent-glow);
  }
  h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
  h1 { font-size: clamp(40px, 5.2vw, 64px); }
  h2 { font-size: clamp(32px, 4.4vw, 56px); }
  h3 { font-size: clamp(22px, 2.2vw, 28px); }
  .display-serif { font-family: 'Playfair Display', serif; font-style: normal; font-weight: 600; letter-spacing: -0.02em; }
  .text-muted { color: var(--muted); }

  /* ---------- Placeholder marker (replace before publishing) ---------- */
  .ph { color: var(--accent-2); font-style: italic; }

  /* ---------- Hero ---------- */
  .hero {
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: -10% -10% auto -10%; height: 80%;
    background:
      radial-gradient(50% 60% at 70% 0%, var(--solar-glow), transparent 55%),
      radial-gradient(60% 60% at 40% 0%, rgba(4,76,172,.08), transparent 60%);
    pointer-events: none; z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; text-align: center; }
  .hero .trustpilot {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 36px;
    padding: 10px 16px; border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15,20,30,.03);
    font-size: 14px; color: var(--muted);
  }
  .stars { color: #00b67a; letter-spacing: 1px; font-size: 14px; }
  .hero h1 {
    margin: 0 auto;
    max-width: 1100px;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero .guaranteed {
    display: inline;
    font-size: inherit;
    line-height: inherit;
    margin-top: 0;
  }
  .hero p.sub {
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 18px);
    max-width: 1040px;
    margin: 28px auto 36px;
  }
  .hero-ctas {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .hero .underline-note {
    font-size: 13px; letter-spacing: .01em; color: var(--muted);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero .underline-note::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--good);
  }

  /* ---------- VSL ---------- */
  .vsl-wrap {
    max-width: 560px;
    margin: 36px auto 26px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: #0b1320;
    box-shadow: 0 12px 40px -12px rgba(15,20,30,.08), 0 0 80px -16px var(--accent-glow);
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex; align-items: center; justify-content: center;
  }
  .vsl-placeholder {
    color: rgba(255,255,255,.7); text-align: center; font-size: 14px; padding: 20px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .vsl-placeholder .play {
    width: 64px; height: 64px; border-radius: 999px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
  }
  .vsl-placeholder .play::after {
    content: ""; width: 0; height: 0; margin-left: 4px;
    border-top: 12px solid transparent; border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
  }
  .vsl-cue {
    text-align: center;
    font-size: 14px; letter-spacing: .01em;
    color: var(--muted); margin: 26px auto -8px;
    max-width: 560px;
  }
  @media (max-width: 720px) {
    .vsl-wrap { max-width: 100%; margin: 26px auto 18px; }
  }

  /* ---------- Logo marquee ---------- */
  .marquee-wrap {
    margin-top: 70px;
    padding: 36px 0 32px;
    background: var(--accent);
    overflow: hidden;
    position: relative;
    border-radius: 0;
  }
  .marquee-label {
    text-align: center;
    font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 22px;
  }
  .marquee {
    display: flex; gap: 24px; align-items: center;
    animation: scroll 38s linear infinite;
    width: max-content;
  }
  .marquee .logo-chip {
    height: 56px; min-width: 150px; padding: 0 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    border: 1px dashed rgba(255,255,255,.35);
    color: rgba(255,255,255,.85);
    font-size: 13px; font-weight: 600; letter-spacing: .04em;
    white-space: nowrap;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee-wrap::before, .marquee-wrap::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
  }
  .marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--accent), transparent); }
  .marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--accent), transparent); }

  /* ---------- Stats ---------- */
  .stats {
    padding: 90px 0 90px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    background: linear-gradient(150deg, #2f72d2 0%, var(--accent) 45%, #022d6b 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    color: #fff;
    box-shadow: 0 24px 60px -24px var(--accent-glow);
  }
  .stat {
    background: transparent;
    padding: 44px 28px;
    text-align: left;
    transition: background .2s ease;
    border-right: 1px solid rgba(255,255,255,.14);
  }
  .stat:last-child { border-right: none; }
  .stat:hover { background: rgba(255,255,255,.06); }
  .stat .label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
  .stat .num {
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1;
    color: #fff;
  }
  .stat .num .accent { color: #fff; }
  .stat .desc { color: rgba(255,255,255,.78); margin-top: 14px; font-size: 15px; line-height: 1.5; }
  @media (max-width: 1024px) {
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); }
    .stat:last-child { border-bottom: none; }
  }

  /* ---------- Problem ---------- */
  .problem .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  .problem h2 { margin-bottom: 24px; }
  .problem h2 .accent { color: var(--accent); }
  .problem p { color: var(--muted); font-size: 18px; margin: 0 0 18px; }
  .problem ul.bad {
    list-style: none; margin: 32px 0 0; padding: 0;
    display: grid; gap: 14px;
  }
  .problem ul.bad li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 1px 2px rgba(15,20,30,.04);
    font-size: 15px; color: var(--text);
  }
  .problem ul.bad li::before {
    content: "✕";
    color: var(--accent); font-weight: 800; font-size: 14px;
    flex: 0 0 22px; height: 22px; width: 22px; border-radius: 999px;
    background: rgba(4,76,172,.1); border: 1px solid rgba(4,76,172,.3);
    display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
  }

  /* ---------- How it works ---------- */
  .how { padding-top: 130px; padding-bottom: 60px; }
  .how-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
  .how-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    counter-reset: step;
  }
  .step {
    counter-increment: step;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px -8px rgba(15,20,30,.06);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    min-height: 280px;
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    right: -8px; bottom: -36px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 200px; line-height: 1;
    letter-spacing: -0.05em;
    color: var(--accent);
    opacity: .08;
    pointer-events: none;
    z-index: 0;
  }
  .step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -14px rgba(4,76,172,.18);
  }
  .step:hover::before { opacity: .14; }
  .step .n,
  .step h3,
  .step p { position: relative; z-index: 1; }
  .step .n {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px;
    background: rgba(4,76,172,.08); border: 1px solid rgba(4,76,172,.18);
    margin-bottom: 22px;
  }
  .step h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); }
  .step p { color: var(--muted); font-size: 15px; margin: 0; }

  /* ---------- Case studies ---------- */
  .cases { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .cases-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
  .cases-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }
  .case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .case {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 24px -8px rgba(15,20,30,.08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .case:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 12px 32px -10px rgba(15,20,30,.12); }
  .case .meta { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
  .case .avatar {
    width: 52px; height: 52px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -0.02em;
  }
  .case .name { font-weight: 700; font-size: 16px; }
  .case .company { color: var(--muted); font-size: 13px; margin-top: 2px; }
  .case .stats-row {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    border-top: 1px dashed var(--border);
    padding-top: 22px;
  }
  .case .stat-mini .v { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
  .case .stat-mini .v .accent { color: var(--accent); }
  .case .stat-mini .k { color: var(--muted); font-size: 12px; letter-spacing: .04em; margin-top: 4px; }

  /* ---------- 3-year spotlight (RenewaGen) ---------- */
  .spotlight {
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text); padding: 40px;
    box-shadow: 0 12px 44px -18px rgba(15,20,30,.14);
    margin-bottom: 20px;
  }
  .spotlight-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
  .spotlight .avatar {
    width: 52px; height: 52px; border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -.02em;
  }
  .spotlight .name { font-weight: 700; font-size: 20px; }
  .spotlight .company { color: var(--muted); font-size: 13px; margin-top: 2px; }
  .spotlight .tag {
    margin-left: auto;
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(4,76,172,.08); border: 1px solid rgba(4,76,172,.25); color: var(--accent);
  }
  .spotlight .pull { font-size: 18px; font-weight: 600; line-height: 1.45; max-width: 780px; margin: 0 0 28px; }
  .spotlight .pull .by { display: block; margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--muted); }
  .growth-bars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    align-items: end; border-bottom: 2px solid var(--border); padding: 0 10px;
  }
  .gcol { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
  .gval { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; color: var(--text); }
  .gval .cap { font-size: 12px; font-weight: 600; opacity: .75; margin-left: 4px; }
  .gbar { width: 100%; max-width: 150px; border-radius: 12px 12px 0 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.25); }
  .gbar.y1 { background: #9cc0f0; }
  .gbar.y2 { background: #2f72d2; }
  .gbar.proj {
    background: repeating-linear-gradient(45deg, rgba(4,76,172,.16), rgba(4,76,172,.16) 8px, rgba(4,76,172,.05) 8px, rgba(4,76,172,.05) 16px);
    border: 2px dashed var(--accent); box-shadow: none;
  }
  .gval.proj { color: var(--accent); }
  /* 2026: forecast behind, YTD actual in front */
  .gstack { position: relative; width: 100%; max-width: 150px; height: 248px; margin: 0 auto; }
  .gstack .gbar { position: absolute; left: 0; right: 0; bottom: 0; margin: 0 auto; max-width: 150px; }
  .gstack .gbar.proj { z-index: 1; }
  .gstack .gbar.front {
    z-index: 2; background: #022d6b; border-radius: 12px 12px 0 0;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    padding-top: 12px;
  }
  .gstack .ytd-val { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
  .gstack .ytd-cap { color: rgba(255,255,255,.75); font-size: 11px; font-weight: 600; }
  .growth-labels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 10px; margin-top: 14px; }
  .glab { text-align: center; }
  .glab .gyr { font-weight: 700; font-size: 15px; color: var(--text); }
  .glab .gleads { font-size: 13px; color: var(--muted); margin-top: 3px; }
  .spotlight .totals { margin: 22px 0 0; font-size: 14px; color: var(--muted); }
  .spotlight .totals strong { color: var(--text); }
  .case.solo { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; align-items: center; }
  .case.solo .stats-row { border-top: none; padding-top: 0; grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 760px) {
    .growth-bars, .growth-labels { gap: 8px; padding: 0; }
    .gval { font-size: 14px; }
    .glab .gyr { font-size: 12px; }
    .glab .gleads { font-size: 11px; }
    .spotlight { padding: 30px 24px; }
    .case.solo { grid-template-columns: 1fr; gap: 18px; }
    .case.solo .stats-row { border-top: 1px dashed var(--border); padding-top: 20px; }
  }

  /* ---------- Testimonials ---------- */
  .test-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
  .test-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }
  .test-grid {
    column-count: 3;
    column-gap: 20px;
  }
  .test-grid .t {
    break-inside: avoid;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 2px 12px -4px rgba(15,20,30,.06);
    margin: 0 0 20px;
  }
  .t .stars-row { color: #00b67a; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
  .t .quote { font-size: 15px; line-height: 1.6; color: var(--text); }
  .t .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
  .t .who .av {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: var(--text);
  }
  .t .who .nm { font-weight: 600; font-size: 14px; }
  .t .who .co { color: var(--muted); font-size: 12px; }

  /* ---------- Founding partners ---------- */
  .founding { background: var(--bg-2); padding-top: 50px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .founding .container { max-width: 1000px; }
  .founding-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
  .founding-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }
  .perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .perk {
    border: 1px solid var(--border); background: var(--surface);
    border-radius: var(--radius-lg); padding: 36px 32px;
    box-shadow: 0 4px 24px -10px rgba(15,20,30,.08);
    position: relative; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .perk:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 18px 44px -18px rgba(4,76,172,.25); }
  .perk .pk-ico {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 24px -8px var(--accent-glow);
  }
  .perk .pk-ico svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
  .perk h3 { font-size: 19px; margin: 0 0 10px; letter-spacing: -0.01em; }
  .perk p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }
  @media (max-width: 860px) { .perks { grid-template-columns: 1fr; } }

  /* ---------- Case study pull-quote ---------- */
  .case .pull { font-size: 17px; font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; margin: 0 0 22px; color: var(--text); }
  .case .pull .accent { color: var(--accent); }

  /* ---------- Stats note ---------- */
  .stats-note { text-align: center; color: var(--muted-2); font-size: 13px; margin: 26px auto 0; max-width: 720px; }

  /* ---------- Guarantee banner ---------- */
  .guarantee {
    padding: 110px 0;
    background:
      radial-gradient(50% 80% at 50% 50%, var(--solar-glow), transparent 65%),
      radial-gradient(60% 80% at 50% 50%, rgba(4,76,172,.08), transparent 70%),
      var(--bg-2);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .guarantee .seal {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid rgba(4,76,172,.3); background: rgba(4,76,172,.08);
    color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .guarantee h2 { max-width: 900px; margin: 0 auto; }
  .guarantee h2 .accent { color: var(--accent); }
  .guarantee p {
    color: var(--muted); max-width: 720px; margin: 22px auto 36px; font-size: 18px;
  }

  /* ---------- FAQ ---------- */
  .faq-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
  .faq-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }
  .faq-wrap { max-width: 880px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .2s ease;
  }
  .faq-item[open] { border-color: var(--border-strong); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 17px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .ico {
    width: 28px; height: 28px; border-radius: 999px;
    border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted); transition: transform .2s ease, color .2s ease, border-color .2s ease;
    flex: 0 0 28px;
    margin-left: 18px;
  }
  .faq-item[open] .ico { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }
  .faq-item .body {
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ---------- Final CTA ---------- */
  .final {
    text-align: center; padding: 80px 0 90px;
    background:
      radial-gradient(70% 70% at 50% 30%, rgba(4,76,172,.06), transparent 70%);
  }
  .final p { color: var(--muted); max-width: 640px; margin: 28px auto 36px; font-size: 18px; }
  .final .micro { color: var(--muted-2); font-size: 13px; margin-top: 22px; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 32px; }
  .f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  footer .tag { color: var(--muted); font-size: 14px; margin-top: 18px; max-width: 320px; }
  footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin: 6px 0 16px; font-weight: 600; }
  footer .li { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; transition: color .15s ease; font-family: inherit; }
  footer a.li:hover { color: var(--text); }
  .f-bottom {
    margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    color: var(--muted-2); font-size: 13px; flex-wrap: wrap;
  }
  .f-bottom .socials { display: flex; gap: 12px; }
  .f-bottom .socials a {
    display: inline-flex; width: 36px; height: 36px; border-radius: 999px;
    align-items: center; justify-content: center;
    border: 1px solid var(--border-strong); color: var(--muted);
    transition: border-color .2s ease, color .2s ease;
  }
  .f-bottom .socials a:hover { color: var(--text); border-color: var(--text); }

  /* ---------- Mobile sticky CTA ---------- */
  .mobile-cta {
    display: none;
    position: fixed; left: 16px; right: 16px; bottom: 16px;
    z-index: 60;
  }
  .mobile-cta .btn {
    width: 100%; padding: 16px;
    box-shadow: 0 12px 40px -10px rgba(15,20,30,.12), 0 14px 50px -10px var(--accent-glow);
  }

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

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .problem .container { grid-template-columns: 1fr; gap: 40px; }
    .test-grid { column-count: 2; }
    .f-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    section { padding: 80px 0; }
    .nav-cta { display: none; }
    .case-grid { grid-template-columns: 1fr; }
    .case .stats-row { grid-template-columns: repeat(2, 1fr); }
    .test-grid { column-count: 1; }
    .stats-grid { grid-template-columns: 1fr; }
    .f-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero { padding: 56px 0 60px; }
    .hero .trustpilot { margin-bottom: 24px; }
    .mobile-cta { display: block; }
    .stat { padding: 32px 22px; }
    .case { padding: 26px; }
    .case .stat-mini .v { font-size: 20px; }
    body { padding-bottom: 84px; }
  }

/* ============================================================
   WEBSITE ADDITIONS (multi-page)
   ============================================================ */
.nav-logo img { height: 76px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.menu-btn { display: none; background: none; border: none; color: var(--text); padding: 6px; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0; box-shadow: 0 16px 30px -16px rgba(15,20,30,.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .menu-btn { display: inline-flex; }
}

/* Generic page hero */
.page-hero { padding: 90px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:-10% -10% auto -10%; height:80%; background: radial-gradient(50% 60% at 70% 0%, var(--solar-glow), transparent 55%), radial-gradient(60% 60% at 40% 0%, rgba(4,76,172,.08), transparent 60%); z-index:0; pointer-events:none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p.sub { color: var(--muted); font-size: clamp(16px,1.5vw,19px); max-width: 760px; margin: 24px auto 32px; }

/* About: focus quote */
.one-thing { background: var(--bg-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.one-thing .container { max-width: 900px; text-align: center; }
.one-thing .quote { font-family:'Playfair Display',serif; font-size: clamp(19px,2.1vw,25px); font-weight:600; line-height:1.45; color: var(--text); margin: 24px auto 0; max-width:760px; }
.one-thing .quote .by { display:block; margin-top:16px; font-family:'Inter',sans-serif; font-size:14px; font-weight:600; color: var(--muted); letter-spacing:.04em; }

/* Team grid */
.team-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; margin: 44px auto 0; max-width: 760px; }
.team-member { text-align:center; }
.team-member .photo { width:100%; aspect-ratio:1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--bg-2), #e7eef9); border:1px solid var(--border); object-fit:cover; display:flex; align-items:center; justify-content:center; color:var(--muted-2); font-weight:800; font-size:24px; }
.team-member .nm { font-weight:700; font-size:15px; margin-top:12px; }
.team-member .rl { font-size:13px; color: var(--muted); margin-top:2px; }
@media (max-width:900px){ .team-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:560px){ .team-grid{ grid-template-columns: repeat(2,1fr);} }

/* Vetting two columns */
.vetting-cols { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:44px; }
.vet-card { border:1px solid var(--border); border-radius: var(--radius-lg); padding:36px; box-shadow:0 4px 24px -8px rgba(15,20,30,.06); }
.vet-card.yes { background: linear-gradient(180deg, #e9f7f0 0%, #ffffff 78%); border-color:rgba(0,182,122,.22); }
.vet-card.no { background: linear-gradient(180deg, #fdeeec 0%, #ffffff 78%); border-color:rgba(226,72,61,.2); }
.vet-card h3 { font-size:20px; margin:0 0 22px; font-weight:700; }
.vet-card h3 strong { font-weight:900; }
.vet-card ul { list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.vet-card li { display:flex; gap:12px; align-items:center; font-size:15px; color: var(--text); line-height:1.4; white-space:nowrap; }
.vet-card li::before { font-weight:800; flex:0 0 24px; height:24px; width:24px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-size:13px; color:#fff; }
.vet-card.yes li::before { content:"✓"; background:var(--good); }
.vet-card.no li::before { content:"✕"; background:#e2483d; }
@media (max-width:520px){ .vet-card li { white-space:normal; } }
@media (max-width:760px){ .vetting-cols{ grid-template-columns:1fr; } }

/* Contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:start; }
.cover-list { display:grid; gap:20px; margin-top: 28px; }
.cover-item { display:flex; gap:16px; align-items:flex-start; }
.cover-item .n { flex:0 0 36px; height:36px; width:36px; border-radius:999px; background:var(--accent); color:#fff; font-weight:800; font-size:15px; display:inline-flex; align-items:center; justify-content:center; }
.cover-item h4 { margin:0 0 4px; font-size:16px; }
.cover-item p { margin:0; color:var(--muted); font-size:15px; line-height:1.5; }
.info-row { display:flex; gap:36px; flex-wrap:wrap; margin-top:34px; padding-top:28px; border-top:1px solid var(--border); }
.info-row .lab { font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted-2); }
.info-row .val { font-weight:600; margin-top:5px; }
.contact-form { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:34px; box-shadow:0 16px 50px -22px rgba(4,76,172,.22); }
.contact-form .card-top { height:5px; margin:-34px -34px 26px; border-radius:var(--radius-lg) var(--radius-lg) 0 0; background:linear-gradient(90deg,var(--accent),var(--accent-2)); }
.contact-form .fg { margin-bottom:16px; display:flex; flex-direction:column; gap:7px; }
.contact-form label { font-size:14px; font-weight:600; }
.contact-form input, .contact-form select { width:100%; font:inherit; font-size:15px; padding:12px 14px; border-radius:12px; border:1px solid var(--border-strong); background:var(--bg-2); }
.contact-form input:focus, .contact-form select:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 4px var(--accent-glow); background:#fff; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; gap:36px; } }

/* Case studies featured */
.featured { background: var(--bg-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.featured-card { display:grid; grid-template-columns: 1.15fr 1fr; gap:40px; align-items:center; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:44px; box-shadow:0 16px 50px -22px rgba(4,76,172,.18); }
.featured-card .pull { font-size:18px; font-weight:600; line-height:1.5; margin:20px 0 0; color:var(--text); }
.featured .badge { display:inline-flex; align-items:center; gap:8px; font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:700; color:var(--accent); background:rgba(4,76,172,.08); border:1px solid rgba(4,76,172,.25); padding:7px 12px; border-radius:999px; margin-bottom:18px; }
.featured-card .fc-stats { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.featured-card .fc-stats .v { font-size:30px; font-weight:800; letter-spacing:-.02em; }
.featured-card .fc-stats .v .accent{ color:var(--accent);}
.featured-card .fc-stats .k { color:var(--muted); font-size:13px; margin-top:3px; }
@media (max-width:860px){ .featured-card{ grid-template-columns:1fr; gap:26px; padding:30px; } }

/* mini stat band */
.statband { display:flex; gap:46px; flex-wrap:wrap; justify-content:center; }
.statband .s { text-align:center; }
.statband .s .v { font-size: clamp(28px,3vw,40px); font-weight:800; letter-spacing:-.02em; }
.statband .s .v .accent{ color:var(--accent);}
.statband .s .k { color:var(--muted); font-size:13px; margin-top:4px; }

/* ===== Video hero (home) ===== */
.hero.has-video { position: relative; overflow: hidden; padding: 110px 0; }
.hero.has-video::before { display: none; }
.hero .hero-video { position: absolute; inset: 0; z-index: 0; }
.hero .hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,17,34,.74) 0%, rgba(7,17,34,.80) 60%, rgba(7,17,34,.88) 100%); }
.hero.has-video .hero-inner { position: relative; z-index: 2; }
.hero.has-video h1 { color: #fff; }
.hero.has-video h1 .accent { color: #3aa0ee; }
.hero.has-video p.sub { color: rgba(255,255,255,.86); }
.hero.has-video .underline-note { color: rgba(255,255,255,.82); }
.hero.has-video .underline-note::before { background: var(--good); }
.hero.has-video .trustpilot { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.92); }
.hero.has-video .trustpilot strong { color: #fff !important; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.16); transform: translateY(-1px); }

.stats-head h2 { font-size: clamp(32px, 4.4vw, 56px); }

/* ===== Video hero on inner pages ===== */
.page-hero.has-video { position: relative; overflow: hidden; padding: 90px 0; min-height: 520px; display: flex; align-items: center; }
.page-hero.has-video .container { width: 100%; }
.page-hero.has-video::before { display: none; }
.page-hero .hero-video { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-video video { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,17,34,.62) 0%, rgba(7,17,34,.69) 60%, rgba(7,17,34,.76) 100%); }
.page-hero.has-video .container { position: relative; z-index: 2; }
.page-hero.has-video h1 { color: #fff; }
.page-hero.has-video h1 span { color: #3aa0ee !important; }
.page-hero.has-video p.sub { color: rgba(255,255,255,.86); }
.page-hero.has-video .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.85); }
.page-hero.has-video .eyebrow .dot { background: #3aa0ee; }

.steps.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin-left: auto; margin-right: auto; }
@media (max-width:720px){ .steps.steps-3 { grid-template-columns: 1fr; } }

.cover-cols { display:grid; grid-template-columns: repeat(3,1fr); gap:26px; max-width:980px; margin:0 auto; }
@media (max-width:760px){ .cover-cols { grid-template-columns:1fr; gap:18px; max-width:480px; } }

.cover-cols .cover-item { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding:28px; box-shadow:0 4px 24px -8px rgba(15,20,30,.06); flex-direction:column; align-items:center; text-align:center; gap:16px; }
