/* ============================================================
   QuickDry Restoration — marketing site styles
   Cool blue/teal brand, warm amber reserved for emergency CTAs
   ============================================================ */

:root {
  /* Brand — Quick Dry: deep navy, friendly blue, sky, pink */
  --ink:        oklch(0.30 0.05 250);
  --ink-soft:   oklch(0.44 0.04 248);
  --muted:      oklch(0.56 0.025 246);

  --navy-900:   #154166;            /* exact brand navy — matches logo backgrounds */
  --navy-800:   #1d5378;
  --brand-700:  oklch(0.47 0.105 247);
  --brand:      oklch(0.57 0.115 246);   /* ≈ #2B7CB3 wordmark blue */
  --brand-500:  oklch(0.64 0.115 242);
  --brand-300:  oklch(0.82 0.065 230);   /* ≈ #9CCFEA sky */
  --teal:       oklch(0.80 0.075 228);   /* sky-blue accent (was teal) */
  --teal-tint:  oklch(0.952 0.02 224);   /* ≈ #E5F8FF pale wash */

  /* Pink — accent + emergency CTAs */
  --emergency:     #BA74B6;
  --emergency-rgb: 186 116 182;      /* same color, for rgb(... / alpha) shadows */
  --emergency-600: #A768A4;          /* ~10% darker, hover state */
  --emergency-ink: #ffffff;          /* white text on pink (#BA74B6) for AA contrast */

  /* Neutrals — cool, faintly blue */
  --bg:         oklch(0.987 0.007 230);
  --surface:    #ffffff;
  --surface-2:  oklch(0.976 0.012 226);
  --tint:       oklch(0.96 0.018 224);
  --line:       oklch(0.905 0.016 232);
  --line-soft:  oklch(0.935 0.011 230);

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px oklch(0.4 0.05 250 / 0.06), 0 2px 6px oklch(0.4 0.05 250 / 0.05);
  --shadow:    0 8px 24px oklch(0.35 0.06 250 / 0.10), 0 2px 6px oklch(0.35 0.06 250 / 0.05);
  --shadow-lg: 0 24px 60px oklch(0.30 0.07 250 / 0.16);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 116px); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand-500); display: inline-block;
}
.eyebrow.center { justify-content: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 19px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em;
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .14s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px oklch(0.55 0.15 246 / 0.32); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn-emergency { background: var(--emergency); color: var(--emergency-ink); box-shadow: 0 6px 18px rgb(var(--emergency-rgb) / 0.34); }
.btn-emergency:hover { background: var(--emergency-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-700); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ---------- Emergency utility bar ---------- */
.topbar {
  background: var(--navy-900); color: oklch(0.92 0.02 240);
  font-size: 13.5px; letter-spacing: 0.01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding-block: 7px; }
.topbar .certs { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: oklch(0.78 0.02 240); }
.topbar .certs span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar .certs .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.topbar .call { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: #fff; white-space: nowrap; }
.topbar .call .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--emergency); box-shadow: 0 0 0 0 rgb(var(--emergency-rgb) / 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgb(var(--emergency-rgb) / 0); } 100% { box-shadow: 0 0 0 0 rgb(var(--emergency-rgb) / 0); } }
@media (max-width: 760px) { .topbar .certs { display: none; } .topbar .wrap { justify-content: center; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.986 0.006 240 / 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; gap: 20px; min-height: 84px; }
.brand-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--ink); }
.brand-logo .mark {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; overflow: hidden;
  background: #fff; box-shadow: 0 3px 10px oklch(0.40 0.07 250 / 0.18), inset 0 0 0 1px var(--line-soft);
}
.brand-logo .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo .mark svg { width: 22px; height: 22px; }
.brand-logo .wordmark { height: 56px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo .wordmark { height: 44px; } }

