    /* ============ design tokens (locked) ============ */
    :root {
      --bg: #EBF0FF;
      --ink: #0D1433;
      --blue: #3B60FF;
      --gold: #F5A623;
      --pink: #E8348A;
      --white: #ffffff;
      --r: 28px;
      --r-sm: 16px;
      --r-lg: 36px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'Lexend', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    p { font-weight: 300; }
    .desc, .note, .light { font-weight: 300; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ============ ticker bar ============ */
    .ticker {
      background: var(--ink);
      color: var(--bg);
      overflow: hidden;
      padding: 12px 0;
    }
    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: scroll 30s linear infinite;
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 12px;
      text-transform: uppercase;
      width: max-content;
    }
    .ticker-track > * {
      margin-right: 18px;
    }
    .ticker-track span { display: inline-flex; gap: 10px; align-items: center; }
    .ticker-track strong { color: var(--gold); font-weight: 800; }
    .ticker-dot { color: var(--gold); font-size: 7px; margin-right: 18px; }
    @keyframes scroll {
      0% { transform: translate3d(0,0,0); }
      100% { transform: translate3d(-50%,0,0); }
    }

    /* ============ nav ============ */
    nav {
      padding: 18px 0;
      position: sticky;
      top: 0;
      background: rgba(235, 240, 255, 0.78);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      z-index: 100;
      border-bottom: 1px solid rgba(13, 20, 51, 0.06);
    }
    .nav-row {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.025em;
      white-space: nowrap;
      flex-shrink: 0;
      line-height: 1;
    }
    .logo-mark {
      width: 40px; height: 40px;
      flex-shrink: 0;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(13,20,51,0.12));
    }
    .nav-links {
      display: flex; gap: 26px; font-weight: 600; font-size: 14.5px;
      align-items: center;
    }
    .nav-links a { position: relative; transition: color .15s ease; }
    .nav-links a:hover { color: var(--blue); }

    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown-trigger {
      display: inline-flex; align-items: center; gap: 5px;
      cursor: pointer;
      font: inherit;
      color: inherit;
      background: none; border: 0;
      padding: 0;
      font-weight: 600;
    }
    .nav-dropdown-trigger:hover { color: var(--blue); }
    .nav-dropdown-trigger svg { transition: transform .2s ease; }
    .nav-dropdown:hover .nav-dropdown-trigger svg,
    .nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 240px;
      background: var(--white);
      border: 1px solid rgba(13,20,51,0.08);
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(13,20,51,0.12), 0 4px 10px rgba(13,20,51,0.04);
      padding: 10px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .18s ease, transform .2s ease, visibility .18s ease;
      z-index: 50;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: block;
      padding: 10px 14px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      color: var(--ink);
      transition: background .15s ease, color .15s ease;
    }
    .nav-dropdown-menu a:hover {
      background: var(--bg);
      color: var(--blue);
    }
    .nav-dropdown-menu a small {
      display: block;
      font-weight: 400;
      font-size: 11.5px;
      opacity: 0.6;
      margin-top: 1px;
      letter-spacing: 0;
    }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink);
      color: var(--bg);
      padding: 13px 22px;
      border-radius: 999px;
      font-weight: 700; font-size: 14px;
      transition: transform .15s ease, background .2s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-cta:hover { transform: translateY(-1px); background: var(--blue); }

    .hamburger {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      background: var(--white);
      border: 1px solid rgba(13,20,51,0.08);
      border-radius: 999px;
      cursor: pointer;
      transition: background .15s ease, border-color .15s ease;
      flex-shrink: 0;
    }
    .hamburger:hover { background: var(--bg); border-color: var(--blue); }
    .hamburger-icon {
      position: relative;
      width: 18px; height: 12px;
    }
    .hamburger-icon::before,
    .hamburger-icon::after,
    .hamburger-icon span {
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease, top .25s ease;
    }
    .hamburger-icon::before { content: ""; top: 0; }
    .hamburger-icon span { top: 5px; }
    .hamburger-icon::after { content: ""; top: 10px; }
    .hamburger.open .hamburger-icon::before { top: 5px; transform: rotate(45deg); }
    .hamburger.open .hamburger-icon::after  { top: 5px; transform: rotate(-45deg); }
    .hamburger.open .hamburger-icon span    { opacity: 0; }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 200;
      padding: 16px 24px 24px;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu .mm-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(13,20,51,0.08);
    }
    .mobile-menu .mm-close {
      width: 40px; height: 40px;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--ink);
      color: var(--bg);
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      transition: background .15s ease, transform .15s ease;
    }
    .mobile-menu .mm-close:hover { background: var(--blue); transform: rotate(90deg); }
    .mobile-menu a {
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.015em;
      padding: 13px 0;
      border-bottom: 1px solid rgba(13,20,51,0.08);
      color: var(--ink);
    }
    .mobile-menu a.cta,
    .mobile-menu a.mm-cta {
      background: var(--ink);
      color: var(--bg);
      border: 0;
      border-radius: 999px;
      padding: 16px 24px;
      text-align: center;
      font-size: 15px;
      margin-bottom: 12px;
    }
    .mobile-menu a.cta { margin-top: 14px; }
    .mobile-menu .mm-foot {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(13,20,51,0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12.5px;
      color: rgba(13,20,51,0.7);
      font-weight: 400;
    }
    .mobile-menu .mm-foot strong { display: block; font-weight: 800; color: var(--ink); font-size: 14.5px; margin-bottom: 1px; }
    .mobile-menu .mm-social {
      display: flex; gap: 10px;
      margin-top: 14px;
    }
    .mobile-menu .mm-social a {
      width: 40px; height: 40px;
      padding: 0;
      border: 1px solid rgba(13,20,51,0.12);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--ink);
      transition: background .15s ease, color .15s ease;
    }
    .mobile-menu .mm-social a:hover { background: var(--ink); color: var(--bg); }

    @media (max-width: 820px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: inline-flex; }
    }
    @media (max-width: 380px) {
      .logo { font-size: 19px; gap: 10px; }
      .logo-mark { width: 36px; height: 36px; }
    }

    /* ============ buttons ============ */
    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 18px 30px;
      border-radius: 999px;
      font-weight: 700; font-size: 16px;
      transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
      border: 0; cursor: pointer;
      letter-spacing: -0.01em;
    }
    .btn-primary { background: var(--blue); color: var(--white); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(59, 96, 255, 0.38); }
    .btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 16px 28px; }
    .btn-ghost:hover { background: var(--ink); color: var(--bg); }
    .btn .arrow { transition: transform .2s ease; }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ============ hero ============ */
    .hero { padding: 36px 0 28px; position: relative; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--white);
      padding: 9px 18px;
      border-radius: 999px;
      font-weight: 700; font-size: 12px;
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 20px;
      border: 1px solid rgba(13,20,51,0.08);
    }
    .pulse {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.6); }
      70% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
      100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
    }
    .hero h1 {
      font-weight: 800;
      font-size: clamp(48px, 9vw, 132px);
      line-height: 1;
      letter-spacing: -0.045em;
      margin-bottom: 24px;
    }
    .hero h1 .pink  { color: var(--pink); }
    .hero h1 .blue  { color: var(--blue); }
    .hero h1 .gold  { color: var(--gold); }
    .hero h1 em {
      font-style: normal; position: relative;
      display: inline-block;
    }
    .hero h1 em::after {
      content: ""; position: absolute;
      left: 4%; right: 4%; bottom: 6%;
      height: 14%;
      background: var(--gold);
      z-index: -1;
      border-radius: 4px;
    }
    .hero-sub {
      font-size: clamp(15px, 1.4vw, 17px);
      max-width: 560px;
      margin-bottom: 24px;
      color: rgba(13,20,51,0.78);
      font-weight: 300;
      line-height: 1.6;
    }
    .hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .hero-trust {
      margin-top: 24px;
      display: flex; align-items: center; gap: 14px;
      font-size: 13px; font-weight: 600;
      color: rgba(13,20,51,0.7);
      flex-wrap: nowrap;
    }
    .hero-trust span:last-child { white-space: nowrap; }
    .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }

    /* ============ stats ============ */
    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin: 32px 0 48px;
    }
    @media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
    .stat-card {
      background: var(--white);
      border-radius: var(--r);
      padding: 24px 22px;
      border: 1px solid rgba(13,20,51,0.05);
      transition: transform .25s ease;
    }
    .stat-card:hover { transform: translateY(-4px); }
    .stat-card.invert { background: var(--ink); color: var(--bg); border-color: var(--ink); }
    .stat-card.gold { background: var(--gold); border-color: var(--gold); }
    .stat-card.pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
    .stat-num { font-weight: 800; font-size: clamp(30px, 4.5vw, 50px); line-height: 1; letter-spacing: -0.04em; margin-bottom: 6px; }
    .stat-label { font-weight: 400; font-size: 12.5px; opacity: 0.85; line-height: 1.4; }

    /* ============ section header ============ */
    .section { padding: 40px 0; }
    .section-head {
      display: flex; justify-content: space-between; align-items: end;
      gap: 32px; margin-bottom: 28px;
    }
    .section-head > div:first-child { min-width: 0; flex: 1; }
    @media (max-width: 720px) { .section { padding: 32px 0; } }
    .section-eyebrow {
      font-weight: 700; font-size: 12px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue); }
    .section-title {
      font-weight: 800; font-size: clamp(28px, 4vw, 56px);
      line-height: 1.05; letter-spacing: -0.035em;
    }
    .section-title .pink { color: var(--pink); }
    .section-title .blue { color: var(--blue); }
    .section-title .gold { color: var(--gold); }
    @media (max-width: 720px) { .section-head { flex-direction: column; align-items: start; } }

    /* ============ services slider ============ */
    .services-wrap { position: relative; }
    .services-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 4px 4px 16px;
      margin: -4px -4px 0;
      scrollbar-width: none;
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .svc {
      flex: 0 0 calc((100% - 32px) / 3);
      scroll-snap-align: start;
      min-width: 280px;
      background: var(--white);
      border-radius: var(--r);
      padding: 28px 24px;
      display: flex; flex-direction: column; gap: 16px;
      transition: transform .25s ease;
      border: 1px solid rgba(13,20,51,0.05);
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 800px) {
      .svc { flex: 0 0 86%; min-width: 0; }
    }
    .slider-controls {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 18px;
      gap: 16px;
    }
    .slider-dots {
      display: flex; gap: 8px;
      flex: 1;
      flex-wrap: wrap;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(13,20,51,0.18);
      border: 0; padding: 0; cursor: pointer;
      transition: background .2s ease, width .25s ease;
    }
    .slider-dot.active { background: var(--blue); width: 28px; border-radius: 999px; }
    .slider-arrows { display: flex; gap: 8px; flex-shrink: 0; }
    .slider-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid rgba(13,20,51,0.1);
      display: inline-grid; place-items: center;
      cursor: pointer;
      color: var(--ink);
      transition: background .15s ease, color .15s ease, border-color .15s ease;
    }
    .slider-arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
    .slider-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
    .slider-arrow:disabled:hover { background: var(--white); color: var(--ink); border-color: rgba(13,20,51,0.1); }
    @media (max-width: 600px) {
      .slider-arrows { display: none; }
    }
    .svc:hover { transform: translateY(-6px); }
    .svc.feat { background: var(--blue); color: var(--white); border-color: var(--blue); }
    .svc.feat .svc-price { color: var(--bg); }
    .svc.feat .svc-icon { background: var(--white); color: var(--blue); }
    .svc-icon {
      width: 56px; height: 56px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 16px;
      display: grid; place-items: center;
    }
    .svc-name { font-weight: 800; font-size: 22px; line-height: 1.15; letter-spacing: -0.025em; }
    .svc-desc { font-size: 14px; line-height: 1.6; opacity: 0.75; flex: 1; font-weight: 300; }
    .svc-price { font-weight: 800; font-size: 18px; display: flex; align-items: baseline; gap: 6px; }
    .svc-price small { font-weight: 500; font-size: 13px; opacity: 0.7; }
    .svc-tag {
      position: absolute; top: 28px; right: 28px;
      background: var(--pink); color: var(--white);
      font-weight: 800; font-size: 11px;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 12px; border-radius: 999px;
    }
    .svc-link {
      font-weight: 700; font-size: 13px;
      letter-spacing: -0.01em;
      color: var(--blue);
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-top: -4px;
      transition: color .15s ease;
    }
    .svc-link:hover { color: var(--ink); }
    .svc-link.feat-link { color: var(--bg); }
    .svc-link.feat-link:hover { color: var(--gold); }

    /* ============ how ============ */
    .how-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    @media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
    .step {
      background: var(--white);
      border-radius: var(--r);
      padding: 28px 26px;
      border: 1px solid rgba(13,20,51,0.05);
      position: relative;
    }
    .step:nth-child(1) .step-num { color: var(--blue); }
    .step:nth-child(2) .step-num { color: var(--pink); }
    .step:nth-child(3) .step-num { color: var(--gold); }
    .step-num {
      font-weight: 800; font-size: 72px;
      line-height: 0.85; letter-spacing: -0.06em;
      margin-bottom: 10px;
    }
    .step-title { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; }
    .step-desc { font-size: 14px; opacity: 0.75; line-height: 1.6; font-weight: 300; }

    /* ============ why (dark block) ============ */
    .why {
      background: var(--ink);
      color: var(--bg);
      border-radius: var(--r-lg);
      padding: 56px 24px;
      margin: 0 0 40px;
    }
    .why .section-eyebrow { color: var(--gold); }
    .why .section-eyebrow::before { background: var(--gold); }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      max-width: 1280px; margin: 0 auto;
    }
    @media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 700px) {
      .why-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 4px 4px 14px;
        margin: 0 -4px;
        scrollbar-width: none;
      }
      .why-grid::-webkit-scrollbar { display: none; }
      .why-item {
        flex: 0 0 78%;
        scroll-snap-align: start;
        min-width: 0;
      }
    }
    .why-item {
      display: flex; flex-direction: column; gap: 14px;
      padding: 22px;
      border-radius: var(--r-sm);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
    }
    .why-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--gold);
      display: grid; place-items: center;
      color: var(--ink);
    }
    .why-h { font-weight: 800; font-size: 16px; margin-bottom: 6px; letter-spacing: -0.015em; }
    .why-p { font-size: 13.5px; line-height: 1.6; opacity: 0.7; font-weight: 300; }

    /* ============ location ============ */
    .loc-grid {
      display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px;
    }
    @media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
    .loc-card {
      background: var(--white);
      border-radius: var(--r);
      padding: 36px 32px;
      border: 1px solid rgba(13,20,51,0.05);
    }
    .loc-h {
      font-weight: 800; font-size: clamp(28px, 3.5vw, 42px);
      line-height: 0.95; letter-spacing: -0.03em;
      margin-bottom: 22px;
    }
    .loc-row { display: flex; gap: 16px; margin: 20px 0; align-items: start; }
    .loc-row .loc-ico {
      flex-shrink: 0;
      width: 36px; height: 36px;
      background: var(--bg);
      border-radius: 10px;
      display: grid; place-items: center;
      color: var(--blue);
    }
    .loc-row strong { font-weight: 700; display: block; margin-bottom: 3px; font-size: 14px; }
    .loc-row span { font-weight: 300; opacity: 0.78; line-height: 1.6; font-size: 14px; }
    .loc-row a { color: var(--blue); }
    .loc-row a:hover { text-decoration: underline; }
    .zip-chips {
      display: flex; flex-wrap: wrap; gap: 6px;
      margin-top: 10px;
    }
    .zip-chip {
      display: inline-flex; align-items: center;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--bg);
      border: 1px solid rgba(59,96,255,0.18);
      color: var(--blue);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }
    @media (max-width: 540px) {
      .zip-chips { gap: 5px; }
      .zip-chip { font-size: 10.5px; padding: 3px 9px; }
    }

    .hours-card {
      background: var(--gold);
      border-radius: var(--r);
      padding: 36px 32px;
      color: var(--ink);
      display: flex; flex-direction: column;
    }
    .hours-card h3 { font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 16px; }
    .hours-list { list-style: none; flex: 1; }
    .hours-list li {
      display: flex; justify-content: space-between;
      padding: 11px 0;
      border-bottom: 1px solid rgba(13,20,51,0.14);
      font-weight: 500; font-size: 14px;
    }
    .hours-list li:last-child { border-bottom: 0; }
    .hours-list .day { font-weight: 700; }
    .hours-foot { margin-top: 20px; font-size: 12.5px; font-weight: 500; opacity: 0.8; }

    /* ============ final cta ============ */
    .cta-final {
      background: var(--pink);
      color: var(--white);
      border-radius: var(--r-lg);
      padding: clamp(40px, 6vw, 72px) 48px;
      text-align: center;
      margin: 0 0 40px;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before, .cta-final::after {
      content: ""; position: absolute;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      pointer-events: none;
    }
    .cta-final::before { top: -80px; left: -80px; }
    .cta-final::after { bottom: -100px; right: -60px; width: 280px; height: 280px; }
    .cta-final h2 {
      font-weight: 800; font-size: clamp(36px, 6vw, 80px);
      line-height: 0.92; letter-spacing: -0.04em;
      margin-bottom: 18px;
      position: relative;
    }
    .cta-final p {
      font-size: clamp(15px, 1.5vw, 18px);
      max-width: 560px; margin: 0 auto 28px;
      opacity: 0.92; position: relative;
    }
    .cta-final .cta-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
    .cta-final .btn-primary { background: var(--white); color: var(--pink); }
    .cta-final .btn-primary:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
    .cta-final .btn-ghost { color: var(--white); border-color: var(--white); }
    .cta-final .btn-ghost:hover { background: var(--white); color: var(--pink); }

    /* ============ footer ============ */
    footer {
      padding: 40px 0 28px;
      border-top: 1px solid rgba(13,20,51,0.08);
    }
    .footer-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 28px;
    }
    @media (max-width: 800px) {
      .footer-row { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
      .footer-brand { grid-column: span 2; }
    }
    .footer-brand p { font-size: 13.5px; opacity: 0.7; max-width: 380px; margin-top: 14px; line-height: 1.6; font-weight: 300; }
    .footer-col h4 { font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
    .footer-col a { display: block; font-size: 13.5px; padding: 5px 0; opacity: 0.72; transition: opacity .15s, color .15s; font-weight: 400; }
    .footer-social {
      display: flex; gap: 8px;
      margin-top: 12px;
    }
    .footer-social a {
      width: 36px; height: 36px;
      padding: 0;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--bg);
      border: 1px solid rgba(13,20,51,0.08);
      border-radius: 50%;
      color: var(--ink);
      opacity: 1;
      transition: background .15s ease, color .15s ease, border-color .15s ease;
    }
    .footer-social a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
    .footer-col a:hover { opacity: 1; color: var(--blue); }
    .footer-seo {
      padding: 20px 0;
      border-top: 1px solid rgba(13,20,51,0.08);
    }
    .footer-seo p {
      font-size: 12px;
      line-height: 1.7;
      opacity: 0.55;
      font-weight: 300;
      max-width: 1100px;
    }
    .footer-seo strong { font-weight: 600; opacity: 0.9; }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 18px;
      border-top: 1px solid rgba(13,20,51,0.08);
      font-size: 12.5px; opacity: 0.6;
      flex-wrap: wrap; gap: 14px;
      font-weight: 400;
    }

    /* ============ card-pay banner ============ */
    .cardpay {
      background: var(--white);
      border: 1px solid rgba(13,20,51,0.06);
      border-radius: var(--r-lg);
      padding: 28px 28px 24px;
      margin: 16px 0 0;
    }
    .cardpay-head {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 18px;
    }
    .cardpay-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(59,96,255,0.08);
      color: var(--blue);
      padding: 7px 14px;
      border-radius: 999px;
      font-weight: 700; font-size: 12px;
      letter-spacing: 0.06em; text-transform: uppercase;
      white-space: nowrap;
    }
    @media (max-width: 420px) {
      .cardpay-pill { font-size: 10.5px; padding: 6px 11px; gap: 6px; letter-spacing: 0.04em; }
    }
    .cardpay-pill svg { color: var(--blue); }
    .cardpay-title {
      font-weight: 800;
      font-size: 17px;
      letter-spacing: -0.015em;
    }
    .cardpay-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    }
    @media (max-width: 700px) {
      .cardpay-grid { grid-template-columns: 1fr; gap: 10px; }
      .cardpay { padding: 22px 22px 20px; }
    }
    .cardpay-cell {
      background: var(--bg);
      border-radius: var(--r-sm);
      padding: 18px 18px;
      display: flex; gap: 14px; align-items: flex-start;
    }
    .cardpay-cell .cp-ico {
      width: 38px; height: 38px;
      flex-shrink: 0;
      border-radius: 10px;
      background: var(--white);
      display: grid; place-items: center;
      color: var(--blue);
    }
    .cardpay-cell:nth-child(2) .cp-ico { color: var(--pink); }
    .cardpay-cell:nth-child(3) .cp-ico { color: var(--gold); background: var(--ink); }
    .cardpay-cell h4 {
      font-weight: 800; font-size: 14.5px;
      letter-spacing: -0.015em;
      margin-bottom: 4px;
    }
    .cardpay-cell p {
      font-weight: 300; font-size: 13px;
      line-height: 1.5; opacity: 0.72;
    }

    /* ============ pricing slider (matches services style) ============ */
    .pricing-wrap { position: relative; }
    .pricing-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 4px 4px 16px;
      margin: -4px -4px 0;
      scrollbar-width: none;
    }
    .pricing-grid::-webkit-scrollbar { display: none; }
    .price-svc {
      flex: 0 0 calc((100% - 32px) / 3);
      scroll-snap-align: start;
      min-width: 280px;
      background: var(--white);
      border-radius: var(--r);
      padding: 28px 24px;
      display: flex; flex-direction: column; gap: 14px;
      transition: transform .25s ease;
      border: 1px solid rgba(13,20,51,0.05);
      position: relative;
    }
    .price-svc:hover { transform: translateY(-4px); }
    .price-svc.feat {
      background: var(--ink);
      color: var(--bg);
      border-color: var(--ink);
    }
    @media (max-width: 800px) {
      .price-svc { flex: 0 0 86%; min-width: 0; }
    }
    .price-svc .price-tag {
      align-self: flex-start;
      font-weight: 800; font-size: 11px;
      background: var(--gold); color: var(--ink);
      padding: 5px 11px; border-radius: 999px;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .price-svc .price-discount {
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--pink); color: var(--white);
      padding: 5px 11px;
      border-radius: 999px;
      font-weight: 800; font-size: 10.5px;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .price-svc .price-name {
      font-weight: 800;
      font-size: 22px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }
    .price-svc .price-big {
      display: flex; align-items: baseline; gap: 8px;
      margin-top: -4px;
    }
    .price-svc .price-big .num {
      font-weight: 800;
      font-size: 44px;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--blue);
    }
    .price-svc.feat .price-big .num { color: var(--gold); }
    .price-svc .price-big .unit {
      font-weight: 500; font-size: 13px;
      opacity: 0.7;
    }
    .price-svc .price-list {
      list-style: none;
      flex: 1;
    }
    .price-svc .price-list li {
      display: flex; justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(13,20,51,0.08);
      font-size: 13.5px;
    }
    .price-svc.feat .price-list li { border-bottom-color: rgba(255,255,255,0.1); }
    .price-svc .price-list li:last-child { border-bottom: 0; }
    .price-svc .price-list .item { font-weight: 500; opacity: 0.85; }
    .price-svc .price-list .amt { font-weight: 800; color: var(--blue); white-space: nowrap; }
    .price-svc.feat .price-list .amt { color: var(--gold); }
    .price-svc .price-foot {
      margin-top: auto;
      font-size: 12.5px;
      opacity: 0.6;
      line-height: 1.5;
      font-weight: 300;
    }
    .price-svc.feat .price-foot { opacity: 0.7; }

    /* ============ compare battle ============ */
    .compare-battle {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    @media (max-width: 720px) {
      .compare-battle { grid-template-columns: 1fr; gap: 14px; }
    }
    .battle-card {
      border-radius: var(--r);
      padding: 32px 28px;
      display: flex; flex-direction: column;
      transition: transform .25s ease;
    }
    .battle-card.us {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 16px 40px rgba(59,96,255,0.22);
      transform: translateY(-4px);
    }
    .battle-card.them {
      background: var(--white);
      color: var(--ink);
      border: 1px solid rgba(13,20,51,0.08);
    }
    @media (max-width: 720px) {
      .battle-card.us { transform: none; }
    }
    .battle-head {
      display: flex; align-items: baseline; justify-content: space-between;
      gap: 12px;
      margin-bottom: 6px;
    }
    .battle-name {
      font-weight: 800; font-size: 22px;
      letter-spacing: -0.02em;
    }
    .battle-card.them .battle-name { color: rgba(13,20,51,0.55); }
    .battle-tag {
      font-weight: 800; font-size: 11px;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 999px;
    }
    .battle-card.us .battle-tag { background: var(--gold); color: var(--ink); }
    .battle-card.them .battle-tag { background: rgba(13,20,51,0.08); color: rgba(13,20,51,0.55); }
    .battle-price {
      font-weight: 800;
      font-size: 44px;
      letter-spacing: -0.04em;
      line-height: 1;
      margin: 6px 0 4px;
    }
    .battle-card.us .battle-price { color: var(--gold); }
    .battle-card.them .battle-price { color: rgba(13,20,51,0.55); }
    .battle-price small {
      display: inline-block;
      font-weight: 600; font-size: 14px;
      opacity: 0.7;
      letter-spacing: -0.01em;
      margin-left: 6px;
    }
    .battle-divider {
      height: 1px;
      background: rgba(255,255,255,0.18);
      margin: 18px 0;
    }
    .battle-card.them .battle-divider { background: rgba(13,20,51,0.08); }
    .battle-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .battle-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px;
      line-height: 1.4;
      font-weight: 500;
    }
    .battle-card.us .battle-list li { color: rgba(255,255,255,0.95); }
    .battle-card.them .battle-list li { color: rgba(13,20,51,0.55); }
    .battle-list .ico {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      display: inline-grid; place-items: center;
      margin-top: 1px;
    }
    .battle-card.us .battle-list .ico { background: var(--gold); color: var(--ink); }
    .battle-card.them .battle-list .ico { background: rgba(13,20,51,0.08); color: rgba(13,20,51,0.4); }

    /* ============ gallery ============ */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: 230px 230px;
      gap: 14px;
    }
    .gallery-cell {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      background: var(--ink);
    }
    .gallery-cell.tall { grid-row: span 2; }
    .gallery-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .gallery-cell:hover img { transform: scale(1.04); }
    .gallery-tag {
      position: absolute;
      bottom: 14px; left: 14px;
      background: rgba(13,20,51,0.85);
      backdrop-filter: blur(8px);
      color: var(--white);
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 700; font-size: 12.5px;
      letter-spacing: -0.005em;
      display: inline-flex; align-items: center; gap: 8px;
      white-space: nowrap;
      max-width: calc(100% - 28px);
    }
    @media (max-width: 540px) {
      .gallery-tag { font-size: 11.5px; padding: 6px 11px; gap: 6px; bottom: 10px; left: 10px; }
    }
    .gallery-tag::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold);
    }
    .gallery-cell.feat .gallery-tag { background: var(--blue); }
    .gallery-cell.feat .gallery-tag::before { background: var(--white); }
    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 180px 180px;
      }
      .gallery-cell.tall { grid-column: span 2; grid-row: span 1; }
    }
    @media (max-width: 540px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        gap: 10px;
      }
      .gallery-cell.tall { grid-column: span 1; grid-row: span 1; }
    }

    /* ============ reviews slider ============ */
    .reviews-wrap { position: relative; }
    .reviews-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 4px 4px 16px;
      margin: -4px -4px 0;
      scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
      flex: 0 0 calc((100% - 32px) / 3);
      scroll-snap-align: start;
      min-width: 300px;
      background: var(--white);
      border-radius: var(--r);
      padding: 28px;
      border: 1px solid rgba(13,20,51,0.05);
      display: flex; flex-direction: column;
      transition: transform .25s ease;
    }
    .review-card.feat {
      background: var(--ink);
      color: var(--bg);
      border-color: var(--ink);
    }
    @media (max-width: 900px) {
      .review-card { flex: 0 0 calc((100% - 16px) / 2); }
    }
    @media (max-width: 600px) {
      .review-card { flex: 0 0 86%; min-width: 0; padding: 24px; }
    }
    .review-stars {
      color: var(--gold);
      letter-spacing: 3px;
      font-size: 16px;
      margin-bottom: 18px;
    }
    .review-text {
      font-size: 14px;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 16px;
      letter-spacing: -0.005em;
      font-weight: 300;
    }
    .review-card.feat .review-text {
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: -0.015em;
      font-weight: 400;
    }
    .review-mark {
      font-weight: 800;
      font-size: 64px;
      line-height: 0.6;
      color: var(--blue);
      margin-bottom: -8px;
      font-family: Georgia, serif;
    }
    .review-card.feat .review-mark { color: var(--gold); }
    .reviewer {
      display: flex; align-items: center; gap: 14px;
      padding-top: 16px;
      border-top: 1px solid rgba(13,20,51,0.08);
    }
    .review-card.feat .reviewer { border-top-color: rgba(255,255,255,0.12); }
    .reviewer-av {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--bg);
      color: var(--blue);
      display: grid; place-items: center;
      font-weight: 800; font-size: 15px;
      flex-shrink: 0;
    }
    .review-card.feat .reviewer-av {
      background: var(--blue);
      color: var(--white);
    }
    .reviewer-name {
      font-weight: 800; font-size: 15px;
      letter-spacing: -0.015em;
      margin-bottom: 2px;
    }
    .reviewer-meta {
      font-size: 12px;
      opacity: 0.65;
      font-weight: 600;
    }
    .review-card.feat .reviewer-meta { opacity: 0.8; }
    .reviews-foot {
      margin-top: 24px;
      display: flex; align-items: center; gap: 14px;
      flex-wrap: wrap;
      font-size: 13.5px;
      color: rgba(13,20,51,0.7);
      font-weight: 600;
    }
    .reviews-foot .stars { color: var(--gold); letter-spacing: 2px; }
    .reviews-foot .google-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white);
      border: 1px solid rgba(13,20,51,0.08);
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 700; font-size: 12.5px;
      color: var(--ink);
    }
    .reviews-foot .google-g {
      width: 14px; height: 14px;
      border-radius: 50%;
      background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 25% 50%, #FBBC04 50% 75%, #EA4335 75%);
    }

    /* ============ faq ============ */
    .faq-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      align-items: start;
    }
    @media (max-width: 720px) {
      .faq-list { grid-template-columns: 1fr; }
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--r-sm);
      border: 1px solid rgba(13,20,51,0.05);
      overflow: hidden;
      transition: border-color .2s ease;
    }
    .faq-item.open { border-color: rgba(59,96,255,0.4); }
    .faq-q {
      width: 100%;
      background: none; border: 0; cursor: pointer;
      padding: 18px 22px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px;
      text-align: left;
      font-weight: 700;
      font-size: 15.5px;
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.35;
    }
    .faq-q:hover { color: var(--blue); }
    .faq-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--bg);
      color: var(--blue);
      display: grid; place-items: center;
      transition: transform .25s ease, background .2s ease, color .2s ease;
    }
    .faq-item.open .faq-icon {
      background: var(--blue);
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(13,20,51,0.72);
      font-weight: 300;
      transition: max-height .35s ease, padding .25s ease;
    }
    .faq-item.open .faq-a {
      max-height: 360px;
      padding: 0 22px 22px;
    }
    @media (max-width: 540px) {
      .faq-q { padding: 20px; font-size: 16px; }
      .faq-item.open .faq-a { padding: 0 20px 22px; }
      .faq-a { padding: 0 20px; font-size: 14.5px; }
    }

    /* ============ sticky mobile fab ============ */
    .mobile-fab {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0; right: 0;
      z-index: 90;
      background: rgba(255,255,255,0.92);
      backdrop-filter: saturate(180%) blur(16px);
      -webkit-backdrop-filter: saturate(180%) blur(16px);
      border-radius: 26px 26px 0 0;
      padding: 12px 14px calc(14px + env(safe-area-inset-bottom, 0));
      gap: 8px;
      box-shadow: 0 -8px 30px rgba(13,20,51,0.10);
      border-top: 1px solid rgba(13,20,51,0.06);
      opacity: 0;
      transform: translateY(110%);
      transition: opacity .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
      pointer-events: none;
    }
    .mobile-fab.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-fab .fab-primary {
      flex: 1;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px;
      background: var(--blue);
      color: var(--white);
      padding: 13px 14px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: -0.01em;
      text-decoration: none;
    }
    .mobile-fab .fab-icon {
      width: 46px; height: 46px;
      flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--ink);
      color: var(--bg);
      border-radius: 50%;
      text-decoration: none;
    }
    .mobile-fab .fab-icon.gold { background: var(--gold); color: var(--ink); }
    @media (max-width: 820px) {
      .mobile-fab { display: flex; }
      body.fab-active { padding-bottom: 88px; }
    }

    /* ============ utils ============ */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }
