
  @font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-var.woff2') format('woff2-variations');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
  }

  :root {
    color-scheme: light;
    --bg: #f5f8fb;
    --surface: #ffffff;
    --surface-alt: #eaf0f7;
    --ink: #0a1628;
    --ink-muted: #4d5f78;
    --ink-soft: #7688a0;
    --brand: #12457a;
    --brand-deep: #0a1628;
    --brand-mid: #165d93;
    --accent: #ec7c3d;
    --accent-hover: #d96a2d;
    --accent-ink: #ffffff;
    --border: #dbe3ee;
    --border-strong: #c2cee0;
    --shadow: 0 20px 40px -24px rgba(10, 22, 40, 0.35);
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      color-scheme: dark;
      --bg: #0a1628;
      --surface: #101f36;
      --surface-alt: #16293f;
      --ink: #f2f6fb;
      --ink-muted: #a9b9cf;
      --ink-soft: #7f90a8;
      --brand: #5b9bd8;
      --brand-deep: #050d18;
      --brand-mid: #2d76ad;
      --accent: #f3924f;
      --accent-hover: #f7a468;
      --accent-ink: #14100a;
      --border: #223650;
      --border-strong: #2c4362;
      --shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.6);
    }
  }

  :root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0a1628;
    --surface: #101f36;
    --surface-alt: #16293f;
    --ink: #f2f6fb;
    --ink-muted: #a9b9cf;
    --ink-soft: #7f90a8;
    --brand: #5b9bd8;
    --brand-deep: #050d18;
    --brand-mid: #2d76ad;
    --accent: #f3924f;
    --accent-hover: #f7a468;
    --accent-ink: #14100a;
    --border: #223650;
    --border-strong: #2c4362;
    --shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.6);
  }

  * { box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Archivo', -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img, svg { max-width: 100%; display: block; }

  a { color: inherit; }

  h1, h2, h3, h4 {
    font-family: 'Archivo', -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.12;
    text-wrap: balance;
    margin: 0;
    color: var(--ink);
  }

  p { margin: 0; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-mid);
  }
  :root[data-theme="dark"] .eyebrow,
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .eyebrow { color: var(--accent); } }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  }

  /* ---------- Header ---------- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  header.site.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 8px 24px -20px rgba(10,22,40,.4);
  }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Archivo', -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: linear-gradient(155deg, var(--brand) 0%, var(--brand-deep) 100%);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 18px; height: 18px; stroke: #fff; }
  .logo small {
    display: block;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
  }
  .logo-img { height: 46px; width: auto; }
  header.site .logo-img {
    /* the source logo is dark-on-transparent; keep it legible on a dark host theme too */
    filter: drop-shadow(0 0 0 transparent);
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) header.site .logo-img { background: #fff; border-radius: 8px; padding: 0.3rem 0.6rem; }
  }
  :root[data-theme="dark"] header.site .logo-img { background: #fff; border-radius: 8px; padding: 0.3rem 0.6rem; }

  nav.pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: var(--shadow);
  }
  nav.pill a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-muted);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  nav.pill a:hover { background: var(--surface-alt); color: var(--ink); }

  .phone-cta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
  }
  .phone-cta .ico {
    width: 34px; height: 34px;
    border-radius: 999px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    display: grid; place-items: center;
  }
  .phone-cta .ico svg { width: 15px; height: 15px; stroke: var(--brand); }
  .phone-cta span small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.72rem; }

  @media (max-width: 880px) {
    nav.pill { display: none; }
  }

  /* ---------- Mobile menu ---------- */
  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }
  .menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }
  .menu-toggle .ico-close { display: none; }
  .menu-toggle[aria-expanded="true"] .ico-open { display: none; }
  .menu-toggle[aria-expanded="true"] .ico-close { display: block; }
  @media (max-width: 880px) { .menu-toggle { display: inline-flex; } }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
    border-top: 1px solid var(--border);
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    transition: background .15s ease;
  }
  .mobile-nav a:hover, .mobile-nav a:active { background: var(--surface-alt); }
  @media (min-width: 881px) { .mobile-nav { display: none !important; } }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 14px 28px -14px color-mix(in srgb, var(--accent) 70%, transparent); }
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
  .btn-ghost:hover { background: var(--surface-alt); }
  .btn-on-dark { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
  .btn-on-dark:hover { background: var(--surface-alt); }

  /* ---------- Hero ---------- */
  .hero {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1rem, 2.5vw, 1.75rem);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
  }
  .hero-copy { display: flex; flex-direction: column; }
  .hero-copy .price-badge { margin-top: auto; }
  @media (max-width: 900px) { .hero-grid { align-items: start; } }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

  .hero h1 {
    font-size: clamp(2.3rem, 4.4vw, 3.4rem);
    margin-top: 1rem;
  }
  .hero .lead {
    margin-top: 1.15rem;
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 46ch;
  }
  .hero-actions {
    display: flex;
    gap: 0.85rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  .checklist {
    list-style: none;
    padding: 0; margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }
  .checklist li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-muted);
  }
  .checklist svg { width: 18px; height: 18px; stroke: var(--brand-mid); flex-shrink: 0; }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: var(--brand-deep);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .hero-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
  }
  .hero-visual::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(190deg, rgba(10,22,40,0) 45%, rgba(10,22,40,.75) 100%);
    pointer-events: none;
  }
  .live-badge {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10,22,40,.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
  }
  .live-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #59d98a;
    flex-shrink: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    .live-dot { animation: livepulse 2s ease-in-out infinite; }
    @keyframes livepulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(89,217,138,.5); }
      50% { box-shadow: 0 0 0 5px rgba(89,217,138,0); }
    }
  }
  .hero-visual .caption {
    position: absolute;
    left: 1.6rem; bottom: 1.6rem; right: 1.6rem;
    z-index: 2;
    color: #fff;
  }
  .hero-visual .caption strong { display: block; font-size: 1rem; }
  .hero-visual .caption span { font-size: 0.85rem; color: rgba(255,255,255,.75); }

  /* ---------- Stats ---------- */
  .stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
  @media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat b {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--brand);
    font-variant-numeric: tabular-nums;
    display: block;
  }
  .stat span {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 600;
  }

  /* ---------- Section shell ---------- */
  section { padding: clamp(1.5rem, 3vw, 2.5rem) 0; scroll-margin-top: 5rem; }
  section.section-tight { padding: clamp(0.75rem, 1.5vw, 1.25rem) 0; }
  .section-head { max-width: 62ch; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
  .section-head--wide { max-width: 46rem; }
  .section-head--xwide { max-width: 64rem; }

  /* ---------- Teaser split (text + card, full width) ---------- */
  .teaser-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
  }
  @media (max-width: 900px) { .teaser-split { grid-template-columns: 1fr; } }
  .teaser-split .section-head { max-width: none; margin-bottom: 0; }
  .teaser-split .value-card h3 { margin-bottom: 0.9rem; }
  .teaser-split .checklist { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .teaser-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
  .teaser-card-link .value-card { height: 100%; transition: border-color 0.15s, box-shadow 0.15s; }
  .teaser-card-link:hover .value-card { border-color: color-mix(in srgb, var(--brand-mid) 40%, var(--border)); box-shadow: var(--shadow); }
  .section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-top: 0.7rem; }
  .section-head p { margin-top: 0.9rem; color: var(--ink-muted); font-size: 1.05rem; }

  /* ---------- Value cards ---------- */
  .card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 860px) { .card-grid-3 { grid-template-columns: 1fr; } }
  .card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 640px) { .card-grid-2 { grid-template-columns: 1fr; } }
  .value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
  }
  .value-card .ico {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: color-mix(in srgb, var(--brand-mid) 14%, transparent);
    display: grid; place-items: center;
    margin-bottom: 1.1rem;
  }
  .value-card .ico svg { width: 22px; height: 22px; stroke: var(--brand); }
  .value-card h3 { font-size: 1.08rem; }
  .value-card p { margin-top: 0.55rem; color: var(--ink-muted); font-size: 0.95rem; }

  /* ---------- Quote ---------- */
  .quote-band {
    background: linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-mid) 130%);
    color: #fff;
    border-radius: 28px;
    padding: clamp(2.25rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    align-items: start;
  }
  @media (max-width: 700px) { .quote-band { grid-template-columns: 1fr; } }
  .quote-band svg.mark { width: 40px; height: 40px; opacity: .5; stroke: #fff; }
  .quote-band blockquote {
    margin: 0;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }
  .quote-band footer {
    margin-top: 1.4rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,.72);
    font-weight: 600;
  }

  /* ---------- Problems ---------- */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }
  .problem-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    background: var(--surface);
  }
  .problem-card h3 { font-size: 1.12rem; display: flex; gap: 0.75rem; align-items: flex-start; }
  .problem-card .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--surface-alt); display: grid; place-items: center; flex-shrink: 0; }
  .problem-card .ico svg { width: 19px; height: 19px; stroke: var(--brand); }
  .problem-card p { margin-top: 0.75rem; color: var(--ink-muted); font-size: 0.95rem; }

  /* ---------- Process timeline ---------- */
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
  }
  @media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }
  .phase {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    position: relative;
  }
  .phase .num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .phase h3 { margin-top: 0.5rem; font-size: 1.05rem; padding-right: 2.5rem; }
  .phase p { margin-top: 0.6rem; color: var(--ink-muted); font-size: 0.9rem; }

  /* ---------- Team ---------- */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
  .team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.9rem;
    display: flex;
    gap: 1.25rem;
  }
  .avatar {
    width: 66px; height: 66px;
    border-radius: 999px;
    flex-shrink: 0;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    overflow: hidden;
    border: 2px solid var(--surface);
    box-shadow: 0 0 0 1px var(--border);
  }
  .avatar img { width: 100%; height: 100%; object-fit: cover; }
  .avatar.ck { background: linear-gradient(155deg, var(--brand-mid), var(--brand-deep)); }
  .avatar.sk { background: linear-gradient(155deg, var(--accent), var(--accent-hover)); }
  .team-card h3 { font-size: 1.08rem; }
  .team-card .role { color: var(--brand-mid); font-weight: 700; font-size: 0.85rem; margin-top: 0.2rem; display: block; }
  .team-card p.bio { margin-top: 0.7rem; color: var(--ink-muted); font-size: 0.9rem; }

  /* ---------- CTA band ---------- */
  .cta-band {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
  }
  .cta-band h2 { color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.3rem); }
  .cta-band p { color: var(--ink-muted); margin-top: 0.9rem; max-width: 52ch; margin-inline: auto; }
  .cta-band .checklist { justify-content: center; }
  .cta-band .checklist li { color: var(--ink); }
  .cta-band .checklist svg { stroke: var(--accent); }
  .cta-band .hero-actions { justify-content: center; }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
  details.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
  }
  details.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.98rem;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  .faq-plus { width: 22px; height: 22px; border-radius: 999px; background: var(--surface-alt); display: grid; place-items: center; flex-shrink: 0; transition: transform .2s ease; }
  .faq-plus svg { width: 11px; height: 11px; stroke: var(--brand); }
  details[open] .faq-plus { transform: rotate(45deg); }
  .faq-item p { margin-top: 0.9rem; color: var(--ink-muted); font-size: 0.93rem; }

  /* ---------- Footer ---------- */
  footer.site {
    background: var(--brand-deep);
    color: rgba(255,255,255,.75);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
    margin-top: 2rem;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  footer.site .logo { color: #fff; }
  footer.site .logo-mark { background: rgba(255,255,255,.12); }
  footer.site address { font-style: normal; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,.65); }
  .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; }
  .footer-links a { text-decoration: none; color: rgba(255,255,255,.7); }
  .footer-links a:hover { color: #fff; }
  .footer-bottom { padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,.45); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }



  .cookie-banner {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 1.25rem;
  }
  .cookie-banner[hidden] { display: none; }
  .cookie-banner__backdrop {
    position: absolute; inset: 0;
    background: rgba(5, 13, 24, 0.55);
    backdrop-filter: blur(2px);
  }
  .cookie-banner__panel {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    max-width: 480px;
    width: 100%;
    max-height: min(88vh, 640px);
    overflow-y: auto;
    padding: 1.9rem 1.9rem 1.6rem;
    box-shadow: var(--shadow);
  }
  .cookie-banner__panel h2 { font-size: 1.2rem; margin-bottom: 0.6rem; }
  .cookie-banner__panel > p {
    color: var(--ink-muted); font-size: 0.92rem; line-height: 1.55; margin: 0 0 1.3rem;
  }
  .cookie-categories { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.4rem; }
  .cookie-categories[hidden] { display: none; }
  .cookie-cat {
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-alt);
  }
  .cookie-cat__title { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; font-weight: 700; font-size: 0.92rem; }
  .cookie-cat__desc { margin-top: 0.3rem; font-size: 0.82rem; color: var(--ink-muted); line-height: 1.5; }
  .cookie-switch { position: relative; display: inline-block; width: 40px; height: 23px; flex-shrink: 0; }
  .cookie-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
  .cookie-switch__track {
    position: absolute; inset: 0; background: var(--border-strong); border-radius: 999px;
    transition: background .18s ease; cursor: pointer;
  }
  .cookie-switch__track::before {
    content: ""; position: absolute; width: 17px; height: 17px; left: 3px; top: 3px;
    background: #fff; border-radius: 999px; transition: transform .18s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
  }
  .cookie-switch input:checked + .cookie-switch__track { background: var(--brand-mid); }
  .cookie-switch input:checked + .cookie-switch__track::before { transform: translateX(17px); }
  .cookie-switch input:disabled + .cookie-switch__track { background: var(--brand-mid); opacity: .55; cursor: not-allowed; }
  .cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; white-space: nowrap; }
  .cookie-banner__customize-row { margin-top: 0.75rem; text-align: center; }
  .cookie-banner__customize-row button {
    background: none; border: none; padding: 0; font: inherit; font-size: 0.85rem;
    font-weight: 700; color: var(--brand-mid); text-decoration: underline; cursor: pointer;
  }
  .cookie-banner__policy {
    margin-top: 1.1rem; text-align: center; font-size: 0.8rem;
  }
  .cookie-banner__policy a { color: var(--ink-soft); }
  .cookie-settings-link {
    background: none; border: none; padding: 0; font: inherit; color: rgba(255,255,255,.7);
    text-decoration: underline; cursor: pointer;
  }
  .cookie-settings-link:hover { color: #fff; }

  /* ---------- Contact form ---------- */
  .contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    margin-top: 1.5rem;
  }
  .contact-card h3 { font-size: 1.3rem; }
  .contact-card > p { margin-top: 0.6rem; color: var(--ink-muted); font-size: 0.95rem; }
  .contact-form { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  @media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
  .form-field label .opt { font-weight: 500; color: var(--ink-soft); }
  .form-field input,
  .form-field textarea {
    font: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: var(--bg);
    color: var(--ink);
    resize: vertical;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: 2px solid var(--brand-mid);
    outline-offset: 1px;
  }
  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--ink-muted);
  }
  .form-consent input { margin-top: 0.2rem; flex-shrink: 0; }
  .form-consent a { color: var(--brand-mid); font-weight: 600; }
  .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-status {
    display: none;
    border-radius: 12px;
    padding: 0.85rem 1.05rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .form-status.is-visible { display: block; }
  .form-status.is-success { background: color-mix(in srgb, #2f9e5c 14%, var(--surface)); color: #1c6b3d; }
  .form-status.is-error { background: color-mix(in srgb, #c0392b 12%, var(--surface)); color: #a4291b; }
  :root[data-theme="dark"] .form-status.is-success { color: #7fe0a6; }
  :root[data-theme="dark"] .form-status.is-error { color: #f1978b; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .form-status.is-success { color: #7fe0a6; }
    :root:not([data-theme="light"]) .form-status.is-error { color: #f1978b; }
  }
  .contact-form button[type="submit"] { align-self: flex-start; }
  .contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

  /* ---------- Price badge ---------- */
  .price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-mid);
    background: color-mix(in srgb, var(--brand-mid) 10%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--brand-mid) 25%, var(--border));
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
  }

  /* ---------- Trust badges ---------- */
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 0 0 1.75rem;
  }
  .trust-row .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-muted);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
  }
  .trust-row .badge svg { width: 15px; height: 15px; stroke: var(--brand-mid); flex-shrink: 0; }

  /* ---------- Quick callback ---------- */
  .quick-callback {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.4rem clamp(1.25rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .quick-callback .qc-copy h2 { font-size: 1.05rem; }
  .quick-callback .qc-copy p { margin-top: 0.35rem; color: var(--ink-muted); font-size: 0.88rem; }
  .quick-callback form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .quick-callback .qc-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
  }
  .quick-callback input[type="tel"],
  .quick-callback input[type="text"] {
    font: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: var(--bg);
    color: var(--ink);
    flex: 1 1 160px;
    min-width: 140px;
  }
  .quick-callback input[type="tel"] { flex: 1 1 180px; min-width: 160px; }
  .quick-callback input[type="tel"]:focus,
  .quick-callback input[type="text"]:focus { outline: 2px solid var(--brand-mid); outline-offset: 1px; }
  .quick-callback .qc-fields .btn { flex: 1 1 180px; justify-content: center; }
  .quick-callback .qc-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin: 0;
  }
  .quick-callback .qc-consent input { margin-top: 0.2rem; flex-shrink: 0; }
  .quick-callback .qc-consent a { color: var(--brand-mid); font-weight: 600; }
  .quick-callback .qc-status {
    flex: 1 1 100%;
    display: none;
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .quick-callback .qc-status.is-visible { display: block; }
  .quick-callback .qc-status.is-success { background: color-mix(in srgb, #2f9e5c 14%, var(--surface)); color: #1c6b3d; }
  .quick-callback .qc-status.is-error { background: color-mix(in srgb, #c0392b 12%, var(--surface)); color: #a4291b; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .quick-callback .qc-status.is-success { color: #7fe0a6; }
    :root:not([data-theme="light"]) .quick-callback .qc-status.is-error { color: #f1978b; }
  }
  :root[data-theme="dark"] .quick-callback .qc-status.is-success { color: #7fe0a6; }
  :root[data-theme="dark"] .quick-callback .qc-status.is-error { color: #f1978b; }

  /* ---------- WhatsApp button ---------- */
  .btn-whatsapp {
    background: var(--surface);
    color: var(--brand);
    border-color: var(--border-strong);
  }
  .btn-whatsapp:hover { background: var(--surface-alt); }
  .btn-whatsapp svg { width: 18px; height: 18px; fill: var(--brand); flex-shrink: 0; }
  .whatsapp-ico { width: 34px; height: 34px; border-radius: 999px; background: #e9fbf1; display: grid; place-items: center; }
  .whatsapp-ico svg { width: 16px; height: 16px; fill: #1fbd5a; }

  /* ---------- Partner grid ---------- */
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .partner-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .partner-tile:hover {
    border-color: color-mix(in srgb, var(--brand-mid) 40%, var(--border));
    box-shadow: var(--shadow);
  }
  .partner-tile img {
    width: 30px; height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    padding: 3px;
  }
  .partner-tile .partner-tile-body { min-width: 0; }
  .partner-tile strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--ink); }
  .partner-tile span { display: block; margin-top: 0.25rem; font-size: 0.8rem; color: var(--ink-muted); }

  /* ---------- Comparison table ---------- */
  .compare-table { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  @media (max-width: 760px) { .compare-table { grid-template-columns: 1fr; } }
  .compare-col { border-radius: 20px; padding: 1.75rem; border: 1px solid var(--border); }
  .compare-col--against { background: var(--surface-alt); }
  .compare-col--for { background: var(--surface); border-color: color-mix(in srgb, var(--brand-mid) 35%, var(--border)); box-shadow: var(--shadow); }
  .compare-col__label { font-weight: 800; font-size: 1.05rem; display: block; margin-bottom: 1.1rem; }
  .compare-col--against .compare-col__label { color: var(--ink-soft); }
  .compare-col--for .compare-col__label { color: var(--brand); }
  .compare-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
  .compare-col li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; }
  .compare-col--against li { color: var(--ink-soft); }
  .compare-col--against li svg { width: 16px; height: 16px; stroke: var(--ink-soft); flex-shrink: 0; margin-top: 0.15rem; opacity: 0.7; }
  .compare-col--for li { color: var(--ink); font-weight: 600; }
  .compare-col--for li svg { width: 18px; height: 18px; stroke: var(--brand); flex-shrink: 0; margin-top: 0.1rem; }
