*,*::before,*::after { box-sizing: border-box; }
  html,body { margin:0; padding:0; }
  body {
    font-family: 'Geist', system-ui, -apple-system, sans-serif;
    color: #0A0E14;
    background: #FFFFFF;
    line-height: 1.6;
    font-size: 17px;
    -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-family: inherit; cursor: pointer; border: none; background: none; }

  :root {
    --bg: #FFFFFF;
    --bg-soft: #F7F6F5;
    --ink: #0A0E14;
    --ink-soft: #69645E;
    --ink-faint: #A39E97;
    --line: #EDEBE8;
    --line-soft: #F4F2EF;
    --blue: #2D6FF0;
    --blue-deep: #1A5BD9;
    --blue-tint: #E8EFFE;
    --radius: 20px;
    --radius-lg: 32px;
    --container: 1180px;
    --gutter: clamp(20px, 4vw, 40px);
    --section: clamp(80px, 10vw, 140px);
  }

  .serif { font-family: 'Headland One', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; }
  h1, h2, h3, h4 {
    font-family: 'Headland One', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0;
    color: var(--ink);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
  }
  h1 { font-size: clamp(44px, 7.2vw, 96px); letter-spacing: -0.04em; }
  h2 { font-size: clamp(36px, 5.2vw, 64px); }
  h3 { font-size: clamp(22px, 2.2vw, 28px); }
  p  { margin: 0; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .eyebrow::before {
    content:""; width: 18px; height: 1px; background: var(--ink-soft);
  }

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

  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 88px;
    padding: 12px 0;
    overflow: visible;
  }
  .nav.scrolled {
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom-color: var(--line);
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Headland One', serif; font-size: 22px; letter-spacing: -0.02em;
    color: var(--ink);
  }
  .logo-mark {
    display: inline-flex; align-items: center;
    overflow: visible;
  }
  .logo-mark img {
    display: block;
    width: auto; height: auto;
    object-fit: contain;
  }
  .nav .logo-mark img { max-height: 60px; }
  footer .logo-mark img { max-height: 48px; }

  .nav-links {
    display: flex; align-items: center; gap: 2.5rem;
    list-style: none; margin: 0; padding: 0;
    justify-self: center;
  }
  .nav-links a {
    font-size: 1.05rem; font-weight: 500; color: var(--ink); position: relative;
    transition: color .2s ease;
  }
  .nav-links a::after {
    content:""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta-wrap { display: flex; align-items: center; gap: 18px; justify-self: end; }

  .lang-switch button, .lang-switch a {
    display: inline-block;
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1;
    padding: 0;
    min-width: 28px;
    text-align: center;
    transition: color .2s ease;
  }
  .lang-switch button:hover, .lang-switch a:hover { color: var(--blue-deep); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 500;
    padding: 15px 24px;
    border-radius: 12px;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    border: 1px solid transparent;
    line-height: 1; white-space: nowrap;
  }
  .btn .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); display: inline-block; }
  .btn:hover .arr { transform: translateX(4px); }
  .btn-primary { background: var(--blue); color: #fff; }
  .btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 30px -10px rgba(45,111,240,.45); }
  .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-light-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
  .btn-light-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
  .btn-small { padding: 11px 18px; font-size: 14px; }

  .hero {
    padding-top: calc(88px + clamp(24px, 5vw, 64px));
    padding-bottom: 0;
    text-align: center;
    position: relative;
  }
  .hero-split {
    display: block;
    max-width: 1080px;
    margin: 0 auto;
  }
  .hero-visual { display: none; }
  .hero h1 {
    font-size: clamp(44px, 7.2vw, 96px);
    letter-spacing: -0.04em;
    margin: 26px 0 28px;
  }
  .hero h1 .accent { color: var(--blue); font-style: italic; }
  .hero p.lede {
    max-width: 680px; margin: 0 auto;
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--ink-soft); line-height: 1.55;
  }
  .hero-ctas {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px; margin: 38px 0 24px;
  }
  .hero-trust {
    color: var(--ink-soft); font-size: 14px; margin-top: 8px;
  }
  @media (max-width: 560px) {
    .hero h1 { font-size: clamp(34px, 9vw, 54px); }
  }

  .ticker {
    margin-top: clamp(70px, 9vw, 110px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: #F7F6F5;
  }
  .ticker-track {
    display: flex; width: max-content;
    animation: tick 38s linear infinite;
    padding: 22px 0;
  }
  .ticker-item {
    font-family: 'Headland One', serif;
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--ink);
    padding: 0 40px;
    display: inline-flex; align-items: center; gap: 40px;
    white-space: nowrap;
  }
  .ticker-item::after {
    content: "✦"; color: var(--blue); font-size: 14px; opacity: .8;
  }
  @keyframes tick {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
  }

  .stats {
    background: #0A0E14;
    color: #fff;
  }
  .stats .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
  .stats .container > div { position: relative; padding-top: 28px; }
  .stats .container > div::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: #2D6FF0;
    margin-bottom: 28px;
  }
  .stat-num {
    font-family: 'Headland One', serif;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
  }
  .stat-num .count { display: inline-block; contain: layout paint; }
  .stat-num .unit { color: var(--blue); }
  .stat-label {
    margin-top: 18px;
    color: rgba(255,255,255,.66);
    font-size: 15px; line-height: 1.55;
    max-width: 280px;
  }
  @media (max-width: 820px) {
    .stats .container { grid-template-columns: 1fr; gap: 50px; }
    .stat-label { max-width: none; }
  }

  .section-head { max-width: 760px; margin-bottom: 64px; }
  .section-head h2 { margin: 18px 0 22px; }
  .section-head p { color: var(--ink-soft); font-size: 18px; max-width: 640px; }

  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
    position: relative;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px rgba(46,26,6,.18);
    border-color: #D7D8DD;
  }
  .card-num {
    font-family: 'Headland One', serif;
    font-size: 14px;
    color: var(--blue);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: inline-block;
  }
  .card h3 { margin-bottom: 14px; }
  .card p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

  .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step {
    border-top: 1px solid var(--ink);
    padding-top: 28px;
    padding-right: 12px;
  }
  .step-num {
    font-family: 'Headland One', serif;
    font-size: 64px; line-height: 1;
    color: var(--ink);
    margin-bottom: 28px;
    display: block;
  }
  .step h3 { margin-bottom: 12px; }
  .step p { color: var(--ink-soft); font-size: 16px; }
  @media (max-width: 820px) {
    .process-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
  .why-item {
    border-bottom: 1px solid var(--line);
    padding: 64px 0;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px;
    align-items: start;
  }
  .why-item:nth-child(odd) { padding-right: 56px; border-right: 1px solid var(--line); }
  .why-item:nth-child(even) { padding-left: 56px; }
  .why-item h3 { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.05; }
  .why-item p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
  @media (max-width: 820px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-item, .why-item:nth-child(odd), .why-item:nth-child(even) {
      grid-template-columns: 1fr; padding: 44px 0; border-right: 0; gap: 18px;
    }
  }

  .pricing-wrap { display: flex; justify-content: center; }
  .price-card {
    max-width: 720px; width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(44px, 5vw, 72px) clamp(36px, 5vw, 64px);
    text-align: left;
    box-shadow: 0 60px 120px -55px rgba(46,26,6,.25);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 70px 130px -50px rgba(46,26,6,.3); }
  .badge {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    background: var(--blue-tint); color: var(--blue);
    border-radius: 999px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 30px;
  }
  .price {
    font-family: 'Headland One', serif;
    font-size: clamp(72px, 8.4vw, 112px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
  }
  .price-line { color: var(--ink-soft); margin-top: 18px; font-size: 18px; }
  .price-list { list-style: none; padding: 0; margin: 40px 0 44px; }
  .price-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 17px; color: var(--ink);
  }
  .price-list li:first-child { border-top: 0; }
  .price-list li::before {
    content:""; flex: 0 0 8px; height: 8px; border-radius: 50%;
    background: var(--blue); margin-top: 9px;
  }
  .price-note { margin-top: 22px; color: var(--ink-faint); font-size: 14px; text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }

  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq {
    border-bottom: 1px solid var(--line);
  }
  .faq:first-child { border-top: 1px solid var(--line); }
  .faq-q {
    width: 100%; text-align: left;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    padding: 28px 0;
    font-family: 'Headland One', serif;
    font-size: clamp(20px, 2vw, 24px);
    color: var(--ink);
    letter-spacing: -0.015em;
    transition: color .2s ease;
  }
  .faq-q:hover { color: var(--blue); }
  .faq-icon {
    flex: 0 0 28px; width: 28px; height: 28px;
    border: 1px solid var(--ink); border-radius: 50%;
    position: relative;
    transition: background-color .25s ease, border-color .25s ease, transform .35s ease;
  }
  .faq-icon::before, .faq-icon::after {
    content:""; position: absolute; left: 50%; top: 50%;
    width: 10px; height: 1px; background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform .35s ease, background-color .25s ease;
  }
  .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq.open .faq-icon { background: var(--ink); }
  .faq.open .faq-icon::before, .faq.open .faq-icon::after { background: #fff; }
  .faq.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .5s cubic-bezier(.2,.7,.2,1);
  }
  .faq-a-inner {
    padding: 0 0 28px;
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 680px;
    line-height: 1.65;
  }

  .final {
    background: #0A0E14;
    color: #fff;
    text-align: center;
    border-radius: 0;
  }
  .final h2 { color: #fff; max-width: 880px; margin: 0 auto 22px; }
  .final p { color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 36px; font-size: 18px; }
  .final .btn-primary { background: #fff; color: var(--ink); }
  .final .btn-primary:hover { background: var(--blue); color: #fff; box-shadow: 0 10px 30px -10px rgba(45,111,240,.55); }
  .final .micro { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 22px; }

  .contact-form {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
    text-align: left;
  }
  .contact-form .field { display: flex; flex-direction: column; }
  .contact-form .field-full { grid-column: 1 / -1; }
  .contact-form label {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.78);
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }
  .contact-form label .opt { opacity: .55; font-weight: 400; margin-left: 4px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    font-family: inherit;
    font-size: 17px;
    color: var(--ink);
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 16px 18px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: var(--ink-faint); }
  .contact-form select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2369645E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
  }
  .contact-form select:invalid { color: var(--ink-faint); }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(45,111,240,.18);
  }
  .contact-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
  .contact-form .form-submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 18px 24px;
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
    margin-top: 6px;
    cursor: pointer;
  }
  .contact-form .form-submit:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    box-shadow: 0 14px 32px -12px rgba(45,111,240,.6);
  }
  @media (max-width: 640px) {
    .contact-form { grid-template-columns: 1fr; gap: 16px; }
    .contact-form .field-full { grid-column: auto; }
    .contact-form .form-submit { grid-column: auto; }
  }

  footer {
    padding: 60px 0 50px;
    border-top: 1px solid var(--line);
  }
  .footer-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  .footer-meta { color: var(--ink-soft); font-size: 14px; }
  .footer-copy { color: var(--ink-faint); font-size: 13px; }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1; transform: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  .menu-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 999px; border: 1px solid var(--line);
    align-items: center; justify-content: center;
  }
  .menu-btn span {
    width: 16px; height: 1.5px; background: var(--ink); position: relative; display: block;
  }
  .menu-btn span::before, .menu-btn span::after {
    content:""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
  }
  .menu-btn span::before { top: -5px; }
  .menu-btn span::after { top: 5px; }

  @media (max-width: 880px) {
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    .nav-cta-wrap .btn { display: none; }
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
  }

  .mobile-drawer {
    position: fixed; inset: 88px 0 0 0;
    background: #fff; z-index: 99;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    border-top: 1px solid var(--line);
  }
  .mobile-drawer.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-drawer ul {
    list-style: none; padding: 30px var(--gutter); margin: 0;
    display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-drawer a {
    display: block;
    font-family: 'Headland One', serif;
    font-size: 28px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-drawer .btn { margin-top: 22px; }

  /* ---------- Hero guarantee badge (replaces star rating) ---------- */
  .trust .guarantee-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 14px; color: var(--ink);
  }
  .trust .guarantee-pill svg { flex: 0 0 auto; color: var(--blue); }

  /* ---------- 4-tier pricing ---------- */
  .tiers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: stretch;
    max-width: 1040px; margin: 0 auto;
  }
  .tier {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 26px 30px;
    position: relative;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
  }
  .tier:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(46,26,6,.18); border-color: #D7D8DD; }
  .tier.popular { border-color: var(--blue); box-shadow: 0 40px 80px -40px rgba(45,111,240,.42); }
  .tier-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  }
  .tier-name { font-family: 'Headland One', serif; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 14px; }
  .tier-price { font-family: 'Headland One', serif; font-size: clamp(40px, 4.6vw, 52px); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
  .tier-price .per { font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--ink-soft); }
  .tier-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 14px 0 20px; }
  .tier-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1 1 auto; }
  .tier-list li { position: relative; padding: 9px 0 9px 22px; font-size: 14px; line-height: 1.5; color: var(--ink); border-top: 1px solid var(--line-soft); }
  .tier-list li:first-child { border-top: 0; }
  .tier-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
  .tier .btn { width: 100%; justify-content: center; margin-top: auto; }
  .tier.popular .btn-outline { background: var(--blue); color: #fff; border-color: var(--blue); }
  .tier.popular .btn-outline:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
  @media (max-width: 980px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }

  .guarantee-bar {
    display: flex; align-items: center; gap: 14px; justify-content: center;
    max-width: 780px; margin: 40px auto 0;
    padding: 20px 26px;
    background: var(--blue-tint); border: 1px solid #D4E2FD; border-radius: 16px;
    color: var(--ink); font-size: 15px; line-height: 1.55; text-align: left;
  }
  .guarantee-bar svg { flex: 0 0 auto; color: var(--blue); }
  .price-fine { text-align: center; color: var(--ink-faint); font-size: 13px; margin-top: 20px; }

  /* ---------- Sample audit preview ---------- */
  .sample-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1000px; margin: 0 auto; }
  .sample-page {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 44px 90px -50px rgba(46,26,6,.30);
    overflow: hidden; display: flex; flex-direction: column;
  }
  .sample-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #0A0E14; color: #fff; }
  .sample-bar .sb-title { font-family: 'Headland One', serif; font-size: 15px; letter-spacing: -0.01em; }
  .sample-bar .sb-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.25); padding: 4px 8px; border-radius: 999px; }
  .sample-body { padding: 24px 24px 28px; }
  .sample-body .redacted { background: linear-gradient(90deg, var(--line) 0%, var(--line-soft) 100%); color: transparent; border-radius: 4px; padding: 0 6px; user-select: none; }
  .sample-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
  .sample-h { font-family: 'Headland One', serif; font-size: 22px; line-height: 1.1; margin-bottom: 16px; }
  .sample-score { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 18px; }
  .sample-score .num { font-family: 'Headland One', serif; font-size: 46px; line-height: 1; color: var(--ink); }
  .sample-score .out { font-size: 14px; color: var(--ink-faint); margin-bottom: 6px; }
  .sample-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }
  .sample-row:first-of-type { border-top: 0; }
  .sample-row .dot { flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; }
  .dot-bad { background: #E5484D; } .dot-warn { background: #F5A623; } .dot-ok { background: #2F9E44; }
  .sample-row .r-label { flex: 1; color: var(--ink); }
  .sample-row .r-val { color: var(--ink-soft); font-weight: 500; }
  .sample-note { margin-top: 18px; padding: 14px 16px; background: var(--bg-soft); border-left: 3px solid var(--blue); border-radius: 6px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
  .sample-fix { display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: 14px; align-items: flex-start; }
  .sample-fix:first-of-type { border-top: 0; }
  .sample-fix .fx-num { font-family: 'Headland One', serif; color: var(--blue); font-size: 15px; flex: 0 0 auto; }
  @media (max-width: 760px) { .sample-grid { grid-template-columns: 1fr; } }

  /* ---------- Before / after missed-call graphic ---------- */
  .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; }
  .ba-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; background: #fff; }
  .ba-card.bad { background: var(--bg-soft); }
  .ba-card h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
  .ba-card svg { display: block; width: 100%; height: auto; border-radius: 12px; }
  .ba-caption { margin-top: 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
  .ba-tagbad { color: #E5484D; font-weight: 600; }
  .ba-taggood { color: #2F9E44; font-weight: 600; }
  @media (max-width: 640px) { .ba-grid { grid-template-columns: 1fr; } }

  /* ---------- Done-for-you ---------- */
  .dfy-card {
    max-width: 860px; margin: 0 auto; text-align: center;
    background: #0A0E14; color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 64px);
  }
  .dfy-card .eyebrow { color: rgba(255,255,255,.6); justify-content: center; }
  .dfy-card .eyebrow::before { background: rgba(255,255,255,.6); }
  .dfy-card h2 { color: #fff; margin: 18px 0 18px; }
  .dfy-card p { color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6; max-width: 620px; margin: 0 auto 32px; }
  .dfy-card .btn-primary { background: #fff; color: var(--ink); }
  .dfy-card .btn-primary:hover { background: var(--blue); color: #fff; }
