/* =============================================================
   OG SPECIAL TOUCH CLEANING LLC
   Palette and geometry derived from the logo: navy ring, teal G,
   teal crescent, pale-blue sparkles.
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --navy:        #0E3A5D;
  --navy-deep:   #0A2C47;
  --navy-soft:   #17496F;
  --teal:        #29A9CB;   /* brand accent — rules, icons, large display only */
  --action:      #0F7391;   /* buttons: 5.4:1 with white text */
  --action-dark: #0B5C75;
  --sky:         #8FDCEC;
  --sky-pale:    #BDE9F4;
  --tint:        #EAF6FA;
  --tint-2:      #D9EEF6;
  --paper:       #FFFFFF;
  --ink:         #16242E;
  --ink-soft:    #46565F;
  --ink-mute:    #5F6F78;
  --on-navy:     #EDF6FA;
  --on-navy-mute:rgba(237,246,250,.74);
  --line:        rgba(22,36,46,.14);
  --line-navy:   rgba(237,246,250,.20);
  --danger:      #B3261E;

  --sh-sm: 0 1px 2px rgba(14,58,93,.06), 0 4px 14px rgba(14,58,93,.07);
  --sh-md: 0 2px 6px rgba(14,58,93,.07), 0 16px 34px rgba(14,58,93,.11);
  --sh-lg: 0 30px 70px rgba(10,44,71,.24);

  --r-lg: 20px;
  --r-md: 13px;
  --r-sm: 8px;

  --display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.16,1,.3,1);
  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--body);
  font-size: 16px; line-height: 1.62;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 700;
  line-height: 1.1; letter-spacing: -.02em; text-wrap: balance;
}
::selection { background: var(--teal); color: #fff; }
:focus-visible { outline: 3px solid var(--action); outline-offset: 3px; border-radius: 4px; }
.section-navy :focus-visible, .hero :focus-visible { outline-color: var(--sky); }

/* ---------- 3. Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 999;
  background: var(--action); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section-tint { background: var(--tint); }
.section-navy { background: var(--navy); color: var(--on-navy); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4.5vw, 3rem); }
.eyebrow {
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--action);
  margin-bottom: .7rem; display: flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 1.6em; height: 3px; border-radius: 2px; background: var(--teal); flex: none; }
.eyebrow-light { color: var(--sky); }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section-head-light h2 { color: var(--on-navy); }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--ink-soft); margin-top: .9rem; max-width: 46ch; }
.lede-light { color: var(--on-navy-mute); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.5rem; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: .98rem; line-height: 1;
  border: 2px solid transparent; white-space: nowrap; text-align: center;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--action); color: #fff; box-shadow: 0 8px 20px rgba(15,115,145,.3); }
.btn-primary:hover { background: var(--action-dark); box-shadow: 0 12px 26px rgba(15,115,145,.38); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { background: var(--paper); color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--action); color: var(--action-dark); }
.btn-outline-light { background: transparent; color: var(--on-navy); border-color: var(--line-navy); }
.btn-outline-light:hover { border-color: var(--sky); background: rgba(237,246,250,.08); }
.btn-glass {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,.24); border-color: #fff; }

/* ---------- 5. Top bar ---------- */
.topbar { background: var(--navy-deep); color: var(--on-navy-mute); font-size: .8rem; }
.topbar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .3rem .9rem; padding-block: .5rem; text-align: center;
}
.topbar-strong { color: var(--sky); font-weight: 600; }
.topbar-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

/* ---------- 6. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header.is-stuck { box-shadow: var(--sh-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark { width: 46px; flex: none; }
.brand-mark-sm { width: 40px; }
.brand-words { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: clamp(.94rem,1.7vw,1.06rem); color: var(--navy); letter-spacing: -.015em; white-space: nowrap; }
.brand-tag { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--action); font-weight: 500; }
.header-nav { display: none; }
.header-actions { display: none; align-items: center; gap: .95rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--navy); font-family: var(--display); white-space: nowrap; }
.header-phone svg { width: 1.15em; height: 1.15em; color: var(--action); }
.header-phone:hover { color: var(--action); }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); color: var(--navy); }
.nav-toggle[hidden] { display: none; }
.nav-toggle svg { width: 23px; height: 23px; }
.nav-toggle .icon-close { display: none; }
html.nav-open .nav-toggle .icon-open { display: none; }
html.nav-open .nav-toggle .icon-close { display: block; }

/* no-JS: plain visible list. JS turns it into a panel (.nav-js). */
.nav-panel { border-top: 1px solid var(--line); padding: .3rem var(--gutter) 1.1rem; background: var(--paper); }
.nav-panel.nav-js {
  position: absolute; left: 0; right: 0; top: 100%;
  box-shadow: var(--sh-md); padding-block: 1rem 1.4rem;
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-panel.nav-js.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-panel-list { margin-bottom: 1rem; }
.nav-panel-list a { display: block; padding: .8rem .2rem; font-family: var(--display); font-weight: 600; border-bottom: 1px solid var(--line); }
.nav-panel-list a.is-cta { color: var(--action); }

@media (min-width: 1000px) {
  .header-nav { display: flex; gap: 1.35rem; }
  .header-nav a { font-weight: 500; color: var(--ink-soft); position: relative; padding-block: .3rem; white-space: nowrap; }
  .header-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--teal); transition: right .25s var(--ease);
  }
  .header-nav a:hover::after, .header-nav a:focus-visible::after { right: 0; }
  .header-actions { display: flex; }
  .nav-toggle, .nav-panel { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: clip; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* strong under the copy, clearing toward the photo so the room reads */
  background:
    linear-gradient(104deg,
      rgba(10,44,71,.94) 0%, rgba(10,44,71,.88) 30%,
      rgba(10,44,71,.62) 52%, rgba(10,44,71,.34) 74%, rgba(10,44,71,.30) 100%),
    linear-gradient(180deg, rgba(10,44,71,.34) 0%, transparent 26%, transparent 72%, rgba(10,44,71,.46) 100%);
}
/* stacked layout: copy sits over the middle of the photo, so even it out */
@media (max-width: 939px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(10,44,71,.86) 0%, rgba(10,44,71,.72) 52%, rgba(10,44,71,.90) 100%);
  }
}
.hero-inner { display: grid; gap: 2rem; padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.hero-copy .eyebrow { color: var(--sky); }
.hero-copy .eyebrow::before { background: var(--sky); }
.hero h1 { font-size: clamp(2.15rem, 5.2vw, 3.55rem); max-width: 17ch; }
.hero-lede { margin-top: 1rem; font-size: clamp(1.03rem, 1.5vw, 1.16rem); color: rgba(255,255,255,.9); max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
@media (max-width: 479px) { .hero-actions .btn { flex: 1 1 100%; } }
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.hero-chips li {
  font-size: .84rem; font-weight: 500; padding: .42rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26);
}

.hero-card { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,1.8rem); box-shadow: var(--sh-lg); }
.hero-card-title { font-size: 1.3rem; color: var(--navy); }
.hero-card-sub { font-size: .9rem; color: var(--ink-mute); margin-top: .25rem; margin-bottom: 1.1rem; }
.quickstart { display: grid; gap: .95rem; }

@media (min-width: 940px) {
  .hero-inner { grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: 3rem; align-items: center; }
  .hero-bg img { object-position: 50% 46%; }
}

/* ---------- 8. Fields ---------- */
.field { display: block; }
.field-label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; font-family: var(--display); }
.opt { font-family: var(--body); font-weight: 400; color: var(--ink-mute); font-size: .84rem; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field input[type="date"], .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.6px solid var(--line);
  border-radius: var(--r-sm); background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 5.2rem; }
.field :is(input,select,textarea):focus {
  outline: none; border-color: var(--action); box-shadow: 0 0 0 3px rgba(15,115,145,.16);
}
.field :is(input,select,textarea)[aria-invalid="true"] { border-color: var(--danger); }
.field-note { font-size: .82rem; color: var(--ink-mute); }
.field-note-light { color: var(--on-navy-mute); }
.field-row { display: grid; gap: .95rem; }
.err { color: var(--danger); font-size: .82rem; margin-top: .35rem; font-weight: 500; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span {
  display: inline-flex; padding: .6rem 1.15rem; border-radius: 999px;
  border: 1.6px solid var(--line); font-weight: 500; font-size: .93rem; color: var(--ink-soft);
  transition: all .18s var(--ease);
}
.pill input:checked + span { border-color: var(--action); background: rgba(15,115,145,.1); color: var(--action-dark); font-weight: 600; }
.pill input:focus-visible + span { outline: 3px solid var(--action); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ---------- 9. Trust strip ---------- */
.trust-strip { background: var(--navy-deep); color: var(--on-navy); }
.trust-grid { display: grid; }
.trust-item { padding: 1.1rem 0; display: flex; flex-direction: column; gap: .15rem; }
@media (min-width: 700px) {
  .trust-item { padding-inline: clamp(.8rem, 2vw, 1.6rem); border-left: 1px solid var(--line-navy); }
  .trust-item:first-child { border-left: 0; padding-left: 0; }
  .trust-item:last-child { padding-right: 0; }
}
.trust-item strong { font-family: var(--display); font-size: .98rem; }
.trust-item span { font-size: .84rem; color: var(--on-navy-mute); }
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }

/* ---------- 10. Paths ---------- */
.paths-grid { display: grid; gap: 1.5rem; }
.path-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: clip; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.path-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.path-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.path-body { padding: clamp(1.3rem,2.6vw,1.8rem); display: flex; flex-direction: column; flex: 1; }
.path-body h3 { font-size: clamp(1.25rem,2.1vw,1.5rem); margin-bottom: .6rem; color: var(--navy); }
.path-body > p { color: var(--ink-soft); font-size: .97rem; }
.tick-list { margin: 1.1rem 0 1.5rem; display: grid; gap: .5rem; }
.tick-list li { position: relative; padding-left: 1.7rem; font-size: .95rem; color: var(--ink-soft); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 1.05rem; height: 1.05rem;
  border-radius: 50%; background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/68% no-repeat;
}
.path-body .btn { margin-top: auto; align-self: flex-start; }
@media (min-width: 860px) { .paths-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }

/* ---------- 11. Detail (problem -> result) ---------- */
.detail-grid { display: grid; gap: 2.2rem; align-items: center; }
.detail-list { margin-top: 1.6rem; display: grid; gap: .9rem; }
.detail-list li { padding-left: 1.8rem; position: relative; color: var(--ink-soft); }
.detail-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .62rem; height: .62rem;
  border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(41,169,203,.18);
}
.detail-list strong { color: var(--navy); font-family: var(--display); }
.detail-figure { margin: 0; }
.detail-figure img { border-radius: var(--r-lg); box-shadow: var(--sh-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-figure figcaption { margin-top: .7rem; font-size: .86rem; color: var(--ink-mute); }
@media (min-width: 880px) { .detail-grid { grid-template-columns: 1.05fr .95fr; gap: 3.2rem; } }

/* ---------- 12. Services ---------- */
.services-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: clip; }
.service { background: var(--paper); padding: 1.35rem 1.4rem; transition: background .2s var(--ease); }
.service:hover { background: var(--tint); }
.service h3 { font-size: 1.03rem; color: var(--navy); margin-bottom: .3rem; }
.service p { font-size: .91rem; color: var(--ink-mute); }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  /* 10 services over 3 columns leaves a ragged last row — let the last one fill it */
  .service:last-child { grid-column: 1 / -1; }
}

.cta-band {
  margin-top: 2rem; background: var(--tint); border: 1px solid var(--tint-2);
  border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,1.9rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.1rem;
}
.cta-band p { color: var(--ink-soft); }
.cta-band strong { color: var(--navy); font-family: var(--display); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- 13. Gallery ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.shot { position: relative; border-radius: var(--r-md); overflow: clip; background: var(--navy-soft); }
.shot img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .5s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .8rem .7rem;
  font-size: .82rem; font-weight: 500; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10,44,71,.86));
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4,1fr); } }

/* ---------- 14. Steps ---------- */
.steps { display: grid; gap: 1.6rem; counter-reset: s; }
.step { position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: 1.1rem; margin-bottom: .9rem;
}
.step h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .96rem; max-width: 34ch; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 1.35rem; left: 3.3rem; right: -1.2rem;
    height: 2px; background: linear-gradient(90deg, var(--tint-2), transparent);
  }
}