/* ---- Floating help bubble (mascot) ---- */
.help-fab-wrap {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  transform: translateY(160%); opacity: 0; pointer-events: none;
  transition: transform .5s cubic-bezier(.2,.85,.25,1), opacity .4s;
}
.help-fab-wrap.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.help-fab {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 22px 9px 9px; box-shadow: 0 14px 36px rgba(21,65,102,.30);
  transition: box-shadow .2s ease, transform .2s ease;
}
.help-fab:hover { box-shadow: 0 20px 44px rgba(21,65,102,.38); transform: translateY(-2px); }
.help-fab .av { position: relative; width: 56px; height: 56px; border-radius: 50%; background: radial-gradient(circle at 50% 38%, var(--teal-tint), #d4e9f6); display: grid; place-items: center; overflow: hidden; flex: none; box-shadow: inset 0 0 0 2px #fff; }
.help-fab .av img { width: 52px; height: 52px; object-fit: contain; margin-bottom: -6px; animation: fab-bob 3.2s ease-in-out infinite; }
.help-fab .av .dot { position: absolute; top: 1px; right: 1px; width: 13px; height: 13px; border-radius: 50%; background: var(--emergency); border: 2.5px solid #fff; box-shadow: 0 0 0 0 rgb(var(--emergency-rgb) / 0.6); animation: pulse 2s infinite; }
.help-fab .txt b { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy-900); display: block; line-height: 1.12; }
.help-fab .txt small { font-size: 12.5px; color: var(--muted); }
.fab-x {
  position: absolute; top: -7px; right: -7px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy-900); color: #fff; border: 2px solid #fff; cursor: pointer;
  font-size: 16px; line-height: 1; display: grid; place-items: center; padding: 0;
  box-shadow: 0 3px 8px rgba(21,65,102,.3); transition: background .15s, transform .15s;
}
.fab-x:hover { background: var(--emergency); transform: scale(1.08); }
@keyframes fab-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@media (prefers-reduced-motion: reduce) { .help-fab .av img { animation: none; } }
@media (max-width: 520px) {
  .help-fab-wrap { right: 14px; bottom: 14px; }
  .help-fab .txt { display: none; }
  .help-fab { padding: 7px; gap: 0; }
}
.footer-logo { display: inline-block; }
.footer-logo img { width: 232px; height: auto; }
.brand-logo b { font-weight: 800; }
.brand-logo .tag { color: var(--brand); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { padding: 9px 11px; border-radius: 9px; font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: color .15s, background .15s; white-space: nowrap; }
.nav a:hover { color: var(--brand-700); background: var(--tint); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.header-phone { display: inline-flex; flex-direction: column; line-height: 1.1; font-family: var(--font-display); white-space: nowrap; flex-shrink: 0; }
.header-phone small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.header-phone b { font-size: 18px; color: var(--ink); font-weight: 800; }
.nav-toggle { display: none; }

@media (max-width: 1000px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-left: auto; border-radius: 11px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: #fff; z-index: 60; transform: translateX(100%); transition: transform .3s ease; box-shadow: var(--shadow-lg); padding: 24px; display: flex; flex-direction: column; gap: 6px; }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { padding: 14px 12px; border-radius: 10px; font-weight: 700; font-family: var(--font-display); font-size: 18px; border-bottom: 1px solid var(--line-soft); }
  .mobile-nav .btn { margin-top: 12px; }
  .scrim { position: fixed; inset: 0; background: oklch(0.2 0.04 250 / 0.4); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .scrim.open { opacity: 1; pointer-events: auto; }
}
.mobile-nav { display: none; }
.mobile-nav .m-close { align-self: flex-end; border: none; background: var(--tint); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; font-size: 20px; }
@media (max-width: 1000px) { .mobile-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(120% 90% at 88% -10%, var(--teal-tint), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--bg)); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 6vw, 86px); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px 7px 11px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); margin-bottom: 26px; }
.hero-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--emergency); box-shadow: 0 0 0 0 rgb(var(--emergency-rgb) / 0.55); animation: pulse 2s infinite; }
.hero-badge b { color: var(--ink); font-weight: 700; }
.hero-badge { white-space: nowrap; width: max-content; max-width: 100%; }
.hero-badge .hb-text { color: var(--muted); }
.hero-badge .hb-text b { color: var(--ink); }
.hero h1 { font-size: clamp(40px, 6.4vw, 76px); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .accent { color: var(--brand); }
.hero .lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); margin-top: 22px; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; }
.hero-assure li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.hero-assure svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.hero ul { margin: 0; padding: 0; }

/* hero media + form card */
.hero-media { position: relative; }
.hero-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--tint); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 75% center; }
.hero-form {
  position: absolute; left: -28px; bottom: -28px; width: min(330px, 84%);
  background: #fff; border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
}
.hero-form h3 { font-size: 19px; }
.hero-form p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.field { margin-top: 12px; }
.field label { display: block; font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--surface-2); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px oklch(0.55 0.15 246 / 0.15); background: #fff; }
.hero-form .btn { width: 100%; margin-top: 14px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form-ok { display: none; padding: 14px; background: var(--teal-tint); border-radius: var(--r-sm); color: oklch(0.4 0.08 200); font-weight: 600; font-size: 14px; text-align: center; margin-top: 12px; }
.form-err { display: none; padding: 12px 14px; background: rgb(var(--emergency-rgb) / 0.14); border-radius: var(--r-sm); color: var(--emergency-600); font-weight: 600; font-size: 14px; text-align: center; margin-top: 12px; }
.optional { color: var(--muted); font-weight: 500; font-size: 12px; letter-spacing: 0; text-transform: none; margin-left: 6px; }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .hero-photo { aspect-ratio: 16/12; }
  .hero-form { position: static; width: 100%; margin-top: 18px; left: 0; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-900); color: #fff; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 44px; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 50px); letter-spacing: -0.03em; color: #fff; line-height: 1; }
.stat .n .u { color: var(--teal); }
.stat .l { font-size: 14.5px; color: oklch(0.82 0.02 240); margin-top: 9px; }
.stat + .stat { border-left: 1px solid oklch(1 0 0 / 0.1); }
@media (max-width: 720px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } .stat + .stat { border-left: none; } .stat:nth-child(odd) { border-right: 1px solid oklch(1 0 0 / 0.1); } }

/* ---------- Services ---------- */
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 26px 24px 24px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; position: relative;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-300); }
.svc .ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-tint); color: var(--brand-700); margin-bottom: 18px; }
.svc .ic svg { width: 26px; height: 26px; }
.svc h3 { font-size: 19.5px; letter-spacing: -0.02em; }
.svc p { font-size: 15px; color: var(--ink-soft); margin-top: 9px; line-height: 1.5; }
.svc .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--brand-700); font-family: var(--font-display); }
.svc .more svg { width: 15px; height: 15px; transition: transform .18s; }
.svc:hover .more svg { transform: translateX(4px); }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.why { background: var(--surface-2); }
.why .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.why-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow); background: var(--tint); position: relative; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo .float {
  position: absolute; right: 18px; bottom: 18px; background: #fff; border-radius: var(--r); padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.why-photo .float .ring { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-tint); color: var(--brand-700); }
.why-photo .float b { font-family: var(--font-display); font-size: 20px; display: block; line-height: 1; }
.why-photo .float small { font-size: 12px; color: var(--muted); }
.why-list { display: grid; gap: 14px; margin-top: 30px; }
.why-item { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); transition: box-shadow .2s, transform .18s; }
.why-item:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.why-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-900); color: var(--teal); }
.why-item .ic svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 17.5px; }
.why-item p { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }
@media (max-width: 900px) { .why .wrap { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); }
.step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brand); letter-spacing: 0.1em; }
.step .bar { height: 3px; width: 40px; background: var(--brand-300); border-radius: 2px; margin: 14px 0 18px; }
.step h3 { font-size: 19px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Compare ---------- */
.compare { background: var(--navy-900); color: #fff; }
.compare .eyebrow { color: var(--teal); }
.compare .eyebrow::before { background: var(--teal); }
.compare .section-head h2 { color: #fff; }
.compare .section-head p { color: oklch(0.82 0.02 240); }
.cmp-table { margin-top: 48px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid oklch(1 0 0 / 0.12); }
.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.cmp-row > div { padding: 18px 22px; display: flex; align-items: center; gap: 10px; font-size: 16px; border-top: 1px solid oklch(1 0 0 / 0.09); }
.cmp-row.head > div { border-top: none; font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.cmp-row .feat { color: oklch(0.86 0.02 240); }
.cmp-row .qd { background: oklch(0.55 0.15 246 / 0.16); color: #fff; font-weight: 600; }
.cmp-row.head .qd { background: var(--brand); }
.cmp-row .other { color: oklch(0.74 0.02 240); }
.cmp-row.head .other { background: oklch(1 0 0 / 0.04); }
.cmp-row svg { width: 19px; height: 19px; flex: none; }
.cmp-row .qd svg { color: var(--teal); }
.cmp-row .other svg { color: oklch(0.62 0.1 30); }
.cmp-tag { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 640px) { .cmp-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; } .cmp-row > div { padding: 13px 12px; font-size: 13.5px; } }

/* ---------- Areas ---------- */
.areas .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.area {
  display: flex; align-items: center; gap: 10px; padding: 16px 18px; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--r); font-weight: 700; font-family: var(--font-display);
  font-size: 16px; color: var(--ink); transition: border-color .15s, color .15s, background .15s;
  text-decoration: none;
}
.area:hover { border-color: var(--brand); color: var(--brand-700); background: var(--teal-tint); }
.area svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
@media (max-width: 720px) { .areas .wrap { grid-template-columns: 1fr; } .area-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testi { background: var(--surface-2); overflow: hidden; }
.testi-track-wrap { margin-top: 44px; overflow: hidden; }
.testi-track { display: flex; gap: 22px; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.tcard { flex: 0 0 calc((100% - 44px) / 3); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; }
.tcard .stars { display: flex; gap: 3px; color: var(--emergency); margin-bottom: 16px; }
.tcard .stars svg { width: 18px; height: 18px; }
.tcard blockquote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--tint); }
.tcard .who b { font-family: var(--font-display); font-size: 16px; display: block; }
.tcard .who small { color: var(--muted); font-size: 13.5px; }
.testi-nav { display: flex; gap: 10px; margin-top: 30px; }
.testi-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; transition: border-color .15s, background .15s; }
.testi-nav button:hover { border-color: var(--brand); background: var(--teal-tint); }
.testi-nav svg { width: 20px; height: 20px; color: var(--ink); }
@media (max-width: 1000px) { .tcard { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 660px) { .tcard { flex-basis: 100%; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 44px; }
.gitem { border-radius: var(--r); overflow: hidden; background: var(--tint); position: relative; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gitem:hover img { transform: scale(1.06); }
.gitem.tall { grid-row: span 2; }
.gitem.wide { grid-column: span 2; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gitem.wide { grid-column: span 2; } }

/* ---------- FAQ ---------- */
.faq .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-aside .card { background: var(--navy-900); color: #fff; border-radius: var(--r-lg); padding: 30px; margin-top: 26px; }
.faq-aside .card h3 { color: #fff; font-size: 22px; }
.faq-aside .card p { color: oklch(0.84 0.02 240); font-size: 15px; margin-top: 10px; }
.faq-aside .card .btn { margin-top: 20px; width: 100%; }
.faq-list { display: grid; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.qa[open] { border-color: var(--brand-300); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .sign { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-tint); color: var(--brand-700); display: grid; place-items: center; transition: transform .25s, background .2s; }
.qa[open] summary .sign { transform: rotate(45deg); background: var(--brand); color: #fff; }
.qa summary .sign svg { width: 16px; height: 16px; }
.qa .a { padding: 0 24px 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
@media (max-width: 820px) { .faq .wrap { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-700), var(--navy-900)); color: #fff; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, oklch(0.7 0.1 208 / 0.4), transparent 55%); }
.cta .wrap { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.cta .lede { color: oklch(0.9 0.03 230); font-size: 19px; margin-top: 18px; max-width: 44ch; }
.cta-call { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-call .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 40px); color: #fff; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 12px; }
.cta-call .big svg { width: 30px; height: 30px; color: var(--teal); }
.cta-trust { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: oklch(0.85 0.025 230); }
.cta-trust li { display: inline-flex; align-items: center; }
.cta-form { background: #fff; border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-lg); }
.cta-form h3 { color: var(--ink); font-size: 22px; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form .btn { width: 100%; margin-top: 16px; }
@media (max-width: 860px) { .cta .wrap { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: oklch(0.82 0.02 240); padding-block: 64px 28px; }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand-logo { color: #fff; margin-bottom: 18px; }
.footer p { font-size: 15px; line-height: 1.6; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 15px; color: oklch(0.82 0.02 240); transition: color .15s; }
.footer ul a:hover { color: var(--teal); }
.footer .contact-row { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.footer .contact-row svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: oklch(0.7 0.02 240); }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: oklch(1 0 0 / 0.06); transition: background .15s; }
.footer-bottom .socials a:hover { background: var(--brand); }
.footer-bottom .socials svg { width: 18px; height: 18px; color: #fff; }
@media (max-width: 860px) { .footer .wrap { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer .wrap { grid-template-columns: 1fr; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
