  /* ----- Hero ----- */
  .hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: 96px 0 0;
    isolation: isolate;
  }
  .hero-fade { display: none; }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("../images/hero-car-repaired-aligned.jpg");
    background-size: cover;
    background-position: center right;
  }
  .hero-bg-damaged {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/hero-car.png");
    background-size: cover;
    background-position: center right;
    animation: heroRepair 11s linear infinite;
  }
  @keyframes heroRepair {
    0%, 48%   { opacity: 1; }
    52%, 96%  { opacity: 0; }
    100%      { opacity: 1; }
  }
  .hero-bg::after {
    /* darken left side so headline reads; let the car show clearly on the right */
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg,
        rgba(11,11,12,0.92) 0%,
        rgba(11,11,12,0.78) 28%,
        rgba(11,11,12,0.35) 50%,
        rgba(11,11,12,0) 65%,
        rgba(11,11,12,0) 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 80px;
    min-height: 620px;
  }
  .hero-text { max-width: 640px; }

  /* Floating promise card over the photo (right side of hero) */
  .hero-badges {
    position: absolute;
    top: 50%;
    right: max(40px, calc((100vw - var(--max)) / 2 + 40px));
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
  }
  .promise-card {
    pointer-events: auto;
    position: relative;
    width: 340px;
    background: rgba(20, 20, 22, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 22px 22px 18px;
    color: #fff;
    box-shadow:
      0 30px 80px -20px rgba(0,0,0,.6),
      0 0 0 1px rgba(255,255,255,.04) inset,
      0 1px 0 rgba(255,255,255,.08) inset;
    overflow: hidden;
  }
  .promise-card-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(244,123,32,0.35), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
  }
  .promise-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    position: relative;
  }
  .promise-kicker .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(244,123,32,.2);
    animation: pulseDot 2.2s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(244,123,32,.2); }
    50%      { box-shadow: 0 0 0 7px rgba(244,123,32,.05); }
  }
  .promise-hero {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
  }
  .promise-amount {
    font-family: var(--display);
    font-weight: 900;
    font-size: 76px;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: #fff;
    background: linear-gradient(180deg, #fff 0%, #fff 55%, rgba(255,255,255,.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .promise-amount-sub {
    display: flex;
    flex-direction: column;
    padding-bottom: 6px;
    font-size: 13px;
    line-height: 1.25;
    color: rgba(255,255,255,.7);
    font-weight: 500;
  }
  .promise-amount-sub span:first-child {
    color: #fff;
    font-weight: 700;
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: -0.01em;
  }
  .promise-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
    margin: 0 -4px 16px;
  }
  .promise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.88);
    font-weight: 500;
    line-height: 1.35;
  }
  .promise-list .p-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(244,123,32,.18);
    color: var(--orange);
    display: grid; place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .promise-foot {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 14px;
    position: relative;
  }
  .promise-foot .rating {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .promise-foot .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--orange);
  }
  .promise-foot .stars svg { width: 13px; height: 13px; }
  .promise-foot .rating-text {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
  }
  .promise-foot .rating-text strong {
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
  }

  @media (max-width: 1180px) {
    .promise-card { width: 300px; padding: 18px 18px 16px; }
    .promise-amount { font-size: 64px; }
  }
  @media (max-width: 1080px) {
    .hero-badges { display: none; }
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 10px;
    border-radius: 999px;
    background: rgba(244,123,32,.12);
    border: 1px solid rgba(244,123,32,.35);
    color: var(--orange);
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .eyebrow .dot {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid; place-items: center;
    font-size: 14px;
    font-weight: 800;
  }
  .hero h1 {
    font-size: clamp(46px, 6.2vw, 86px);
    margin: 22px 0 22px;
    font-weight: 900;
  }
  .hero h1 .accent {
    color: var(--orange);
    display: inline-block;
  }
  .hero h1 .strike {
    position: relative;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
  }
  .hero h1 .strike::after {
    content: "";
    position: absolute;
    left: -4px; right: -4px;
    top: 55%;
    height: 7px;
    background: var(--orange);
    transform: rotate(-3deg);
    border-radius: 4px;
  }
  .hero .sub {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    max-width: 540px;
    margin-bottom: 36px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .hero-phone-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .hero-phone-block .small {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
  }
  .hero-phone-block .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: #fff;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line-dark);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
  }
  .trust-item .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(244,123,32,.18);
    color: var(--orange);
    display: grid; place-items: center;
  }

  /* Hero card / quote panel */
  .hero-card {
    position: relative;
    background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 8px;
  }
  .hero-card-media {
    position: relative;
    aspect-ratio: 4 / 3.1;
    border-radius: 12px;
    background:
      radial-gradient(circle at 30% 30%, rgba(244,123,32,.25), transparent 60%),
      linear-gradient(160deg, #2a2a2e, #111114);
    overflow: hidden;
    display: grid;
    place-items: center;
  }
  .hero-car {
    width: 88%;
    opacity: 0.95;
  }
  .hero-hail {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .badge-float {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .badge-float.top {
    top: 28px; right: 28px;
  }
  .badge-float.bottom {
    bottom: 28px; left: 28px;
  }
  .badge-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
  }
  .badge-float .stack {
    display: flex; flex-direction: column;
  }
  .badge-float .stack .lg {
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.1;
  }
  .badge-float .stack .sm {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .hero-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 14px 10px;
  }
  .hero-card-foot .label {
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .stars {
    display: flex;
    gap: 2px;
    color: var(--orange);
  }
  .review-line {
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
  }

  /* Hero stat strip */
  .stat-strip {
    background: var(--ink-2);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 0;
  }
  .stat-grid > div {
    padding: 36px 24px;
    border-right: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
  }
  .stat-grid > div:last-child { border-right: none; }
  .stat-grid .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    color: var(--orange);
    letter-spacing: -0.03em;
  }
  .od-col { display: inline-block; overflow: hidden; vertical-align: top; height: 1em; }
  .od-reel { display: block; will-change: transform; }
  .od-reel > span { display: block; }

  .stat-grid .lbl {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
  }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
    .hero { padding-top: 56px; }
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-grid > div:nth-child(2) { border-right: none; }
    .stat-grid > div:nth-child(1), .stat-grid > div:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  }

  /* ----- Hero mobile car block ----- */
  .hero-mobile-car { display: none; }
  @media (max-width: 860px) {
    /* Hide the desktop background car on mobile — car shows under the text */
    .hero-bg,
    .hero-bg-damaged { display: none; }
    .hero-bg::after { content: none; }
    .hero-fade { display: none; }

    .hero { padding: 28px 0 0; }
    .hero-grid {
      gap: 2px;
      padding-bottom: 0;
      min-height: 0;
    }
    .hero-text { max-width: 100%; }
    .hero h1 {
      font-size: clamp(30px, 8.4vw, 56px);
      margin: 14px 0 14px;
    }
    .hero .sub {
      font-size: 16px;
      margin-bottom: 20px;
    }
    .hero-actions {
      margin-bottom: 20px;
      gap: 10px;
      flex-wrap: nowrap;
    }
    .hero-actions .btn { flex: 1 1 0; min-width: 0; }
    .hero-actions .btn-primary { width: auto; justify-content: center; }
    .hero-actions .btn-white { justify-content: center; }
    .hero-phone-block { width: 100%; }
    .hero-trust {
      gap: 12px 20px;
      padding-top: 18px;
    }

    /* The mobile car block — full-bleed, blended into the page (no box) */
    .hero-mobile-car {
      display: block;
      margin-inline: calc(50% - 50vw);
      margin-top: 0;
    }
    .hero-mobile-car-inner {
      position: relative;
      height: clamp(240px, 64vw, 540px);
      width: 100%;
      overflow: visible;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%);
      mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 100%);
    }
    .hero-mobile-car-img {
      position: absolute;
      inset: 0;
      background-size: 150% auto;
      background-repeat: no-repeat;
      background-position: right bottom;
    }
    .hero-mobile-car-img.repaired {
      background-image: url("../images/hero-car-repaired-aligned.jpg");
    }
    .hero-mobile-car-img.damaged {
      background-image: url("../images/hero-car.png");
      animation: heroRepair 11s linear infinite;
    }
    .hero-mobile-car-inner::after {
      display: none;
    }
    .hero-mobile-badge {
      display: none;
    }
    .hero-mobile-badge.old {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      color: var(--ink);
      border-radius: 12px;
      padding: 10px 14px;
      box-shadow: 0 14px 30px -10px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.15);
      z-index: 2;
    }
    .hero-mobile-badge.top-right { top: 14px; right: 14px; }
    .hero-mobile-badge.bottom-left { bottom: 14px; left: 14px; }
    .hero-mobile-badge .badge-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--orange-soft);
      color: var(--orange);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .hero-mobile-badge .stack { display: flex; flex-direction: column; line-height: 1.05; }
    .hero-mobile-badge .stack .lg {
      font-family: var(--display);
      font-weight: 800;
      font-size: 15px;
      color: var(--ink);
    }
    .hero-mobile-badge .stack .sm {
      font-size: 10px;
      color: var(--gray-500);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }
  }
  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-trust .trust-item { font-size: 12px; }
    .hero-actions { flex-wrap: wrap; }
    .hero-actions .btn { flex: 1 1 140px; }
    .hero-actions .btn-lg { padding: 16px 18px; font-size: 15px; }
  }
  @media (max-width: 390px) {
    .hero-actions { flex-direction: column; align-items: stretch; flex-wrap: nowrap; }
    .hero-actions .btn { flex: 1 1 auto; width: 100%; }
  }

  /* ----- Section base ----- */
  section.bleed { padding: 110px 0; }
  @media (max-width: 860px) { section.bleed { padding: 56px 0; } }
  @media (max-width: 480px) { section.bleed { padding: 36px 0; } }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    margin-bottom: 64px;
  }
  @media (max-width: 860px) { .section-head { margin-bottom: 28px; } }
  @media (max-width: 480px) { .section-head { margin-bottom: 20px; } }
  .section-head .kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .section-head .kicker::before,
  .section-head .kicker::after {
    content: "";
    width: 22px; height: 1px;
    background: var(--orange);
    display: inline-block;
  }
  .section-head h2 {
    font-size: clamp(32px, 4vw, 52px);
    max-width: 760px;
  }
  .section-head p {
    max-width: 620px;
    font-size: 17px;
    color: var(--gray-500);
  }

  /* ----- How it works ----- */
  .steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
  }
  .step {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease;
  }
  .step .step-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ink-2);
    box-shadow: 0 12px 30px rgba(11,11,12,.12);
    transition: box-shadow .25s ease;
  }
  .step .step-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .step .step-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,12,0) 55%, rgba(11,11,12,.35) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .step .num {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(244,123,32,.45);
    transition: transform .25s ease;
  }
  .step h3 {
    font-size: 18px;
    margin: 18px 0 7px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .step p {
    font-size: 14px;
    color: var(--gray-500);
  }
  .step.active {
    transform: translateY(-6px);
  }
  .step.active .step-media {
    box-shadow: 0 20px 44px rgba(244,123,32,.28);
  }
  .step.active .num {
    transform: scale(1.08);
  }

  /* ----- How it works: dark variant ----- */
  #process.process-dark {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  #process.process-dark::before {
    content: "";
    position: absolute;
    top: -180px; left: 50%;
    transform: translateX(-50%);
    width: 720px; height: 480px;
    background: radial-gradient(ellipse at center, rgba(244,123,32,.12), transparent 70%);
    pointer-events: none;
  }
  #process.process-dark .container { position: relative; z-index: 1; }
  #process.process-dark .section-head h2 { color: #fff; }
  #process.process-dark .section-head p { color: var(--gray-400); }
  #process.process-dark .step h3 { color: #fff; }
  #process.process-dark .step p { color: var(--gray-400); }
  #process.process-dark .step .step-media {
    background: var(--ink-3);
    box-shadow: 0 14px 34px rgba(0,0,0,.45);
  }
  #process.process-dark .step.active .step-media {
    box-shadow: 0 22px 48px rgba(244,123,32,.30);
  }

  @media (max-width: 1000px) {
    .steps { grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
  }
  @media (max-width: 620px) {
    .steps { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  }
  @media (max-width: 400px) {
    .steps { grid-template-columns: 1fr; }
  }

  /* ----- Why us ----- */
  .why-section { background: var(--gray-50); }
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .benefit {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
  }
  .benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -24px rgba(11,11,12,.15);
    border-color: var(--gray-300);
  }
  .benefit .b-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .benefit h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .benefit p {
    color: var(--gray-500);
    font-size: 15px;
  }
  .benefit.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .benefit.featured p { color: rgba(255,255,255,.75); }
  .benefit.featured .b-icon {
    background: rgba(244,123,32,.18);
    color: var(--orange);
  }

  /* Image-based benefit (replaces the small icon with a full media area) */
  .benefit.has-media { padding: 0; display: flex; flex-direction: column; }
  .benefit.has-media .b-media {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: #000;
  }
  .benefit.has-media .b-body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  @media (max-width: 900px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .benefit-grid { grid-template-columns: 1fr; }
  }

  /* ----- Insurance partners ----- */
  .insurance-section { padding: 80px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
  @media (max-width: 860px) { .insurance-section { padding: 48px 0; } }
  @media (max-width: 480px) { .insurance-section { padding: 32px 0; } }
  .insurance-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .insurance-head .lbl {
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-500);
  }
  .insurance-head h3 {
    font-size: 26px;
    margin-top: 10px;
    color: var(--ink);
  }
  .logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoScroll 38s linear infinite;
  }
  .logo-track .ins-logo { margin-right: 64px; }
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
  @keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .logo-track { animation-duration: 60s; }
  }
  .ins-logo {
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--gray-700);
    letter-spacing: -0.01em;
    border-radius: var(--radius);
    transition: background .15s ease, color .15s ease;
    text-align: center;
    padding: 0 2px;
  }
  .ins-logo:hover { background: var(--gray-100); color: var(--ink); }
  .ins-logo .sym { display: block; font-size: 11px; color: var(--gray-400); font-weight: 500; margin-top: 2px; }
  .ins-logo img { height: 40px; width: auto; max-width: 300px; object-fit: contain; display: block; }
  .ins-logo.has-img { flex-direction: column; gap: 4px; }
  @media (max-width: 980px) {
    .logo-track .ins-logo { margin-right: 48px; }
  }
  @media (max-width: 520px) {
    .ins-logo img { height: 30px; }
    .logo-track .ins-logo { margin-right: 36px; }
  }

  /* ----- Services ----- */
  .services-section {
    background: var(--white);
    color: var(--ink);
    position: relative;
    overflow: hidden;
  }
  .services-section .section-head h2 { color: var(--ink); }
  .services-section .section-head p { color: var(--gray-500); }
  .services-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
  }
  .service {
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    width: 100%;
    color: inherit;
    font: inherit;
  }
  .service:hover {
    border-color: rgba(244,123,32,.45);
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -30px rgba(11,11,12,.45);
  }
  .service:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }
  .service .s-media {
    width: 100%;
    height: 220px;
    background: linear-gradient(160deg, #2a2a2e, #0e0e10);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .service .s-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .service .s-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .service h3 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #fff;
  }
  .service p {
    font-size: 15px;
    color: rgba(255,255,255,.82);
  }
  .service .tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(244,123,32,.15);
    color: var(--orange);
    font-size: 11px;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .service.featured {
    background: linear-gradient(180deg, #2A1A0D, #1A1108);
    border-color: rgba(244,123,32,.35);
  }
  .service.featured .s-media {
    background: linear-gradient(160deg, #3a230f, #1a1108);
  }
  .service.featured h3 { font-size: 28px; }
  .service.featured p { color: rgba(255,255,255,.8); font-size: 15px; }
  .service .tag {
    margin-top: 0;
    margin-bottom: 12px;
    align-self: flex-start;
  }
  .service ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .service ul li {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service ul li::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--orange);
  }
  @media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service .s-media { height: 200px; }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .service .s-media { height: 220px; }
  }

  /* ----- Results / Case studies ----- */
  .results-section { background: #fff; }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .case {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .case:hover { transform: translateY(-4px); box-shadow: 0 32px 60px -28px rgba(11,11,12,.2); }
  .case-img {
    aspect-ratio: 16/10;
    background: linear-gradient(160deg, #2a2a2e, #0e0e10);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
  }
  .case-img .placeholder {
    color: rgba(255,255,255,.4);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--display);
  }
  .case-img .ba {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .case-img .saved {
    position: absolute;
    bottom: 16px; right: 16px;
    background: var(--orange);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.1;
    text-align: right;
  }
  .case-img .saved .lg { display: block; font-size: 22px; }
  .case-img .saved .sm { display: block; font-size: 10px; opacity: 0.9; letter-spacing: 0.1em; text-transform: uppercase; }
  .case-img .ba-split {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: rgba(255,255,255,.55);
    z-index: 2;
  }
  .case-img.zoomable { cursor: zoom-in; }
  .case-img .zoom-hint {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(11,11,12,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    display: grid; place-items: center;
    opacity: 0;
    transform: scale(.82);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
  }
  .case-img .zoom-hint svg { width: 18px; height: 18px; }
  .case:hover .case-img .zoom-hint,
  .case-img:focus-visible .zoom-hint { opacity: 1; transform: scale(1); }
  .case-img:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
  @media (hover: none) {
    .case-img .zoom-hint { opacity: 1; transform: scale(1); }
  }
  /* Narrow cards: move the saved badge up so it clears the bottom before/after tags */
  @media (max-width: 520px) {
    .case-img .saved { top: 14px; right: 14px; bottom: auto; }
    .case-img .zoom-hint { top: auto; bottom: 14px; right: 14px; }
  }

  /* before/after image lightbox */
  .ba-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 40px;
    background: rgba(8,8,9,.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
  }
  .ba-lightbox.show { opacity: 1; visibility: visible; }
  .ba-lightbox-inner {
    margin: 0;
    max-width: min(1180px, 94vw);
    transform: scale(.96);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
  }
  .ba-lightbox.show .ba-lightbox-inner { transform: none; }
  .ba-lightbox img {
    width: 100%;
    height: auto;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
    display: block;
  }
  .ba-lightbox figcaption {
    margin-top: 18px;
    text-align: center;
    color: rgba(255,255,255,.78);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.5;
  }
  .ba-lightbox figcaption .cap-meta {
    display: block;
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .ba-lightbox figcaption .cap-tags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .ba-lightbox figcaption .cap-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .ba-lightbox figcaption .cap-before { color: rgba(255,255,255,.6); }
  .ba-lightbox figcaption .cap-after { color: var(--orange); }
  .ba-lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .15s ease;
  }
  .ba-lightbox-close:hover { background: rgba(255,255,255,.2); }
  .ba-lightbox-close svg { width: 22px; height: 22px; }
  body.ba-open { overflow: hidden; }
  @media (max-width: 560px) {
    .ba-lightbox { padding: 24px 16px; }
    .ba-lightbox-close { top: 16px; right: 16px; }
  }
  .case-body { padding: 24px; }
  .case-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .case-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); }
  .case h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .case .quote {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 18px;
  }
  .case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
  }
  .case-stats div { display: flex; flex-direction: column; }
  .case-stats .v {
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    color: var(--ink);
  }
  .case-stats .l {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-top: 2px;
  }
  @media (max-width: 920px) {
    .results-grid { grid-template-columns: 1fr; }
  }

  /* ----- Video Blog ----- */
  .videoblog-section {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .videoblog-section::before {
    content: "";
    position: absolute;
    top: -160px; left: -120px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,123,32,.14), transparent 70%);
    pointer-events: none;
  }
  .videoblog-section .container { position: relative; z-index: 1; }
  .videoblog-section .section-head h2 { color: #fff; }
  .videoblog-section .section-head p { color: rgba(255,255,255,.7); }

  .vb-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 24px;
  }
  .vb-arrow {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .15s ease, opacity .15s ease;
  }
  .vb-arrow:hover { background: var(--ink-3); border-color: rgba(244,123,32,.5); transform: translateY(-1px); }
  .vb-arrow:disabled { opacity: .3; cursor: default; transform: none; border-color: var(--line-dark); background: var(--ink-2); }
  .vb-arrow svg { width: 20px; height: 20px; }

  .vb-slider { position: relative; overflow: hidden; }
  .vb-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    overflow-y: hidden;
  }
  .vb-track::-webkit-scrollbar { display: none; }
  .vb-card {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 54px) / 4);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease;
  }
  .vb-card:hover {
    border-color: rgba(244,123,32,.45);
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
  }
  .vb-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

  .vb-thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    background:
      radial-gradient(circle at 70% 25%, rgba(244,123,32,.22), transparent 55%),
      linear-gradient(160deg, #2a2a2e, #0e0e10);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  /* stripe placeholder when no poster set */
  .vb-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 12px, transparent 12px 24px);
    opacity: 1;
  }
  .vb-thumb.has-poster::before { display: none; }
  .vb-thumb-label {
    position: absolute;
    left: 16px; bottom: 16px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    z-index: 1;
  }
  .vb-thumb.has-poster .vb-thumb-label { display: none; }
  .vb-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,11,12,.6) 100%);
    pointer-events: none;
  }
  .vb-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px -8px rgba(244,123,32,.7);
    transition: transform .2s ease, background .15s ease;
    z-index: 2;
  }
  .vb-card:hover .vb-play { transform: translate(-50%, -50%) scale(1.08); background: var(--orange-dark); }
  .vb-play svg { width: 24px; height: 24px; margin-left: 3px; }
  .vb-duration {
    position: absolute;
    bottom: 12px; right: 12px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 7px;
    background: rgba(11,11,12,.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.02em;
  }
  .vb-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(244,123,32,.92);
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .vb-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
  }
  .vb-body h3 {
    font-size: 16px;
    color: #fff;
    line-height: 1.25;
  }
  .vb-body p {
    font-size: 13.5px;
    color: rgba(255,255,255,.62);
  }
  .vb-meta {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-400);
  }
  .vb-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-700); }

  @media (max-width: 980px) {
    .vb-card { flex: 0 0 calc((100% - 36px) / 3); }
  }
  @media (max-width: 720px) {
    .vb-card { flex: 0 0 calc((100% - 18px) / 2); }
  }
  @media (max-width: 460px) {
    .vb-card { flex: 0 0 78%; }
  }

  /* video lightbox */
  .vb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(8,8,9,.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
  }
  .vb-lightbox.show { opacity: 1; visibility: visible; }
  .vb-lightbox-inner {
    position: relative;
    width: max-content;
    max-width: 92vw;
    transform: translateY(14px) scale(.98);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
  }
  .vb-lightbox.show .vb-lightbox-inner { transform: none; }
  .vb-stage {
    position: relative;
    width: min(56.25vh, 92vw);
    height: min(82vh, 163.5vw);
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    box-shadow: 0 50px 120px -30px rgba(0,0,0,.8);
  }
  .vb-stage iframe,
  .vb-stage video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: contain;
    background: #000;
  }
  .vb-lightbox-close {
    position: absolute;
    top: -52px; right: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .15s ease;
  }
  .vb-lightbox-close:hover { background: rgba(255,255,255,.18); }
  .vb-lightbox-close svg { width: 20px; height: 20px; }
  body.vb-open { overflow: hidden; }
  @media (max-width: 560px) {
    .vb-lightbox { padding: 16px; }
    .vb-lightbox-close { top: -48px; }
  }

  /* ----- Photo Estimate ----- */
  .estimate-section {
    scroll-margin-top: 100px;
    background:
      linear-gradient(180deg, rgba(15,18,24,.62) 0%, rgba(15,18,24,.52) 45%, rgba(15,18,24,.78) 100%),
      url("../images/storm-sky4.png") center top / cover no-repeat,
      var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .estimate-section::before {
    content: "";
    position: absolute;
    bottom: -160px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,123,32,.14), transparent 70%);
    pointer-events: none;
  }
  .estimate-section .container { position: relative; z-index: 1; }
  .estimate-section .section-head h2 { color: #fff; }
  .estimate-section .section-head p { color: rgba(255,255,255,.7); }

  /* Two columns: big car left, form right */
  .estimate-wrap {
    display: grid;
    grid-template-columns: 3.4fr minmax(380px, 1fr);
    gap: 16px;
    align-items: center;
  }

  /* Hail-on-car visual */
  .estimate-media {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  .car-stage {
    position: relative;
    display: inline-block;
    width: calc(100% + 320px);
    margin-left: -320px;
    line-height: 0;
    transform: translateX(-118%);
    opacity: 0;
    transition: transform 1.1s cubic-bezier(.16,.84,.3,1), opacity .55s ease;
    will-change: transform;
  }
  .car-stage.drive-in { transform: translateX(0); opacity: 1; }
  .estimate-car {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 26px 26px rgba(0,0,0,.65));
  }
  /* grounding: one big soft contact shadow under the whole car */
  .wheel-pad {
    position: absolute;
    left: 47%;
    top: 99%;
    width: 106%;
    height: 20%;
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-4deg);
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%,
      rgba(255,255,255,.20), rgba(255,255,255,.07) 46%, rgba(255,255,255,0) 74%);
    filter: blur(7px);
  }
  .wheel-pad::after {
    content: "";
    position: absolute;
    left: 50%; top: 42%;
    width: 90%; height: 56%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.6), rgba(0,0,0,0) 70%);
    filter: blur(7px);
  }
  /* ambient falling hail — covers the WHOLE section */
  .estimate-hail {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .estimate-hail i {
    position: absolute;
    top: -6%;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff, rgba(226,238,255,.8) 55%, rgba(226,238,255,0) 100%);
    box-shadow: 0 -16px 8px -5px rgba(255,255,255,.4);
    opacity: .85;
    animation: hailFall linear infinite;
  }
  @keyframes hailFall {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    5%   { opacity: .9; }
    94%  { opacity: .9; }
    100% { transform: translateY(1200px) translateX(-72px); opacity: 0; }
  }

  /* dents + impacts (aligned to the car) */
  .dent-field {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
  }
  .dent {
    position: absolute;
    width: 26px; height: 18px;
    border-radius: 50%;
    background: radial-gradient(60% 65% at 42% 32%,
      rgba(0,0,0,.34), rgba(0,0,0,.12) 46%,
      rgba(255,255,255,.30) 72%, rgba(255,255,255,0) 86%);
    transform: translate(-50%, -50%) scale(0) rotate(-18deg);
    opacity: 0;
    transition: transform .26s cubic-bezier(.34,1.56,.64,1), opacity .5s ease;
  }
  .dent.show { transform: translate(-50%, -50%) scale(1) rotate(-18deg); opacity: .92; }
  .impact-ring {
    position: absolute;
    width: 14px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.9);
    transform: translate(-50%, -50%) scale(.3);
    opacity: 0;
    pointer-events: none;
  }
  .impact-ring.go { animation: impactPop .5s ease-out forwards; }
  @keyframes impactPop {
    0%   { opacity: .9; transform: translate(-50%, -50%) scale(.3); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(3); }
  }
  .hero-stone {
    position: absolute;
    width: 17px; height: 21px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #ffffff, rgba(220,235,255,.85) 55%, rgba(220,235,255,0) 100%);
    box-shadow: 0 -22px 13px -6px rgba(255,255,255,.45);
    transform: translate(-50%, -50%);
    z-index: 5;
    will-change: transform, opacity;
  }
  @media (prefers-reduced-motion: reduce) {
    .estimate-hail i { animation-duration: 2.6s !important; }
  }

  .estimate-media .media-cap {
    position: absolute;
    left: 0; bottom: 4%;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: rgba(11,11,12,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    pointer-events: none;
  }
  .estimate-media .media-cap .ic {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(244,123,32,.18);
    color: var(--orange);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .estimate-media .media-cap .stack { display: flex; flex-direction: column; line-height: 1.15; }
  .estimate-media .media-cap .lg {
    font-family: var(--display);
    font-weight: 800;
    font-size: 14px;
    color: #fff;
  }
  .estimate-media .media-cap .sm {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Form (right column) */
  .estimate-form-card {
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 34px;
    display: flex;
    flex-direction: column;
  }
  .estimate-form-card h3 { font-size: 23px; color: #fff; margin-bottom: 6px; }
  .estimate-form-card .efc-sub { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 22px; }

  /* upload dropzone */
  .upload-zone {
    position: relative;
    border: 1.5px dashed var(--line-dark);
    border-radius: var(--radius);
    background: var(--ink-3);
    padding: 26px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
    margin-bottom: 14px;
  }
  .upload-zone:hover { border-color: rgba(244,123,32,.5); }
  .upload-zone.drag { border-color: var(--orange); background: rgba(244,123,32,.08); }
  .upload-zone .uz-icon {
    width: 52px; height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: rgba(244,123,32,.16);
    color: var(--orange);
    display: grid; place-items: center;
  }
  .upload-zone .uz-icon svg { width: 24px; height: 24px; }
  .upload-zone .uz-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
  }
  .upload-zone .uz-title u { color: var(--orange); text-decoration: none; }
  .upload-zone .uz-hint {
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
  }
  .upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }
  .upload-grid:empty { display: none; }
  .upload-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 9px;
    overflow: hidden;
    background: var(--ink-3) center/cover no-repeat;
    border: 1px solid var(--line-dark);
  }
  .upload-thumb button {
    position: absolute;
    top: 4px; right: 4px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(11,11,12,.78);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.18);
    transition: background .15s ease;
  }
  .upload-thumb button:hover { background: var(--orange); }
  .upload-thumb button svg { width: 12px; height: 12px; }

  .estimate-form-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .estimate-form-card .form-submit { margin-top: 6px; }
  .estimate-note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,.42);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .estimate-note svg { flex-shrink: 0; margin-top: 1px; color: var(--orange); }
  .estimate-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 8px 12px;
  }
  .estimate-success.show { display: flex; }
  .estimate-success .check-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(244,123,32,.18);
    color: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .estimate-success h4 { font-family: var(--display); font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 8px; }
  .estimate-success p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.55; max-width: 340px; }
  .estimate-form-card.is-success form,
  .estimate-form-card.is-success .efc-head { display: none; }
  .estimate-form-card.is-success .estimate-success { display: flex; }

  @media (max-width: 920px) {
    .estimate-wrap { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .estimate-media { order: 2; }
    .estimate-form-card { order: 1; max-width: 620px; margin: 0 auto; width: 100%; min-width: 0; }
    .car-stage { width: 100%; max-width: 680px; margin: 0 auto; }
  }
  @media (max-width: 480px) {
    .estimate-form-card { padding: 26px 22px; }
    .upload-grid { grid-template-columns: repeat(3, 1fr); }
    .estimate-form-card .field-row { grid-template-columns: 1fr; }
    .estimate-media .media-cap { bottom: -34%; max-width: calc(100% - 24px); }
    .estimate-media .media-cap .lg { font-size: 15px; white-space: nowrap; }
    .estimate-media .media-cap .sm { font-size: 10px; white-space: nowrap; }
  }

  /* ----- FAQ ----- */
  .faq-section { background: var(--gray-50); }
  .faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
  }
  .faq-left h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 20px; }
  .faq-left p { color: var(--gray-500); margin-bottom: 24px; font-size: 16px; }
  .faq-help-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .faq-help-card .lbl {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .faq-help-card .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(22px, 7.4vw, 26px);
    white-space: nowrap;
    color: var(--orange);
    margin: 6px 0 16px;
  }
  .faq-help-card p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin-bottom: 18px;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s ease;
  }
  .faq-item.open { border-color: var(--ink); }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
  }
  .faq-q .toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--ink);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .faq-item.open .toggle {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-a-inner {
    padding: 0 24px 24px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.65;
  }
  @media (max-width: 920px) {
    .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ----- Contact ----- */
  .contact-section {
    background: var(--ink);
    color: #fff;
  }
  .contact-section .section-head h2 { color: #fff; }
  .contact-section .section-head p { color: rgba(255,255,255,.7); }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
  .form-card {
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 36px;
  }
  .form-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
  }
  .form-card .sub {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    margin-bottom: 24px;
  }
  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }
  .field label {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: var(--ink-3);
    border: 1px solid var(--line-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--body);
    font-size: 16px;
    transition: border-color .15s ease, background .15s ease;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--ink-2);
  }
  .field textarea { resize: vertical; min-height: 90px; }
  .field-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
  .form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .form-success {
    background: rgba(244,123,32,.1);
    border: 1px solid rgba(244,123,32,.4);
    color: #fff;
    padding: 18px 20px;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .form-success.show { display: flex; }

  .locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .location {
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
  }
  .location .pin {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(244,123,32,.15);
    color: var(--orange);
    display: grid; place-items: center;
  }
  .location h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
  }
  .location .addr {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin-bottom: 14px;
  }
  .location .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
  }
  .location .meta .m {
    display: flex; align-items: center; gap: 6px;
  }
  .location .meta .m svg { color: var(--orange); }

  @media (max-width: 920px) {
    .contact-wrap { grid-template-columns: minmax(0, 1fr); }
    .form-card { min-width: 0; }
  }
  @media (max-width: 480px) {
    .form-card .field-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 350px) {
    .form-card { padding: 36px 16px; }
  }

  /* ----- Calculator (step quiz) ----- */
  .calc-section {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .calc-section::before {
    content: "";
    position: absolute;
    top: -140px; right: -100px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,123,32,.16), transparent 70%);
    pointer-events: none;
  }
  .quiz {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 40px 100px -40px rgba(0,0,0,.6);
  }
  .quiz::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(120deg, black, transparent 75%);
    mask-image: linear-gradient(120deg, black, transparent 75%);
  }
  .quiz-inner {
    position: relative;
    z-index: 2;
    padding: 44px clamp(280px, 32%, 400px) 38px 48px;
    display: flex;
    align-items: stretch;
    gap: 36px;
    min-height: 540px;
  }
  .quiz-left {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .quiz-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 26px;
  }
  .quiz-title .muted { color: rgba(255,255,255,.4); }
  .quiz-kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .quiz-kicker::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--orange);
    display: inline-block;
  }

  .quiz-main { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }

  /* progress */
  .quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }
  .quiz-progress .qlabel {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.65);
    white-space: nowrap;
  }
  .quiz-progress .qlabel b { color: #fff; }
  .quiz-bar {
    position: relative;
    flex: 1;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
  }
  .quiz-bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 20%;
    border-radius: 999px;
    background-color: var(--orange);
    background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.30) 0 8px, transparent 8px 16px);
    transition: width .45s cubic-bezier(.4,0,.2,1);
  }
  .quiz-bar-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,.42);
    letter-spacing: 0.04em;
    pointer-events: none;
  }

  /* step */
  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: quizFade .35s ease; }
  @keyframes quizFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
  }
  .quiz-qnum {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(22px, 2.6vw, 31px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .quiz-qnum .n { color: var(--orange); }

  .quiz-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .quiz-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 15px 22px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
  }
  .quiz-opt:hover { border-color: rgba(244,123,32,.45); }
  .quiz-opt:active { transform: scale(.99); }
  .quiz-opt .box {
    width: 24px; height: 24px;
    border-radius: 7px;
    border: 2px solid var(--gray-300);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .15s ease, border-color .15s ease;
  }
  .quiz-opt .box svg {
    width: 14px; height: 14px;
    opacity: 0;
    transform: scale(.4);
    transition: opacity .15s ease, transform .15s ease;
  }
  .quiz-opt .opt-label { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
  .quiz-opt .opt-label small {
    font-weight: 500;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
  }
  .quiz-opt.sel {
    border-color: var(--orange);
    box-shadow: 0 10px 26px -12px rgba(244,123,32,.6);
  }
  .quiz-opt.sel .box { background: var(--orange); border-color: var(--orange); }
  .quiz-opt.sel .box svg { opacity: 1; transform: none; }

  /* contact fields */
  .quiz-fields { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
  .quiz-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
  }
  .quiz-field input {
    width: 100%;
    background: var(--ink-3);
    border: 1px solid var(--line-dark);
    color: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    font-family: var(--body);
    font-size: 16px;
    transition: border-color .15s ease, background .15s ease;
  }
  .quiz-field input::placeholder { color: rgba(255,255,255,.32); }
  .quiz-field input:focus { outline: none; border-color: var(--orange); background: var(--ink-2); }
  .quiz-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 480px) {
    .quiz-field-row { grid-template-columns: 1fr; }
  }

  /* footer */
  .quiz-foot {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
    padding-top: 32px;
  }
  .quiz-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    color: #fff;
    max-width: 260px;
  }
  .quiz-hint .hand {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(244,123,32,.16);
    color: var(--orange);
    display: grid;
    place-items: center;
  }
  .quiz-hint .hand svg { width: 20px; height: 20px; }
  .quiz-back {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.55);
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 6px;
    transition: color .15s ease;
  }
  .quiz-back:hover { color: #fff; }
  .quiz-back[hidden] { display: none; }
  .quiz-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 17px 40px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 14px 30px -10px rgba(244,123,32,.6);
    transition: background .15s ease, transform .15s ease, opacity .15s ease;
  }
  .quiz-next:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .quiz-next:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; transform: none; background: var(--orange); }
  .quiz-next .chev { letter-spacing: -3px; font-size: 18px; }

  /* persona */
  .quiz-persona {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: clamp(260px, 30%, 380px);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: none;
    border: none;
  }
  .quiz-persona img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: 50% 100%;
    transform: scale(1.32);
    transform-origin: 50% 100%;
  }
  .quiz-persona .nameplate {
    position: relative;
    z-index: 2;
    margin: 14px;
    padding: 14px 18px;
    background: rgba(11,11,12,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
  }
  .quiz-persona .nameplate .nm {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
  }
  .quiz-persona .nameplate .rl {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
  }

  /* result */
  .quiz-result { display: none; }
  .quiz-result.active { display: block; animation: quizFade .4s ease; }
  .res-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .res-kicker svg { width: 18px; height: 18px; }
  .res-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }
  .res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
  }
  .res-row b {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
  }
  .res-row.cover b { color: var(--orange); }
  .res-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    margin-bottom: 22px;
    border-top: 1.5px dashed rgba(244,123,32,.4);
  }
  .res-final .res-final-k {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    max-width: 180px;
    line-height: 1.2;
  }
  .res-amount {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(48px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--orange);
  }
  .res-cta { width: 100%; }
  .res-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: rgba(255,255,255,.55);
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    transition: color .15s ease;
  }
  .res-edit:hover { color: #fff; }
  .res-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    line-height: 1.55;
  }

  @media (max-width: 860px) {
    .quiz-inner { flex-direction: column; padding: 30px 26px 30px; min-height: 0; gap: 0; }
    .quiz-persona {
      display: block;
      position: relative;
      top: auto; right: auto; bottom: auto;
      width: auto;
      margin: 14px 0 0;
      padding: 0;
      overflow: hidden;
      border-bottom-left-radius: inherit;
      border-bottom-right-radius: inherit;
    }
    .quiz-persona img {
      position: relative;
      inset: auto;
      width: min(340px, 88%);
      height: 372px;
      margin: 0 7% 0 auto;
      transform: none;
    }
    .quiz-persona .nameplate {
      position: absolute;
      left: 34%; bottom: 12px;
      margin: 0;
    }
    .quiz-opts { grid-template-columns: 1fr; }
    .quiz-foot { flex-wrap: wrap; gap: 14px; }
    .quiz-next { flex: 1; padding: 16px 24px; }
    .quiz-hint { max-width: 100%; }
  }
  @media (max-width: 440px) {
    .quiz-inner { padding: 24px 20px; }
    .quiz-progress { gap: 10px; }
    .quiz-progress .qlabel { font-size: 12px; }
    .quiz-bar-text { display: none; }
  }

  /* ----- Service modal ----- */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(11,11,12,.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .modal-backdrop.show { opacity: 1; visibility: visible; }
  .sd-modal {
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    width: 100%;
    max-width: 460px;
    padding: 36px;
    position: relative;
    transform: translateY(16px) scale(.98);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  }
  .modal-backdrop.show .sd-modal { transform: translateY(0) scale(1); }

  /* Split modal: image on the left, form on the right */
  /* Base = original service layout: photo on the LEFT, form on the right */
  .sd-modal.modal-split {
    max-width: 760px;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
  }
  .sd-modal.modal-split .modal-media {
    position: relative;
    background: var(--ink-3);
  }
  .sd-modal.modal-split .modal-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .sd-modal.modal-split .modal-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,11,12,0) 60%, rgba(20,20,22,.55) 100%);
    pointer-events: none;
  }
  .sd-modal.modal-split .modal-body { padding: 36px; }

  /* Persona (estimate/callback) layout: form LEFT, cut-out photo RIGHT */
  /* Desktop: persona (estimate/callback) — form LEFT, transparent cut-out photo RIGHT */
  @media (min-width: 601px) {
    .sd-modal.modal-split.is-persona { grid-template-columns: 1fr 320px; }
    .sd-modal.modal-split.is-persona .modal-media { order: 2; }
    .sd-modal.modal-split.is-persona .modal-body { order: 1; }
    .sd-modal.modal-split.is-persona .modal-media {
      background: transparent;
      overflow: visible;
      pointer-events: none;
    }
    .sd-modal.modal-split.is-persona .modal-media::after { display: none; }
    .sd-modal.modal-split.is-persona .modal-media img {
      inset: auto;
      bottom: 0;
      right: -180px;
      height: 100%;
      width: auto;
      max-width: none;
      object-fit: contain;
      object-position: bottom right;
      pointer-events: none;
    }
    .sd-modal.modal-split.is-persona .modal-body {
      position: relative;
      z-index: 2;
    }
  }
  @media (max-width: 600px) {
    .sd-modal.modal-split {
      grid-template-columns: 1fr;
      max-width: 460px;
    }
    .sd-modal.modal-split .modal-media { height: 130px; }
    .sd-modal.modal-split .modal-media::after {
      background: linear-gradient(0deg, rgba(11,11,12,0) 55%, rgba(20,20,22,.55) 100%);
    }
    .sd-modal.modal-split .modal-body { padding: 28px 24px; }

    /* Estimate/callback persona modal: drop the photo, use storm-sky backdrop */
    .sd-modal.modal-split.is-persona {
      background:
        linear-gradient(180deg, rgba(11,11,12,.80) 0%, rgba(11,11,12,.92) 45%, rgba(11,11,12,.95) 100%),
        url(../images/storm-sky.png) center top / cover no-repeat;
    }
    .sd-modal.modal-split.is-persona .modal-media { display: none; }
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    display: grid; place-items: center;
    transition: background .15s ease;
    cursor: pointer;
  }
  .modal-close:hover { background: rgba(255,255,255,0.14); }
  .modal-close svg { width: 18px; height: 18px; }
  .modal-kicker {
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .modal-kicker::before {
    content: "";
    width: 18px; height: 1px;
    background: var(--orange);
  }
  .sd-modal h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 8px;
  }
  .sd-modal .modal-sub {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    margin-bottom: 24px;
  }
  .sd-modal .field { margin-bottom: 14px; }
  .sd-modal .form-submit { margin-top: 8px; }
  .modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 8px 8px;
  }
  .modal-success .check-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(244,123,32,.18);
    color: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .modal-success-img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line-dark);
    margin-bottom: 20px;
  }
  .modal-success h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
  }
  .modal-success p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.55;
  }
  .modal-backdrop.success .sd-modal form,
  .modal-backdrop.success .sd-modal h3,
  .modal-backdrop.success .sd-modal .modal-kicker,
  .modal-backdrop.success .sd-modal .modal-sub { display: none; }
  .modal-backdrop.success .modal-success { display: flex; }
  body.modal-open { overflow: hidden; }

  @media (max-width: 520px) {
    .sd-modal { padding: 28px 22px; }
    .sd-modal h3 { font-size: 22px; }
    /* Let the submit button wrap instead of forcing the modal past the viewport */
    .sd-modal .form-submit {
      white-space: normal;
      text-align: center;
      padding-left: 18px;
      padding-right: 18px;
    }
  }
  @media (max-width: 620px) {
    .modal-backdrop {
      align-items: flex-start;
      overflow-y: auto;
      padding: 16px;
      padding-top: max(48px, env(safe-area-inset-top, 48px));
    }
    .sd-modal { margin: 0 auto; }
  }
  @media (max-width: 380px) {
    .modal-backdrop { padding: 12px; }
    .sd-modal.modal-split .modal-body { padding: 24px 18px; }
  }

  /* ----- CTA banner ----- */
  .cta-banner {
    background: var(--orange);
    color: #fff;
    padding: 64px 0;
  }
  @media (max-width: 860px) { .cta-banner { padding: 44px 0; } }
  @media (max-width: 480px) { .cta-banner { padding: 28px 0; } }
  .cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .cta-wrap h2 {
    font-size: clamp(26px, 3vw, 40px);
    max-width: 720px;
    color: #fff;
  }
  .cta-wrap .actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-on-orange {
    background: #fff;
    color: var(--ink);
  }
  .btn-on-orange:hover { background: #f4f4f5; }
  .btn-on-orange-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.6);
  }
  .btn-on-orange-ghost:hover { background: rgba(255,255,255,.1); }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1);
    will-change: opacity, transform;
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }

  /* ----- Owner Message ----- */
  .owner-section { background: var(--white); }
  .owner-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.04fr 1fr;
    gap: 26px;
    align-items: stretch;
  }
  /* Left: video card */
  .owner-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-2) center 22% / cover no-repeat;
    min-height: 480px;
    cursor: pointer;
    border: 1px solid var(--line-dark);
    isolation: isolate;
  }
  .owner-video::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,12,.86) 6%, rgba(11,11,12,.15) 46%, rgba(11,11,12,.18) 100%);
    z-index: 1;
  }
  .owner-video .ov-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 74px; height: 74px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid; place-items: center;
    z-index: 2;
    box-shadow: 0 12px 30px -8px rgba(244,123,32,.7);
    transition: transform .18s ease, background .18s ease;
  }
  .owner-video:hover .ov-play { transform: translate(-50%, -50%) scale(1.07); background: var(--orange-dark); }
  .owner-video .ov-play svg { width: 28px; height: 28px; margin-left: 3px; }
  .owner-video .ov-badge {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 2;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 13px;
    background: rgba(11,11,12,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .owner-video .ov-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
  .owner-video .ov-name {
    position: absolute;
    left: 24px; right: 24px; bottom: 22px;
    z-index: 2;
  }
  .owner-video .ov-name .nm {
    font-family: var(--display);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .owner-video .ov-name .ttl {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
  }
  /* Middle: features */
  .owner-feats {
    display: flex;
    flex-direction: column;
    padding: 4px 6px;
  }
  .owner-feats > h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    color: var(--ink);
    margin-bottom: 8px;
  }
  .owner-feats > .feats-intro {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 14px;
  }
  .feat-row {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--gray-200);
  }
  .feat-row:last-child { border-bottom: 1px solid var(--gray-200); }
  .feat-row .ic {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
  }
  .feat-row .ic svg { width: 22px; height: 22px; }
  .feat-row h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 3px;
  }
  .feat-row p { color: var(--gray-500); font-size: 14px; line-height: 1.5; }
  /* Right: orange CTA */
  .owner-cta {
    background: linear-gradient(158deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 34px;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 34px 70px -28px rgba(244,123,32,.65);
  }
  .owner-cta h3 {
    font-size: clamp(22px, 2.1vw, 26px);
    color: #fff;
    margin-bottom: 8px;
  }
  .owner-cta .oc-sub { color: rgba(255,255,255,.88); font-size: 14.5px; margin-bottom: 22px; }
  .oc-field { margin-bottom: 13px; }
  .oc-field input {
    width: 100%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.34);
    color: #fff;
    border-radius: var(--radius);
    padding: 15px 16px;
    font-family: var(--body);
    font-size: 16px;
    transition: border-color .15s ease, background .15s ease;
  }
  .oc-field input::placeholder { color: rgba(255,255,255,.72); }
  .oc-field input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.24); }
  .owner-cta .btn-on-orange { width: 100%; justify-content: center; margin-top: 5px; }
  .oc-success {
    display: none;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 14px;
    margin-bottom: 14px;
  }
  .oc-success.show { display: flex; }
  .oc-call {
    margin-top: auto;
    padding-top: 22px;
    text-align: center;
  }
  .oc-call .lbl {
    font-size: 12.5px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .oc-call a {
    font-family: var(--display);
    font-weight: 800;
    font-size: 23px;
    color: #fff;
    letter-spacing: -0.01em;
  }
  @media (max-width: 980px) {
    .owner-grid { grid-template-columns: 1fr; }
    .owner-video, .owner-feats, .owner-cta { min-width: 0; width: 100%; }
    .owner-video { min-height: 420px; }
  }
  /* ----- Page fade transition (to Thank You) ----- */
  #pageFade {
    position: fixed;
    inset: 0;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity .5s ease;
  }
  #pageFade.show { opacity: 1; pointer-events: all; }

  /* ----- AOS distance override (default 100px → subtle 22px) ----- */
  [data-aos="fade-up"]   { transform: translate3d(0, 22px, 0); }
  [data-aos="fade-down"] { transform: translate3d(0, -16px, 0); }
  [data-aos="fade-in"]   { transform: none; }

  /* ----- Typewriter cursor ----- */
  @keyframes tw-blink { 50% { opacity: 0; } }
  .tw-typing::after {
    content: '|';
    color: var(--orange);
    margin-left: 2px;
    animation: tw-blink .65s step-end infinite;
  }
  .tw-done::after { display: none; }

  /* quiz-title responsive size */
  @media (max-width: 480px) { .quiz-title { font-size: 22px; } }
  @media (max-width: 360px) { .quiz-title { font-size: 19px; } }

  /* ----- #6в Footer phone fly-in ----- */
  .footer-phone-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(-28px);
    transition: opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1);
  }
  .footer-phone-in { opacity: 1; transform: translateY(0); }

  /* ----- #6г CTA button pulse ----- */
  @keyframes sd-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244,123,32,.5); }
    60% { box-shadow: 0 0 0 12px rgba(244,123,32,0); }
  }
  .btn-attention { animation: sd-pulse 2.6s ease-out 1.8s 3; }