/* ---------- 15. Rewards ---------- */
.rewards-grid { display: grid; gap: 1.2rem; }
.reward-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,1.9rem); box-shadow: var(--sh-sm); }
.reward-card-feature { background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--on-navy); border-color: transparent; box-shadow: var(--sh-md); }
.reward-kicker {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--action);
  background: var(--tint); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .9rem;
}
.reward-card-feature .reward-kicker { color: var(--navy-deep); background: var(--sky); }
.reward-card h3 { font-size: 1.28rem; color: var(--navy); margin-bottom: .55rem; }
.reward-card-feature h3 { color: #fff; }
.reward-card p { font-size: .96rem; color: var(--ink-soft); }
.reward-card-feature p { color: var(--on-navy-mute); }
.reward-card-feature strong { color: var(--sky); }
.stars { display: flex; gap: .35rem; margin-bottom: .9rem; }
.stars i {
  width: 1.5rem; height: 1.5rem; display: block;
  background: var(--sky);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.stars i:last-child { background: rgba(237,246,250,.34); }
.rewards-note { margin-top: 1.3rem; font-size: .85rem; color: var(--ink-mute); }
.rewards-cta { margin-top: 1.6rem; }
@media (min-width: 860px) {
  .rewards-grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 1.4rem; }
}

/* ---------- 16. Why grid ---------- */
.why-grid { display: grid; gap: 1.1rem; }
.why-grid li {
  padding: 1.2rem 1.3rem; border-radius: var(--r-md);
  background: var(--tint); border: 1px solid var(--tint-2);
  display: flex; flex-direction: column; gap: .25rem;
}
.why-grid strong { font-family: var(--display); color: var(--navy); font-size: 1.02rem; }
.why-grid span { font-size: .92rem; color: var(--ink-soft); }
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- 17. Quote block ---------- */
.quote-wrap { display: grid; gap: 2rem; }
.quote-intro h2 { font-size: clamp(1.8rem,3.4vw,2.5rem); color: var(--on-navy); }
.quote-contact { margin-top: 1.8rem; display: grid; gap: 1rem; }
.quote-contact li { display: flex; flex-direction: column; gap: .1rem; }
.quote-contact span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sky); font-weight: 600; }
.quote-phone { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.quote-phone:hover { color: var(--sky); }
.quote-email { color: var(--on-navy); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.quote-email:hover { color: var(--sky); }

.quote-card { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,2rem); box-shadow: var(--sh-lg); }
.quote-card fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1.05rem; }
.step-indicator {
  font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--action); margin-bottom: 1.1rem;
}
.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.form-actions .btn-outline-light { color: var(--navy); border-color: var(--line); }
.form-actions .btn-outline-light:hover { border-color: var(--action); background: var(--tint); }
.form-actions .btn:last-child { flex: 1; min-width: 12rem; }
.quote-card .field-note-light { color: var(--ink-mute); }
.form-error {
  background: #FDECEA; border: 1px solid #F5C6C2; color: var(--danger);
  padding: .75rem .9rem; border-radius: var(--r-sm); font-size: .9rem; font-weight: 500;
}
.quote-done { text-align: center; padding: 1rem .4rem; }
.done-badge {
  width: 3.6rem; height: 3.6rem; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--tint); color: var(--action);
  display: grid; place-items: center;
}
.done-badge svg { width: 1.9rem; height: 1.9rem; }
.quote-done h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: .5rem; }
.quote-done p { color: var(--ink-soft); max-width: 34ch; margin-inline: auto; }
.done-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.4rem; }
.done-actions .btn-outline-light { color: var(--navy); border-color: var(--line); }
@media (min-width: 940px) { .quote-wrap { grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; } }

/* ---------- 18. Areas ---------- */
.areas-grid { display: grid; gap: 1.2rem; }
.area-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.3rem,3vw,1.8rem); background: var(--paper); box-shadow: var(--sh-sm); }
.area-card h3 { font-size: 1.18rem; color: var(--navy); margin-bottom: .9rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-list li {
  padding: .45rem .9rem; border-radius: 999px; background: var(--tint);
  border: 1px solid var(--tint-2); font-size: .9rem; font-weight: 500; color: var(--navy);
}
.area-note { margin-top: .9rem; font-size: .9rem; color: var(--ink-mute); }
@media (min-width: 800px) { .areas-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 19. FAQ ---------- */
.faq { max-width: 46rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem .2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 1.15rem; height: 1.15rem; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--action);
  border-radius: 2px; transition: transform .25s var(--ease);
}
.faq-plus::before { width: 100%; height: 2.5px; }
.faq-plus::after { width: 2.5px; height: 100%; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); }
.faq-a { padding: 0 2.4rem 1.25rem .2rem; }
.faq-a p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- 20. Final CTA ---------- */
.final-cta {
  background: linear-gradient(140deg, var(--action) 0%, var(--navy) 62%, var(--navy-deep) 100%);
  color: #fff; padding-block: clamp(3.2rem,7vw,5.5rem); text-align: center;
}
.final-inner { max-width: 40rem; margin-inline: auto; }
.final-cta h2 { font-size: clamp(1.9rem,4vw,2.8rem); }
.final-cta p { margin-top: .9rem; color: rgba(255,255,255,.88); }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2rem; }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-navy-mute); padding-block: 3rem 6.5rem; font-size: .92rem; }
.footer-inner { display: grid; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-name { font-family: var(--display); font-weight: 700; color: var(--on-navy); font-size: 1.05rem; }
.footer-tag { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--sky); }
.footer-cols { display: grid; gap: 1.6rem; }
.footer-cols h4 { font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--sky); margin-bottom: .5rem; }
.footer-cols h4.mt { margin-top: 1rem; }
.footer-cols a { color: var(--on-navy); font-weight: 600; }
.footer-cols a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid var(--line-navy); margin-top: 2rem; padding-top: 1.2rem; font-size: .8rem; }
@media (min-width: 760px) { .footer-cols { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) {
  .site-footer { padding-block: 3.4rem; }
  .footer-inner { grid-template-columns: .8fr 2fr; gap: 3rem; }
}

/* ---------- 22. Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: flex; gap: .6rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(14,58,93,.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.mobile-bar .btn { flex: 1; min-width: 0; padding-inline: .8rem; }
@media (min-width: 1000px) { .mobile-bar { display: none; } }

/* ---------- 23. Reveals (opt-in, JS only) ---------- */
html.js-enabled [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
html.js-enabled [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js-enabled [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .path-card:hover, .shot:hover img { transform: none; }
  .shot img { transition: none; }
}
