    :root {
      color-scheme: dark;
      --bg: #000000;             /* page — pure black like apple.com dark */
      --bg-alt: #0a0a0a;          /* steps section / footer */
      --bg-card: #1d1d1f;         /* soft cards */
      --bg-card-2: #2c2c2e;       /* deeper cards / inputs */
      --bg-card-3: #3a3a3c;       /* deepest gray */
      --bg-dark: #1d1d1f;         /* feature / CTA panels */
      --bg-dark-2: #2c2c2e;
      --text: #f5f5f7;            /* off-white primary */
      --text-dim: #86868b;        /* Apple's mid gray */
      --text-inv: #f5f5f7;
      --text-inv-dim: rgba(245,245,247,.72);
      --text-on-accent: #1d1d1f;  /* always dark when sitting on an accent fill */
      --border: #2c2c2e;
      --link: #f5f5f7;
      --link-dark: #f5f5f7;
      --purple: #BF5AF2;          /* primary accent — Apple system purple */
      --purple-deep: #D7B4FE;     /* small accent text — soft pastel for readability */
      --radius: 22px;
      --radius-sm: 12px;
      --maxw: 1024px;
      --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.4; }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ---------- Nav ---------- */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(0,0,0,.72);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      height: 48px;
      display: flex; align-items: center;
    }
    .nav-inner {
      max-width: var(--maxw); width: 100%; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 22px;
      font-size: 14px;
    }
    .nav-brand {
      font-weight: 600; letter-spacing: -.015em;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .nav-brand .logo {
      width: 26px; height: 26px;
      color: var(--purple);
      display: inline-flex; align-items: center; justify-content: center;
    }
    .nav-brand .logo svg { width: 100%; height: 100%; display: block; }
    /* Reusable cycle mark */
    .gd-mark { display: block; }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a { color: var(--text); opacity: .85; transition: opacity .2s; }
    .nav-links a:hover { opacity: 1; }
    .nav-lang { display: flex; gap: 2px; align-items: center; font-size: 12px; }
    .nav-lang button {
      padding: 4px 10px; border-radius: 980px;
      color: var(--text-dim); font-weight: 500; letter-spacing: .02em;
      transition: background .2s, color .2s;
    }
    .nav-lang button.active { background: var(--purple); color: var(--text-on-accent); }

    /* ---------- Hero ---------- */
    .hero {
      padding: 80px 22px 64px;
      text-align: center;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .hero > * { position: relative; z-index: 1; }
    .hero-watermark {
      position: absolute;
      top: 26px; left: 50%;
      transform: translateX(-50%);
      width: 600px; max-width: 92%;
      color: var(--purple);
      opacity: .06;
      z-index: 0;
      pointer-events: none;
    }
    .hero-watermark svg { width: 100%; height: auto; display: block; }
    .eyebrow {
      font-size: 17px; color: var(--text-dim);
      letter-spacing: -.01em; margin-bottom: 8px;
    }
    .eyebrow strong { color: var(--text); font-weight: 500; }
    .hero h1 {
      font-size: clamp(44px, 7.5vw, 88px);
      letter-spacing: -.045em;
      font-weight: 700;
      line-height: 1.05;
      max-width: 880px; margin: 0 auto 16px;
    }
    .hero h1 .grad {
      background: linear-gradient(120deg, var(--purple) 0%, var(--purple-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .eyebrow { color: var(--purple-deep); font-weight: 500; }
    .eyebrow strong { color: var(--purple-deep); font-weight: 600; }
    .hero .sub {
      font-size: clamp(20px, 2.2vw, 26px);
      letter-spacing: -.015em;
      font-weight: 400;
      color: var(--text);
      max-width: 720px; margin: 0 auto 28px;
    }
    .hero-links {
      display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
      font-size: 19px; color: var(--purple-deep);
      letter-spacing: -.01em;
      font-weight: 500;
    }
    .hero-links a { transition: opacity .2s; }
    .hero-links a:hover { text-decoration: underline; }

    /* Hero canvas — abstract before/after visual */
    .hero-canvas {
      max-width: var(--maxw); margin: 56px auto 0;
      border-radius: var(--radius);
      overflow: hidden;
      background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
      border: 1px solid rgba(255,255,255,.05);
      padding: 56px 40px;
      position: relative;
    }
    .hero-canvas-grid {
      display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
    }
    .hc-col { text-align: center; }
    .hc-col .label {
      font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
      color: var(--text-dim); margin-bottom: 16px; font-weight: 600;
    }
    .hc-stack {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
      width: 220px; height: 140px; margin: 0 auto;
    }
    .hc-stack span {
      background: var(--text);
      border-radius: 3px;
      opacity: .85;
    }
    .hc-stack.before span:nth-child(1) { grid-column: 1; grid-row: 1/3; opacity: .9; }
    .hc-stack.before span:nth-child(2) { grid-column: 2; grid-row: 1/2; opacity: .75; }
    .hc-stack.before span:nth-child(3) { grid-column: 2; grid-row: 2/4; opacity: .65; }
    .hc-stack.before span:nth-child(4) { grid-column: 3; grid-row: 1/4; opacity: .85; }
    .hc-stack.before span:nth-child(5) { grid-column: 4; grid-row: 1/2; opacity: .55; }
    .hc-stack.before span:nth-child(6) { grid-column: 4; grid-row: 2/3; opacity: .7; }
    .hc-stack.before span:nth-child(7) { grid-column: 1/3; grid-row: 3/4; opacity: .8; }
    .hc-stack.before span:nth-child(8) { grid-column: 4; grid-row: 3/4; opacity: .9; }
    .hc-stack.after { background: transparent; }
    .hc-stack.after span { display: none; }
    .hc-stack.after::after {
      content: ""; grid-column: 1/-1; grid-row: 1/-1;
      border: 1.5px dashed rgba(245,245,247,.22);
      border-radius: 8px;
    }
    .hc-arrow {
      font-size: 32px; color: var(--text-dim); font-weight: 300;
    }

    /* ---------- Grid / cards ---------- */
    .grid {
      display: grid; gap: 12px;
      grid-template-columns: 1fr 1fr;
      max-width: var(--maxw); margin: 12px auto 0;
      padding: 0 22px;
    }
    .card {
      border-radius: var(--radius);
      padding: 56px 44px;
      position: relative; overflow: hidden;
      min-height: 560px;
      display: flex; flex-direction: column;
      transition: transform .35s cubic-bezier(.2,.7,.2,1);
    }
    .card:hover { transform: translateY(-3px); }
    .card-light { background: var(--bg-card); color: var(--text); }
    .card-dark { background: var(--bg-dark); color: var(--text-inv); }
    .card-tag {
      font-size: 13px; letter-spacing: .04em; font-weight: 700;
      text-transform: uppercase; margin-bottom: 14px;
      color: var(--purple-deep);
    }
    .card h2 {
      font-size: clamp(30px, 3.4vw, 42px);
      letter-spacing: -.03em;
      font-weight: 700;
      line-height: 1.08;
      margin-bottom: 14px;
      max-width: 380px;
    }
    .card-sub {
      font-size: 18px; letter-spacing: -.01em;
      line-height: 1.45;
      max-width: 420px;
      color: var(--text-dim);
    }
    .card-dark .card-sub { color: var(--text-dim); }
    .card-cta { margin-top: auto; padding-top: 36px; display: flex; gap: 22px; align-items: center; }
    .pill {
      display: inline-flex; align-items: center;
      background: var(--purple); color: var(--text-on-accent);
      padding: 8px 18px; border-radius: 980px;
      font-size: 15px; font-weight: 600;
      transition: transform .2s, box-shadow .2s;
      letter-spacing: -.005em;
    }
    .pill:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(191,90,242,.35); }
    .pill-light { background: var(--purple); color: var(--text-on-accent); }
    .link-arrow {
      color: var(--purple-deep); font-size: 17px;
      letter-spacing: -.005em;
      font-weight: 500;
    }
    .link-arrow:hover { text-decoration: underline; }
    .card-dark .link-arrow { color: var(--purple-deep); }

    /* Visual flourishes inside cards */
    .card-art {
      position: absolute; pointer-events: none;
      opacity: .14;
    }
    .card-art.house {
      right: -30px; bottom: -30px;
      width: 320px; height: 320px;
    }
    .card-art.box {
      right: -20px; bottom: -20px;
      width: 260px; height: 260px;
      opacity: .12;
    }
    .card-art.bldg {
      right: -10px; top: 50%; transform: translateY(-50%);
      width: 240px; height: 240px;
    }
    .card-art.tool {
      right: -10px; bottom: -10px;
      width: 240px; height: 240px;
    }

    /* Full-width feature card spans grid */
    .feature {
      grid-column: 1/-1;
      background: var(--bg-dark);
      color: var(--text-inv);
      border-radius: var(--radius);
      padding: 96px 56px;
      text-align: center;
      min-height: auto;
      position: relative; overflow: hidden;
    }
    .feature::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(700px 350px at 85% 5%, rgba(191,90,242,.32), transparent 60%),
        radial-gradient(600px 300px at 10% 95%, rgba(215,180,254,.18), transparent 60%);
      pointer-events: none;
    }
    .feature-inner { position: relative; }
    .feature h2 {
      font-size: clamp(40px, 5.5vw, 64px);
      letter-spacing: -.04em;
      margin-bottom: 18px;
      line-height: 1.05;
    }
    .feature p {
      font-size: 21px; color: var(--text-inv-dim);
      max-width: 640px; margin: 0 auto 28px;
      letter-spacing: -.01em;
    }
    .feature .hero-links { font-size: 21px; }
    .feature .hero-links a { color: var(--purple-deep); }

    /* ---------- Section headers ---------- */
    .section-head {
      max-width: var(--maxw); margin: 0 auto;
      padding: 120px 22px 40px;
    }
    .section-eyebrow {
      font-size: 14px; color: var(--purple-deep);
      letter-spacing: .04em; margin-bottom: 10px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .section-title {
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: -.035em;
      font-weight: 700;
      line-height: 1.07;
      max-width: 820px;
    }
    .section-title .dim { color: var(--text-dim); }

    /* ---------- Three column pillars ---------- */
    .three {
      max-width: var(--maxw); margin: 0 auto;
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 12px; padding: 0 22px;
    }
    .pillar {
      background: var(--bg-card);
      border-radius: var(--radius);
      padding: 44px 36px;
      min-height: 320px;
      display: flex; flex-direction: column;
    }
    .pillar-icon {
      width: 48px; height: 48px;
      margin-bottom: 28px;
      color: var(--text-on-accent);
      background: var(--purple);
      padding: 10px;
      border-radius: 14px;
      box-sizing: border-box;
    }
    .pillar h3 {
      font-size: 26px; letter-spacing: -.02em;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .pillar p { color: var(--text-dim); font-size: 17px; letter-spacing: -.005em; }

    /* ---------- Steps ---------- */
    .steps {
      background: var(--bg-alt);
      padding: 120px 22px;
      margin-top: 80px;
    }
    .steps-inner { max-width: var(--maxw); margin: 0 auto; }
    .steps-row {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 24px; margin-top: 56px;
    }
    .step { padding: 24px 0; }
    .step-num {
      font-size: 84px; font-weight: 700;
      letter-spacing: -.04em;
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 12px;
      line-height: 1;
    }
    .step h3 { font-size: 24px; margin-bottom: 8px; letter-spacing: -.02em; font-weight: 600; }
    .step p { color: var(--text-dim); font-size: 17px; letter-spacing: -.005em; }

    /* ---------- Zone ---------- */
    .zone {
      padding: 120px 22px 60px;
      text-align: center;
    }
    .zone .section-title { margin: 0 auto; }
    .zone-cities {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 5px; margin: 40px auto 0;
      max-width: 920px;
    }
    .chip {
      padding: 5px 11px; border-radius: 980px;
      background: var(--bg-card);
      font-size: 12.5px; letter-spacing: -.005em;
      line-height: 1.4;
      color: var(--text);
      transition: background .15s, color .15s;
      cursor: default;
      border: 1px solid transparent;
    }
    .chip:hover { background: var(--purple); color: var(--text-on-accent); }

    /* Hidden by default — kept in DOM for SEO via the classic clip technique */
    .chip.is-hidden,
    .zone-group-title.is-hidden {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
    .zone-group.is-empty { margin: 0; }
    .zone-prompt {
      text-align: center;
      margin: 40px auto 0;
      padding: 28px 22px;
      color: var(--text-dim);
      font-size: 15px;
      letter-spacing: -.005em;
      max-width: 480px;
    }

    .zone-sub {
      font-size: 19px;
      color: var(--text-dim);
      margin: 16px auto 0;
      max-width: 560px;
      letter-spacing: -.005em;
    }
    .zone-controls {
      max-width: 720px;
      margin: 48px auto 0;
    }
    .zone-search {
      position: relative;
      margin-bottom: 18px;
    }
    .zone-search-icon {
      position: absolute;
      left: 22px; top: 50%;
      transform: translateY(-50%);
      width: 18px; height: 18px;
      color: var(--text-dim);
      pointer-events: none;
    }
    .zone-search input {
      width: 100%;
      padding: 14px 22px 14px 52px;
      font-size: 16px;
      font-family: inherit;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text);
      border-radius: 980px;
      transition: border-color .2s, background .2s;
      letter-spacing: -.005em;
      -webkit-appearance: none;
    }
    .zone-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
    .zone-search input:focus {
      outline: none;
      border-color: var(--purple);
      background: var(--bg-card-2);
    }
    .zone-search input::placeholder { color: var(--text-dim); }
    .zone-tabs {
      display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
    }
    .zone-tab {
      padding: 8px 16px;
      border-radius: 980px;
      background: var(--bg-card);
      color: var(--text);
      font-size: 14px;
      letter-spacing: -.005em;
      font-family: inherit;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background .2s, color .2s, border-color .2s;
    }
    .zone-tab:hover { background: var(--bg-card-2); }
    .zone-tab.active {
      background: var(--purple); color: var(--text-on-accent);
      font-weight: 600;
    }
    .zone-groups {
      margin: 48px auto 0;
      max-width: var(--maxw);
    }
    .zone-group {
      margin-bottom: 24px;
    }
    .zone-group:last-child { margin-bottom: 0; }
    .zone-group-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--purple-deep);
      margin-bottom: 10px;
      font-weight: 700;
      text-align: center;
    }
    .zone-group .zone-cities { margin: 0 auto; }
    .zone-empty {
      text-align: center;
      padding: 56px 22px;
      color: var(--text-dim);
      font-size: 17px;
      letter-spacing: -.005em;
      max-width: 560px;
      margin: 0 auto;
    }
    .zone-empty a { color: var(--purple-deep); font-weight: 500; }
    .zone-footer {
      text-align: center;
      margin: 56px auto 0;
      font-size: 15px;
      color: var(--text-dim);
      letter-spacing: -.005em;
      max-width: 560px;
    }
    .zone-footer a { color: var(--purple-deep); font-weight: 500; }
    .zone-footer a:hover { text-decoration: underline; }

    /* ---------- CTA / Estimate ---------- */
    .cta {
      background: var(--bg-dark);
      color: var(--text-inv);
      padding: 120px 22px;
      text-align: center;
    }
    .cta h2 {
      font-size: clamp(40px, 6vw, 72px);
      letter-spacing: -.04em;
      margin-bottom: 18px;
      line-height: 1.05;
    }
    .cta .lead {
      font-size: 21px; color: var(--text-inv-dim);
      max-width: 540px; margin: 0 auto;
      letter-spacing: -.01em;
    }
    .cta .phone {
      font-size: clamp(28px, 4vw, 40px); font-weight: 700;
      letter-spacing: -.025em;
      margin: 36px 0 28px;
      display: inline-block;
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn {
      padding: 14px 28px; border-radius: 980px;
      font-size: 17px; font-weight: 600;
      transition: transform .2s, box-shadow .2s;
      letter-spacing: -.005em;
      display: inline-block;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--purple); color: var(--text-on-accent); }
    .btn-primary:hover { box-shadow: 0 6px 24px rgba(191,90,242,.4); }
    .btn-secondary { border: 1px solid rgba(245,245,247,.18); color: var(--text); background: transparent; }
    .btn-secondary:hover { border-color: rgba(245,245,247,.35); }

    /* Quote form */
    .quote {
      background: var(--bg-card);
      max-width: 540px; margin: 56px auto 0;
      border-radius: var(--radius);
      padding: 36px;
      text-align: left;
      color: var(--text);
    }
    .quote-row { margin-bottom: 14px; }
    .quote label {
      display: block; font-size: 12px; color: var(--text-dim);
      text-transform: uppercase; letter-spacing: .06em;
      margin-bottom: 6px; font-weight: 600;
    }
    .quote input, .quote textarea {
      width: 100%; padding: 12px 14px;
      border-radius: var(--radius-sm); border: 1px solid var(--border);
      background: var(--bg-card-2); font-family: inherit; font-size: 16px;
      color: var(--text);
      transition: border-color .2s, background .2s;
    }
    .quote input::placeholder, .quote textarea::placeholder { color: var(--text-dim); }
    .quote input:focus, .quote textarea:focus {
      outline: none; border-color: var(--purple); background: var(--bg-card-3);
    }
    .quote textarea { min-height: 92px; resize: vertical; }
    .quote button[type="submit"] {
      width: 100%; margin-top: 8px;
      background: var(--purple); color: var(--text-on-accent);
      padding: 14px; border-radius: 980px;
      font-size: 16px; font-weight: 600;
      transition: transform .2s, box-shadow .2s;
      letter-spacing: -.005em;
    }
    .quote button[type="submit"]:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(191,90,242,.4); }

    /* ---------- Footer ---------- */
    .footer {
      background: var(--bg-alt);
      padding: 36px 22px;
      font-size: 12px; color: var(--text-dim);
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      max-width: var(--maxw); margin: 0 auto;
      display: flex; justify-content: space-between; flex-wrap: wrap;
      gap: 16px; align-items: center;
    }
    .footer a:hover { color: var(--text); }
    .footer-brand {
      display: inline-flex; align-items: center; gap: 9px;
      color: var(--text); font-weight: 600; font-size: 14px;
      letter-spacing: -.01em;
    }
    .footer-brand .logo {
      width: 24px; height: 24px; color: var(--purple);
      display: inline-flex;
    }
    .footer-brand .logo svg { width: 100%; height: 100%; }

    /* ---------- Reveal animation ---------- */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ---------- Mobile ---------- */
    @media (max-width: 760px) {
      .nav-links { display: none; }
      .grid { grid-template-columns: 1fr; }
      .three { grid-template-columns: 1fr; }
      .steps-row { grid-template-columns: 1fr; gap: 8px; }
      .card { min-height: 460px; padding: 40px 28px; }
      .feature { padding: 64px 28px; }
      .hero { padding: 56px 18px 40px; }
      .hero-canvas { padding: 32px 20px; margin-top: 40px; }
      .hero-canvas-grid { grid-template-columns: 1fr; gap: 20px; }
      .hc-arrow { transform: rotate(90deg); }
      .step-num { font-size: 56px; }
      .section-head { padding: 80px 18px 32px; }
      .zone, .steps, .cta { padding-left: 18px; padding-right: 18px; padding-top: 80px; padding-bottom: 80px; }
      .footer-inner { flex-direction: column; text-align: center; }
    }

    /* ============================================================
       SERVICE PAGES — dropdown, mobile menu, sub-hero, lists, FAQ
       ============================================================ */

    /* ----- Services dropdown (desktop) ----- */
    .nav-dd { position: relative; }
    .nav-dd-trigger {
      display: inline-flex; align-items: center; gap: 5px;
      color: var(--text); opacity: .85; cursor: pointer;
      transition: opacity .2s; background: none; border: none;
      font: inherit; letter-spacing: inherit;
    }
    .nav-dd-trigger:hover, .nav-dd.open .nav-dd-trigger { opacity: 1; }
    .nav-dd-trigger .chev { width: 9px; height: 9px; opacity: .7; transition: transform .25s; }
    .nav-dd:hover .chev, .nav-dd.open .chev { transform: rotate(180deg); }
    .nav-dd-menu {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      padding-top: 14px; width: 360px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .22s ease, visibility .22s; z-index: 200;
    }
    .nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
    }
    .nav-dd-panel {
      background: rgba(22,22,24,.82);
      backdrop-filter: saturate(180%) blur(22px);
      -webkit-backdrop-filter: saturate(180%) blur(22px);
      border: 1px solid rgba(255,255,255,.09); border-radius: 18px;
      padding: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.55);
      display: grid; gap: 2px;
      transform: translateY(-6px); transition: transform .22s ease;
    }
    .nav-dd:hover .nav-dd-panel, .nav-dd.open .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel { transform: translateY(0); }
    .nav-dd-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; transition: background .15s; }
    .nav-dd-item:hover { background: rgba(255,255,255,.06); }
    .nav-dd-item .ic { width: 36px; height: 36px; flex: none; border-radius: 10px; background: rgba(191,90,242,.14); color: var(--purple); display: grid; place-items: center; }
    .nav-dd-item .ic svg { width: 20px; height: 20px; }
    .nav-dd-item .tx { display: flex; flex-direction: column; gap: 1px; }
    .nav-dd-item .tx strong { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -.01em; }
    .nav-dd-item .tx span { font-size: 12px; color: var(--text-dim); letter-spacing: -.005em; }
    .nav-dd-all { margin-top: 4px; padding: 12px; font-size: 13px; color: var(--purple-deep); font-weight: 500; border-top: 1px solid rgba(255,255,255,.07); }
    .nav-dd-all:hover { background: rgba(255,255,255,.05); border-radius: 0 0 10px 10px; }

    /* ----- Mobile burger + panel ----- */
    .nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; background: none; border: none; cursor: pointer; padding: 0; }
    .nav-burger span { height: 2px; width: 20px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
    .nav-mobile { display: none; }

    /* ----- Sub-hero (inner page) ----- */
    .subhero { position: relative; overflow: hidden; padding: 76px 22px 56px; text-align: center; border-bottom: 1px solid var(--border); }
    .subhero > * { position: relative; z-index: 1; }
    .subhero .hero-watermark { position: absolute; z-index: 0; opacity: .045; top: 50%; transform: translate(-50%, -50%); }
    .breadcrumb { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; letter-spacing: -.005em; }
    .breadcrumb a { color: var(--text-dim); transition: color .2s; }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb .sep { margin: 0 8px; opacity: .5; }
    .breadcrumb .current { color: var(--purple-deep); }
    .subhero .eyebrow { font-size: 14px; color: var(--purple-deep); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
    .subhero h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -.04em; font-weight: 700; line-height: 1.04; max-width: 840px; margin: 0 auto 18px; }
    .subhero h1 .grad { background: linear-gradient(120deg, var(--purple) 0%, var(--purple-deep) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .subhero .sub { font-size: clamp(18px, 2vw, 22px); color: var(--text); max-width: 660px; margin: 0 auto 30px; letter-spacing: -.01em; line-height: 1.45; }
    .subhero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .trust-line { margin-top: 22px; font-size: 14px; color: var(--text-dim); letter-spacing: -.005em; }
    .trust-line strong { color: var(--purple-deep); font-weight: 600; }

    /* ----- Centered section heads + sub ----- */
    .section-head.center { text-align: center; }
    .section-head.center .section-title { margin-left: auto; margin-right: auto; }
    .section-sub { color: var(--text-dim); font-size: 18px; margin-top: 14px; max-width: 640px; letter-spacing: -.005em; line-height: 1.5; }
    .section-head.center .section-sub { margin-left: auto; margin-right: auto; }

    /* ----- Feature list (what we haul) ----- */
    .feature-list-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
    .feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .feature-list .fitem { display: flex; align-items: flex-start; gap: 12px; background: var(--bg-card); border-radius: 14px; padding: 16px 18px; font-size: 15px; letter-spacing: -.005em; color: var(--text); transition: background .2s, transform .2s; }
    .feature-list .fitem:hover { background: var(--bg-card-2); transform: translateY(-2px); }
    .feature-list .fitem .check { width: 20px; height: 20px; flex: none; margin-top: 1px; color: var(--purple); }

    /* ----- Price band ----- */
    .priceband { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
    .priceband-inner { background: linear-gradient(135deg, rgba(191,90,242,.13), rgba(191,90,242,.03)); border: 1px solid rgba(191,90,242,.22); border-radius: var(--radius); padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
    .priceband-inner .txt { flex: 1 1 360px; }
    .priceband h2 { font-size: clamp(26px, 3vw, 34px); letter-spacing: -.025em; margin-bottom: 8px; }
    .priceband p { color: var(--text-dim); font-size: 17px; max-width: 560px; letter-spacing: -.005em; line-height: 1.5; }
    .priceband .btn { flex: none; }

    /* ----- FAQ ----- */
    .faq { max-width: 820px; margin: 0 auto; padding: 0 22px; }
    .faq details { border-bottom: 1px solid var(--border); }
    .faq summary { cursor: pointer; list-style: none; padding: 22px 4px; font-size: 19px; font-weight: 600; letter-spacing: -.015em; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .pm { width: 20px; height: 20px; flex: none; color: var(--purple); transition: transform .25s; }
    .faq details[open] summary .pm { transform: rotate(45deg); }
    .faq .ans { padding: 0 4px 24px; color: var(--text-dim); font-size: 16px; line-height: 1.6; letter-spacing: -.005em; max-width: 700px; }

    /* ----- Service page mobile ----- */
    @media (max-width: 760px) {
      .nav-dd, .nav-links { display: none; }
      .nav-burger { display: inline-flex; }
      .nav-mobile { display: flex; position: absolute; top: 48px; left: 0; right: 0; background: rgba(0,0,0,.97); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--border); flex-direction: column; padding: 4px 20px 16px; max-height: 0; overflow: hidden; transition: max-height .32s ease; }
      .nav.nav-open .nav-mobile { max-height: 86vh; overflow-y: auto; }
      .nav-mobile a { padding: 13px 4px; font-size: 17px; color: var(--text); border-bottom: 1px solid rgba(255,255,255,.06); letter-spacing: -.01em; }
      .nav-mobile a.sub { padding-left: 14px; font-size: 15px; color: var(--text-dim); }
      .nav-mobile a.sub::before { content: '› '; color: var(--purple-deep); }
      .nav-mobile .mlabel { padding: 16px 4px 6px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--purple-deep); font-weight: 700; }
      .nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
      .nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .feature-list { grid-template-columns: 1fr; }
      .priceband-inner { padding: 32px 24px; flex-direction: column; align-items: flex-start; text-align: left; }
      .subhero { padding: 48px 18px 40px; }
    }

    .nav-right { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   MOBILE-FIRST EXPERIENCE PASS  (append-only; desktop untouched)
   Ordered by impact. Keeps the #000 / #BF5AF2 Apple aesthetic.
   ============================================================ */

/* ---- 1. Global guards (base layer — protect every breakpoint) ---- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
/* clip (not hidden) so the sticky nav keeps working — hidden would make body a scroll container */
html { overflow-x: hidden; overflow-x: clip; }
html, body { max-width: 100%; }
body { overflow-wrap: break-word; }

/* Kill the gray tap-box on touch; feedback comes from :active below */
a, button, summary, .chip, .pill, .btn, .zone-tab, .nav-burger,
.nav-dd-trigger, .link-arrow, .faq summary, input, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Sticky-nav anchor offset so #estimate/#quote-form/etc. clear the bar */
:where(#top, #estimate, #quote-form, #services, #why, #zone) {
  scroll-margin-top: calc(48px + env(safe-area-inset-top) + 16px);
}

/* Notch / safe-area: nav grows under the status bar, footer clears the home-indicator */
.nav { padding-top: env(safe-area-inset-top); height: calc(48px + env(safe-area-inset-top)); }
.nav-inner {
  padding-left: max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
}
.footer { padding-bottom: calc(36px + env(safe-area-inset-bottom)); }

/* Body scroll-lock class toggled by app.js when the mobile menu is open */
body.nav-locked { overflow: hidden; }

/* ---- 2. Phone (<=760px): the intentional mobile layout ---- */
@media (max-width: 760px) {
  /* Softer corners at near-full-bleed width */
  :root { --radius: 18px; }

  /* Touch feedback (hover never fires on touch — give real press states) */
  .btn:active, .pill:active, .zone-tab:active, .chip:active,
  .nav-mobile a:active, .nav-lang button:active, .nav-burger:active,
  .link-arrow:active, .hero-links a:active, .footer-inner a:active,
  .cta .phone:active {
    opacity: .6; transform: scale(.98); transition: opacity .1s, transform .1s;
  }
  .faq summary:active { opacity: .7; }

  /* --- One shared 18px gutter on every section (was a 18/22 mismatch) --- */
  .grid, .three, .feature-list-wrap, .priceband, .faq {
    padding-left: 18px; padding-right: 18px;
  }

  /* --- Tighter, intentional vertical rhythm (was ~80-160px dead space) --- */
  .section-head { padding: 56px 18px 24px; }
  .zone, .cta { padding: 64px 18px; }
  .steps { padding: 64px 18px; margin-top: 0; }
  /* Neutralize the orphaned inline padding-top:120px on the 4 service pages */
  section[style*="padding-top:120px"] { padding-top: 64px !important; }

  /* --- Lift the value prop + primary CTA higher under the 48px nav --- */
  .hero { padding: 36px 18px 36px; }
  .hero .sub { margin-bottom: 22px; }
  .subhero { padding: 32px 18px 36px; }
  .subhero .sub { margin-bottom: 24px; }

  /* --- Cards: content-driven height (drop the forced 460px) --- */
  .card { min-height: 0; padding: 36px 26px; }
  .card-cta { padding-top: 28px; gap: 16px; }

  /* --- Mobile-intentional headline scale (vw term now active at 375px) --- */
  .hero h1      { font-size: clamp(34px, 9vw, 88px); }
  .subhero h1   { font-size: clamp(32px, 8.5vw, 72px); }
  .feature h2   { font-size: clamp(30px, 8vw, 64px); }
  .cta h2       { font-size: clamp(32px, 8.5vw, 72px); }
  .section-title{ font-size: clamp(28px, 7.5vw, 56px); }
  .card h2      { font-size: clamp(26px, 6.5vw, 42px); }
  .hero h1, .subhero h1, .cta h2, .feature h2 { letter-spacing: -.03em; }

  /* --- Body copy: comfortable sizes + looser line-height in a narrow column --- */
  .feature p, .cta .lead { font-size: 18px; line-height: 1.5; }
  .zone-sub { font-size: 17px; }
  .section-sub, .pillar p, .step p, .priceband p { font-size: 16px; line-height: 1.55; }
  .card-sub { font-size: 16px; line-height: 1.5; }

  /* --- Step number leads instead of overwhelming --- */
  .step-num { font-size: 44px; margin-bottom: 6px; }
  .step { padding: 16px 0; }
  .step h3 { font-size: 21px; }

  /* --- Micro-labels: nudge up, ease tracking for legibility --- */
  .zone-group-title { font-size: 12px; letter-spacing: .07em; }
  .hc-col .label, .nav-mobile .mlabel { letter-spacing: .06em; }
  .quote label { font-size: 12px; letter-spacing: .05em; }

  /* --- Before/after stack: fluid with a cap so it never nears the edge --- */
  .hc-stack { width: 100%; max-width: 220px; }

  /* ===== Touch targets ===== */

  /* FR/EN toggle — 44px hit box, pill stays visually compact */
  .nav-lang button {
    min-height: 44px; display: inline-flex; align-items: center;
    justify-content: center; padding: 0 12px; font-size: 13px;
  }
  .nav-right { gap: 6px; }

  /* Burger — full 44px box (bars stay 20px, already flex-centered) */
  .nav-burger { width: 44px; height: 44px; margin-right: -10px; }

  /* Region tabs + city chips — bigger, less cramped */
  .zone-tabs { gap: 8px; }
  .zone-tab { min-height: 44px; padding: 10px 16px; font-size: 15px; }
  .zone-cities { gap: 8px; }
  .chip { padding: 9px 14px; font-size: 14px; }

  /* Primary CTAs go full-width (the stated goal) */
  .cta-buttons, .subhero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-buttons .btn, .subhero-cta .btn, .priceband .btn { width: 100%; text-align: center; }
  .card-cta .pill { min-height: 44px; padding: 11px 22px; }

  /* Phone tel link — real tap height + tighter margins */
  .cta .phone { padding: 8px 4px; min-height: 44px; font-size: 30px; margin: 24px 0 20px; }

  /* Hero text-links + card arrows — own row, padded to ~44px */
  .hero-links { gap: 18px; flex-direction: column; }
  .hero-links a, .link-arrow { display: inline-block; padding: 10px 2px; }

  /* Footer contact links — stacked, padded, no adjacency mis-tap */
  .footer-inner a { display: inline-block; padding: 8px 4px; }
  .footer-inner > div:last-child { display: flex; flex-direction: column; gap: 6px; align-items: center; }

  /* Mobile nav links comfortably over 44px */
  .nav-mobile a { padding: 15px 4px; }
  .nav-mobile a.sub { padding-top: 15px; padding-bottom: 15px; }

  /* Mobile drawer: fully opaque (no hero bleed-through) + clears home-indicator */
  .nav-mobile { background: #000; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* ---- 3. Tablet tier (761-1023px): was an unhandled shrunk-desktop ---- */
@media (min-width: 761px) and (max-width: 1023px) {
  .three        { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .steps-row    { grid-template-columns: 1fr 1fr; gap: 20px; }
  .card         { min-height: 420px; padding: 44px 36px; }
  .feature      { padding: 72px 40px; }
  .priceband-inner { padding: 40px 36px; }
}

/* ---- 4. Reduced motion (accessibility — honor the OS setting) ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* ===================== SEO Footer ===================== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 64px 22px 0; font-size: 14px; color: var(--text-dim); }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1.1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text); font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-dim); transition: color .2s; letter-spacing: -.005em; }
.footer-col a:hover { color: var(--text); }
.footer-about { max-width: 360px; }
.footer-about .footer-brand { margin-bottom: 14px; }
.footer-tagline { color: var(--purple-deep); font-weight: 500; margin-bottom: 14px; letter-spacing: -.01em; }
.footer-about p { line-height: 1.6; margin-bottom: 12px; }
.footer-service-desc { display: block; font-size: 12px; color: #6e6e73; margin-top: 3px; line-height: 1.4; }
.footer-contact .ct { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; }
.footer-contact .ct svg { width: 18px; height: 18px; color: var(--purple); flex: none; margin-top: 1px; }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--purple-deep); }
.footer-zones { max-width: var(--maxw); margin: 44px auto 0; padding-top: 36px; border-top: 1px solid var(--border); }
.footer-zones h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text); font-weight: 600; margin-bottom: 16px; }
.footer-zones ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-zones a { display: inline-block; padding: 7px 13px; border-radius: 980px; background: var(--bg-card); color: var(--text-dim); font-size: 13px; letter-spacing: -.005em; transition: background .2s, color .2s; }
.footer-zones a:hover { background: var(--purple); color: var(--text-on-accent); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; border-top: 1px solid var(--border); padding: 22px 0 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer-bottom .legal { color: var(--text-dim); }
.footer-bottom .fb-region { color: #5a5a5e; }
@media (min-width: 761px) and (max-width: 1023px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 760px) {
  .footer { padding: 48px 18px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { max-width: none; }
  .footer-zones { margin-top: 32px; padding-top: 28px; }
  .footer-zones a { padding: 9px 14px; font-size: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
}

/* ===================== City pages ===================== */
.pillar-ic { display:inline-flex; width:48px; height:48px; margin-bottom:28px; color:var(--text-on-accent); background:var(--purple); padding:10px; border-radius:14px; box-sizing:border-box; }
.pillar-ic svg { width:100%; height:100%; }
.svc-links-wrap { max-width:var(--maxw); margin:0 auto; padding:0 22px; }
.svc-links { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.svc-links a { display:flex; gap:14px; align-items:flex-start; background:var(--bg-card); border-radius:var(--radius); padding:24px 26px; transition:background .2s, transform .2s; }
.svc-links a:hover { background:var(--bg-card-2); transform:translateY(-2px); }
.svc-links .ic { width:42px; height:42px; flex:none; border-radius:11px; background:rgba(191,90,242,.14); color:var(--purple); display:grid; place-items:center; }
.svc-links .ic svg { width:22px; height:22px; }
.svc-links .tx strong { display:block; font-size:17px; color:var(--text); letter-spacing:-.01em; margin-bottom:3px; }
.svc-links .tx span { font-size:14px; color:var(--text-dim); letter-spacing:-.005em; }
.nearby { max-width:var(--maxw); margin:0 auto; padding:0 22px; }
.nearby-list { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; list-style:none; }
.nearby-list a { display:inline-block; padding:9px 15px; border-radius:980px; background:var(--bg-card); color:var(--text-dim); font-size:14px; letter-spacing:-.005em; transition:background .2s,color .2s; }
.nearby-list a:hover { background:var(--purple); color:var(--text-on-accent); }
@media (max-width:760px){ .svc-links{ grid-template-columns:1fr; } }

/* ===================== Quote form states ===================== */
.quote-success { text-align: center; padding: 16px 4px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.quote-success svg { width: 44px; height: 44px; color: var(--purple); }
.quote-success p { color: var(--text); font-size: 16px; line-height: 1.5; letter-spacing: -.005em; max-width: 360px; margin: 0; }
.quote-error { color: #ff7a7a; font-size: 14px; margin-bottom: 12px; letter-spacing: -.005em; }

/* ===================== Hero before/after photos ===================== */
.hc-photo { display: block; width: 100%; max-width: 240px; height: 320px; object-fit: cover; object-position: center; border-radius: 16px; margin: 0 auto; box-shadow: 0 10px 34px rgba(0,0,0,.45); }
@media (max-width: 760px){ .hc-photo { max-width: 280px; height: 300px; } }

/* ===================== Estimate section (complete) ===================== */
.estimate-grid { max-width: 980px; margin: 44px auto 0; display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; text-align: left; align-items: start; }
.estimate-aside { display: flex; flex-direction: column; gap: 22px; }
.estimate-aside .phone { margin: 0; font-size: clamp(26px, 3.2vw, 34px); }
.aside-contacts { display: flex; flex-direction: column; gap: 15px; }
.aside-contacts .ac { display: flex; align-items: center; gap: 12px; color: var(--text); }
.aside-contacts .ac svg { width: 20px; height: 20px; color: var(--purple); flex: none; }
.aside-contacts a.ac:hover .ac-tx strong { color: var(--purple-deep); }
.ac-tx { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.ac-tx strong { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.ac-tx span { font-size: 13px; color: var(--text-dim); word-break: break-word; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 2px; padding-top: 20px; border-top: 1px solid var(--border); }
.trust-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); letter-spacing: -.005em; }
.trust-list svg { width: 18px; height: 18px; color: var(--purple); flex: none; }
.estimate-grid .quote { max-width: none; margin: 0; }
.quote-head { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 18px; letter-spacing: -.01em; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.quote-grid .quote-row { margin-bottom: 0; }
.quote select { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background-color: var(--bg-card-2); color: var(--text); font-family: inherit; font-size: 16px; -webkit-appearance: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.quote select:focus { outline: none; border-color: var(--purple); background-color: var(--bg-card-3); }
.quote-note { margin-top: 12px; font-size: 12px; color: var(--text-dim); text-align: center; letter-spacing: -.005em; }
@media (min-width: 761px) and (max-width: 1023px) { .estimate-grid { grid-template-columns: 1fr; max-width: 560px; gap: 28px; } }
@media (max-width: 760px) {
  .estimate-grid { grid-template-columns: 1fr; max-width: 540px; gap: 26px; }
  .estimate-aside { order: 2; }
  .estimate-grid .quote { order: 1; }
  .quote-grid { grid-template-columns: 1fr; }
}

/* ===================== Form: labels inside the field bubbles ===================== */
.quote .quote-row { position: relative; background: var(--bg-card-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px 7px; transition: border-color .2s, background .2s; }
.quote .quote-row:focus-within { border-color: var(--purple); background: var(--bg-card-3); }
.quote .quote-row label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; color: var(--text-dim); margin-bottom: 2px; }
.quote .quote-row input, .quote .quote-row textarea, .quote .quote-row select { width: 100%; background-color: transparent; border: none; border-radius: 0; padding: 0; color: var(--text); font-family: inherit; font-size: 16px; line-height: 1.4; outline: none; }
.quote .quote-row input::placeholder, .quote .quote-row textarea::placeholder { color: var(--text-dim); opacity: .75; }
.quote .quote-row textarea { min-height: 74px; resize: vertical; display: block; }
.quote .quote-row select { cursor: pointer; -webkit-appearance: none; appearance: none; padding-right: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; }

/* ===================== Lead-capture popup ===================== */
.gd-modal-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
.gd-modal-overlay.open { opacity: 1; visibility: visible; }
.gd-modal { position: relative; width: 100%; max-width: 410px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px; padding: 34px 30px 28px; box-shadow: 0 30px 90px rgba(0,0,0,.6); transform: translateY(14px) scale(.98); transition: transform .3s ease; max-height: 92vh; overflow-y: auto; }
.gd-modal-overlay.open .gd-modal { transform: none; }
.gd-modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-card-2); color: var(--text-dim); display: grid; place-items: center; cursor: pointer; border: none; transition: background .2s, color .2s; }
.gd-modal-close svg { width: 18px; height: 18px; }
.gd-modal-close:hover { background: var(--bg-card-3); color: var(--text); }
.gd-modal-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--purple-deep); font-weight: 700; margin-bottom: 8px; }
.gd-modal h3 { font-size: 26px; letter-spacing: -.03em; font-weight: 700; line-height: 1.1; margin-bottom: 8px; color: var(--text); }
.gd-modal p.sub { font-size: 15px; color: var(--text-dim); line-height: 1.5; margin-bottom: 20px; }
.gd-modal .quote { background: none; border: none; padding: 0; margin: 0; max-width: none; }
.gd-modal .quote .quote-row { margin-bottom: 12px; }
.gd-modal-alt { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text-dim); }
.gd-modal-alt a { color: var(--purple-deep); font-weight: 600; }
.gd-modal-alt a:hover { text-decoration: underline; }
@media (max-width: 560px) { .gd-modal { padding: 30px 22px 24px; border-radius: 20px; } .gd-modal h3 { font-size: 23px; } }

/* ---- Photo upload field ---- */
.quote-file { cursor: pointer; }
.quote-file input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.quote-file .file-cue { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 15px; line-height: 1.4; }
.quote-file .file-cue svg { width: 18px; height: 18px; color: var(--purple); flex: none; }
.quote-file.has-files .file-cue { color: var(--text); }

/* ---- Popup pixelated dissolve reveal ---- */
.gd-pixel-grid { position: absolute; inset: 0; display: grid; border-radius: inherit; overflow: hidden; pointer-events: none; z-index: 3; }
.gd-pixel-grid span { background: var(--bg-card); transition: opacity .3s linear; }
.gd-pixel-grid.clear span { opacity: 0; }
