:root {
      --ink: #151515;
      --muted: #5f6268;
      --line: #dedfe2;
      --paper: #ffffff;
      --soft: #f5f5f6;
      --pink: #e6007e;
      --pink-dark: #b70064;
      --teal: #008d87;
      --yellow: #ffd53d;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.55;
      letter-spacing: 0;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; letter-spacing: 0; }
    button, a { -webkit-tap-highlight-color: transparent; }
    [id] { scroll-margin-top: 98px; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }

    .offer-bar {
      min-height: 36px;
      display: grid;
      place-items: center;
      padding: 7px 16px;
      background: var(--yellow);
      color: #1d1d1d;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      height: 68px;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid rgba(21,21,21,.12);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      height: 100%;
      display: grid;
      grid-template-columns: 200px minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
    }
    .site-header .header-inner { width: min(1420px, calc(100% - 32px)); }
    .brand { justify-self: start; }
    .brand img { width: 190px; height: auto; }
    .desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
    .desktop-nav a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
    }
    .desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--pink); }
    .header-actions { display: grid; grid-template-columns: max-content max-content; grid-template-areas: "phone action" "email action"; align-items: center; justify-items: center; column-gap: 14px; row-gap: 1px; }
    .header-actions .phone-link { grid-area: phone; }
    .header-actions .email-link { grid-area: email; }
    .header-actions > .button { grid-area: action; }
    .phone-link, .email-link { font-size: 13px; font-weight: 850; line-height: 1.25; text-align: center; text-decoration: none; white-space: nowrap; }
    .phone-link:hover, .email-link:hover { color: var(--pink); }
    .nav-dropdown { position: relative; }
    .nav-drop-button {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 0;
      border: 0;
      background: transparent;
      color: var(--pink);
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      white-space: nowrap;
    }
    .nav-drop-button svg { width: 15px; transition: transform .18s ease; }
    .nav-dropdown:hover .nav-drop-button svg,
    .nav-dropdown:focus-within .nav-drop-button svg,
    .nav-dropdown.open .nav-drop-button svg { transform: rotate(180deg); }
    .nav-drop-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: 222px;
      display: none;
      padding: 9px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(0,0,0,.16);
    }
    .nav-dropdown:hover .nav-drop-menu,
    .nav-dropdown:focus-within .nav-drop-menu,
    .nav-dropdown.open .nav-drop-menu { display: grid; }
    .nav-drop-menu a { padding: 9px 10px; border-radius: 4px; font-size: 13px; }
    .nav-drop-menu a:hover, .nav-drop-menu a:focus-visible { background: #f8edf3; }
    .icon-button {
      width: 42px;
      height: 42px;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
    }
    .mobile-nav {
      display: none;
      position: fixed;
      z-index: 29;
      top: 104px;
      left: auto;
      right: 20px;
      width: min(360px, calc(100% - 40px));
      max-height: calc(100svh - 120px);
      overflow-y: auto;
      padding: 14px 20px 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 12px 24px rgba(0,0,0,.12);
    }
    .mobile-nav.open { display: grid; }
    .mobile-nav a { padding: 12px 4px; text-decoration: none; font-weight: 750; border-bottom: 1px solid #eee; }
    .mobile-nav-label { padding: 14px 4px 4px; color: var(--pink); font-size: 12px; font-weight: 900; text-transform: uppercase; }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 19px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 850;
      line-height: 1.15;
      text-decoration: none;
      cursor: pointer;
      transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
    }
    .button:hover { transform: translateY(-1px); }
    .button-primary { background: var(--pink); color: #fff; }
    .button-primary:hover { background: var(--pink-dark); }
    .button-dark { background: var(--ink); color: #fff; }
    .button-light { background: #fff; color: var(--ink); border-color: rgba(255,255,255,.8); }
    .button-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }

    .hero {
      position: relative;
      min-height: min(680px, calc(100svh - 138px));
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      color: #fff;
      background: #111 var(--hero-image) var(--hero-position, center) / cover no-repeat;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.84) 38%, rgba(7,7,8,.36) 70%, rgba(7,7,8,.08) 100%);
    }
    .member-hero, .media-left-hero { background: #111 var(--hero-image) center / cover no-repeat; }
    .member-hero::before, .media-left-hero::before {
      background: linear-gradient(270deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.82) 42%, rgba(7,7,8,.28) 72%, rgba(7,7,8,.06) 100%);
    }
    .premium-card-hero {
      background-position: right center;
      background-size: 112% auto;
    }
    .premium-card-hero::before {
      background: linear-gradient(270deg, rgba(7,7,8,.96) 0%, rgba(7,7,8,.91) 43%, rgba(7,7,8,.66) 50%, rgba(7,7,8,.12) 59%, rgba(7,7,8,.02) 72%, rgba(7,7,8,0) 100%);
    }
    .business-card-hero {
      background-position: right center;
      background-size: 112% auto;
    }
    .business-card-hero::before {
      background: linear-gradient(270deg, rgba(7,7,8,.97) 0%, rgba(7,7,8,.92) 43%, rgba(7,7,8,.64) 50%, rgba(7,7,8,.10) 59%, rgba(7,7,8,.01) 72%, rgba(7,7,8,0) 100%);
    }
    .member-hero .hero-copy, .media-left-hero .hero-copy {
      max-width: 610px;
      margin-left: auto;
    }
    .hero-inner { padding-block: 62px; }
    .hero-copy { max-width: 690px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 18px;
      color: #fff;
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--pink); }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 680px;
      margin-bottom: 18px;
      font-size: clamp(42px, 6vw, 74px);
      line-height: 1.01;
      font-weight: 900;
    }
    .hero-lead {
      max-width: 610px;
      margin-bottom: 24px;
      color: rgba(255,255,255,.92);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.45;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
    .proof-list { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0; padding: 0; list-style: none; }
    .proof-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 750; }
    .proof-list svg { width: 17px; color: var(--yellow); }

    .trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .trust-item {
      min-height: 96px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 22px;
      border-right: 1px solid var(--line);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-item svg { width: 25px; color: var(--teal); flex: 0 0 auto; }
    .trust-item strong { display: block; font-size: 14px; line-height: 1.25; }
    .trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

    .gallery-band { padding-block: 66px; background: #fff; }
    .gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
    .gallery-head .section-title { max-width: 760px; margin-bottom: 0; }
    .gallery-head p:last-child { max-width: 350px; margin: 0; color: var(--muted); }
    .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: 12px; }
    .gallery-item { position: relative; overflow: hidden; border-radius: 8px; background: #ececef; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
    .gallery-item:hover img { transform: scale(1.025); }
    .gallery-item figcaption {
      position: absolute; left: 10px; bottom: 10px;
      padding: 6px 9px; border-radius: 4px;
      background: rgba(12,12,13,.82); color: #fff;
      font-size: 12px; font-weight: 800;
      backdrop-filter: blur(6px);
    }
    .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
    .gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 5; }
    .gallery-item:nth-child(4), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 4; }
    .gallery-item:nth-child(7), .gallery-item:nth-child(8) { grid-column: span 6; }

    .section { padding-block: 82px; }
    .section-soft { background: var(--soft); }
    .section-dark { background: var(--ink); color: #fff; }
    .section-kicker { margin-bottom: 10px; color: var(--pink); font-size: 13px; font-weight: 850; text-transform: uppercase; }
    .section-title { margin-bottom: 16px; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; font-weight: 900; }
    .section-intro { max-width: 690px; margin-bottom: 38px; color: var(--muted); font-size: 18px; }
    .section-dark .section-intro { color: #b9bcc2; }

    .price-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 64px; align-items: center; }
    .price-table { border-top: 3px solid var(--ink); background: #fff; }
    .price-row {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 20px;
      padding: 24px 4px;
      border-bottom: 1px solid var(--line);
    }
    .price-row strong { display: block; font-size: 19px; }
    .price-row span { color: var(--muted); font-size: 13px; }
    .price { color: var(--pink); font-size: 36px; font-weight: 900; line-height: 1; }
    .price-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }

    .finish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .finish-card { overflow: hidden; border: 1px solid #303035; border-radius: 8px; background: #202024; }
    .finish-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
    .finish-copy { padding: 18px; }
    .finish-copy h3 { margin-bottom: 7px; font-size: 18px; }
    .finish-copy p { margin: 0; color: #b9bcc2; font-size: 13px; }

    .compat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: start; }
    .compat-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
    .compat-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px; background: #fff; }
    .compat-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 6px; background: #e6f5f4; color: var(--teal); }
    .compat-icon svg { width: 21px; }
    .compat-item h3 { margin-bottom: 3px; font-size: 17px; }
    .compat-item p { margin: 0; color: var(--muted); font-size: 13px; }
    .steps { counter-reset: step; display: grid; gap: 26px; }
    .step { counter-increment: step; display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
    .step::before {
      content: counter(step);
      width: 48px; height: 48px; display: grid; place-items: center;
      border: 2px solid var(--pink); border-radius: 50%; color: var(--pink); font-weight: 900;
    }
    .step h3 { margin: 1px 0 4px; font-size: 18px; }
    .step p { margin: 0; color: var(--muted); font-size: 14px; }

    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .quote-card { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
    .quote-card blockquote { margin: 0 0 20px; font-size: 16px; line-height: 1.65; }
    .quote-card cite { color: var(--muted); font-size: 13px; font-style: normal; font-weight: 800; }

    .quote-band { background: var(--pink); color: #fff; }
    .quote-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; align-items: start; }
    .quote-layout .section-kicker { color: var(--yellow); }
    .quote-layout .section-intro { color: rgba(255,255,255,.88); }
    .contact-shortcuts { display: grid; gap: 10px; margin-top: 24px; }
    .contact-shortcuts a { display: flex; align-items: center; gap: 9px; font-weight: 800; text-decoration: none; }
    .contact-shortcuts svg { width: 18px; }
    .quote-form { padding: 28px; border-radius: 8px; background: #fff; color: var(--ink); box-shadow: 0 20px 50px rgba(66,0,36,.22); }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: grid; gap: 6px; }
    .field-full { grid-column: 1 / -1; }
    .field label { font-size: 13px; font-weight: 800; }
    .field input, .field select, .field textarea {
      width: 100%; min-height: 48px; padding: 11px 12px;
      border: 1px solid #c9cbd0; border-radius: 5px; background: #fff; color: var(--ink);
    }
    .field textarea { min-height: 84px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(230,0,126,.16); border-color: var(--pink); }
    .honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
    .captcha-wrap { transform-origin: left top; }
    .form-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

    .faq-list { border-top: 1px solid var(--line); }
    details { border-bottom: 1px solid var(--line); }
    summary {
      position: relative; padding: 21px 44px 21px 0; list-style: none;
      font-size: 17px; font-weight: 850; cursor: pointer;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 8px; top: 16px; color: var(--pink); font-size: 26px; font-weight: 500; }
    details[open] summary::after { content: "-"; }
    details p { max-width: 820px; padding: 0 44px 22px 0; margin: 0; color: var(--muted); }

    .final-cta { padding-block: 54px; background: var(--yellow); }
    .final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .final-cta h2 { max-width: 700px; margin: 0; font-size: clamp(27px, 3.5vw, 42px); line-height: 1.1; font-weight: 900; }
    .site-footer { padding-block: 44px 84px; background: var(--ink); color: #fff; }
    .footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 40px; }
    .footer-logo {
      display: block;
      width: min(230px, 100%);
      height: auto;
      padding: 0 !important;
      border: 0;
      background: transparent !important;
      object-fit: contain;
    }
    .site-footer h3 { margin-bottom: 12px; font-size: 14px; text-transform: uppercase; }
    .site-footer p, .site-footer a { color: #b9bcc2; font-size: 14px; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: #fff; }
    .copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid #303035; color: #8f9298; font-size: 12px; }
    .mobile-cta { display: none; }

    .client-logo-strip { overflow: hidden; padding: 18px 0 20px; border-block: 1px solid var(--line); background: #f7f8fa; }
    .client-logo-title { margin: 0 0 14px; color: #8792ad; font-size: 11px; font-weight: 850; text-align: center; text-transform: uppercase; }
    .client-logo-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
    .client-logo-track { display: flex; width: max-content; animation: clientLogoScroll 32s linear infinite; }
    .client-logo-track:hover { animation-play-state: paused; }
    .client-logo-set { display: flex; align-items: center; gap: 52px; padding-right: 52px; }
    .client-logo-set img { width: auto; height: 46px; max-width: 132px; flex: 0 0 auto; object-fit: contain; }
    @keyframes clientLogoScroll { to { transform: translateX(-50%); } }

    .thank-hero { min-height: 390px; display: flex; align-items: center; background: #111114; color: #fff; border-bottom: 8px solid var(--pink); }
    .thank-hero-inner { max-width: 860px; padding-block: 56px; }
    .thank-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; border: 2px solid var(--yellow); border-radius: 50%; color: var(--yellow); }
    .thank-mark svg { width: 32px; height: 32px; }
    .thank-hero h1 { max-width: 760px; margin: 0 0 18px; font-size: clamp(44px,6vw,70px); line-height: 1.02; }
    .thank-hero p { max-width: 690px; margin: 0; color: #d7d7dc; font-size: 19px; }
    .thank-contact-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .thank-assurance { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 22px; }
    .thank-assurance span { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 800; }
    .thank-assurance svg { width: 19px; height: 19px; color: var(--yellow); }
    .thank-steps { display: grid; grid-template-columns: repeat(3,1fr); border-top: 2px solid var(--ink); }
    .thank-step { min-height: 210px; padding: 28px 24px; border-right: 1px solid var(--line); }
    .thank-step:last-child { border-right: 0; }
    .thank-step svg { width: 34px; height: 34px; margin-bottom: 34px; color: var(--teal); }
    .thank-step h2 { margin-bottom: 8px; font-size: 21px; }
    .thank-step p { margin: 0; color: var(--muted); font-size: 14px; }
    .thank-help-band { background: var(--yellow); }
    .thank-help-layout { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .thank-help-layout h2 { margin-bottom: 8px; font-size: clamp(30px,4vw,48px); }
    .thank-help-layout p { margin: 0; }

    @media (max-width: 1060px) {
      .desktop-nav, .phone-link, .email-link { display: none; }
      .header-inner { display: flex; justify-content: space-between; }
      .header-actions { display: flex; align-items: center; gap: 10px; }
      .icon-button { display: inline-flex; }
    }

    @media (max-width: 980px) {
      .price-layout, .compat-layout, .quote-layout { grid-template-columns: 1fr; gap: 38px; }
      .finish-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-grid { grid-template-columns: 1fr; }
      .gallery-head { display: block; }
      .gallery-head p:last-child { max-width: 650px; margin-top: 12px; }
    }

    @media (max-width: 700px) {
      .wrap { width: min(100% - 28px, var(--max)); }
      .offer-bar { font-size: 11px; }
      .site-header { height: 62px; }
      .brand img { width: 154px; }
      .phone-link { display: none; }
      .mobile-nav { top: 98px; right: 14px; width: min(360px, calc(100% - 28px)); }
      .client-logo-set { gap: 36px; padding-right: 36px; }
      .client-logo-set img { height: 38px; max-width: 112px; }
      .thank-hero-inner { padding-block: 46px; }
      .thank-assurance { display: grid; gap: 9px; }
      .thank-steps { grid-template-columns: 1fr; }
      .thank-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .thank-help-layout { display: block; }
      .thank-help-layout .button { margin-top: 22px; }
      .hero {
        min-height: min(620px, calc(100svh - 120px));
        align-items: flex-end;
        background-position: 56% center;
      }
      .hero::before { background: linear-gradient(180deg, rgba(7,7,8,.18) 0%, rgba(7,7,8,.72) 42%, rgba(7,7,8,.97) 100%); }
      .member-hero, .media-left-hero { background-position: left center; }
      .member-hero::before, .media-left-hero::before { background: linear-gradient(180deg, rgba(7,7,8,.18) 0%, rgba(7,7,8,.72) 42%, rgba(7,7,8,.97) 100%); }
      .premium-card-hero { background-position: 46% top; background-size: auto 78%; }
      .premium-card-hero::before { background: linear-gradient(180deg, rgba(7,7,8,.03) 0%, rgba(7,7,8,.18) 38%, rgba(7,7,8,.92) 68%, rgba(7,7,8,.99) 100%); }
      .business-card-hero { background-position: 46% top; background-size: auto 78%; }
      .business-card-hero::before { background: linear-gradient(180deg, rgba(7,7,8,.03) 0%, rgba(7,7,8,.18) 38%, rgba(7,7,8,.92) 68%, rgba(7,7,8,.99) 100%); }
      .member-hero .hero-copy, .media-left-hero .hero-copy { max-width: none; margin-left: 0; }
      .hero-inner { padding-block: 44px 36px; }
      h1 { font-size: clamp(39px, 12vw, 56px); }
      .hero-lead { font-size: 17px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .proof-list { gap: 8px 16px; }
      .gallery-band { padding-block: 48px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; gap: 8px; }
      .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
      .gallery-item figcaption { left: 7px; bottom: 7px; font-size: 11px; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .trust-item { min-height: 86px; padding: 14px 12px; }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .section { padding-block: 58px; }
      .section-title { font-size: 34px; }
      .section-intro { margin-bottom: 28px; font-size: 16px; }
      .finish-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .finish-copy { padding: 14px; }
      .finish-copy h3 { font-size: 15px; }
      .finish-copy p { font-size: 12px; }
      .form-grid { grid-template-columns: 1fr; }
      .field-full { grid-column: auto; }
      .quote-form { padding: 20px 16px; }
      .captcha-wrap { transform: scale(.88); margin-bottom: -8px; }
      .final-cta-inner { display: grid; }
      .footer-grid { grid-template-columns: 1fr; gap: 26px; }
      .site-footer { padding-bottom: 100px; }
      .mobile-cta {
        position: fixed; z-index: 40; left: 0; right: 0; bottom: 0;
        display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px);
      }
      .mobile-cta .button { min-height: 46px; padding-inline: 10px; font-size: 14px; }
    }

    @media (max-width: 380px) {
      .finish-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-auto-rows: 132px; }
      .captcha-wrap { transform: scale(.82); margin-bottom: -13px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
      .client-logo-track { animation: none; }
    }
