/* ============================================================
   AquaFix — Lead-gen template design system
   Blue trust system · Sora + Hanken Grotesk · mobile-first
   ============================================================ */

:root {
  /* color */
  --ink: #0a1a2b;          /* headings / near-black navy */
  --ink-soft: #1d3245;
  --muted: #5a6b7b;        /* secondary text */
  --faint: #8a99a8;
  --bg: #ffffff;
  --surface: #f4f7fb;      /* cool light section bg */
  --surface-2: #eaf0f7;
  --line: #e3e9f1;
  --line-strong: #d3dce7;

  --brand: #1668e3;        /* primary blue */
  --brand-700: #0f4fb8;
  --brand-600: #1459c9;
  --brand-50: #e9f1fe;
  --brand-100: #d3e3fd;

  --call: #16a34a;         /* phone / call green */
  --call-700: #128040;
  --call-50: #e8f7ee;

  --amber: #f59e0b;        /* urgency */
  --amber-50: #fef3e2;

  /* radius */
  --r-xs: 8px;
  --r-sm: 11px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* shadow */
  --sh-sm: 0 1px 2px rgba(13,38,66,.06), 0 1px 3px rgba(13,38,66,.05);
  --sh: 0 2px 6px rgba(13,38,66,.06), 0 8px 24px rgba(13,38,66,.07);
  --sh-lg: 0 8px 18px rgba(13,38,66,.08), 0 24px 60px rgba(13,38,66,.12);
  --sh-brand: 0 10px 26px rgba(22,104,227,.30);
  --sh-call: 0 8px 20px rgba(22,163,74,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1140px;

  /* fonts (override targets for Tweaks) */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --accent: var(--brand);
  --accent-700: var(--brand-700);
  --accent-50: var(--brand-50);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 64px; }
.section-tight { padding-block: 44px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-700);
}
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(26px, 6vw, 40px); margin-top: 12px; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 12px; }
.lead { color: var(--muted); font-size: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 14px 22px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--accent-700); }
.btn-call { background: var(--call); color: #fff; box-shadow: var(--sh-call); }
.btn-call:hover { background: var(--call-700); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); box-shadow: var(--sh-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-700); }
.btn-soft { background: var(--accent-50); color: var(--accent-700); }
.btn-soft:hover { background: var(--brand-100); }
.btn-lg { padding: 17px 28px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn-link { color: var(--accent-700); font-family: var(--font-display); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.btn-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn-link:hover svg { transform: translateX(3px); }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.chip svg { width: 14px; height: 14px; color: var(--call); }
.badge-urgent {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #9a6206;
  background: var(--amber-50); border: 1px solid #f6dca0;
  padding: 6px 13px; border-radius: var(--r-pill);
}
.badge-urgent .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(245,158,11,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,158,11,.5);} 70%{ box-shadow: 0 0 0 7px rgba(245,158,11,0);} 100%{box-shadow:0 0 0 0 rgba(245,158,11,0);} }

/* ---------- cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.surface { background: var(--surface); }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(13,38,66,.02), 0 6px 20px -16px rgba(13,38,66,.25); }
.hdr-row { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(150deg, var(--brand) 0%, #2f86ff 100%); display: grid; place-items: center; color: #fff; box-shadow: var(--sh-brand); flex: none; }
.brand-mark svg { width: 21px; height: 21px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; letter-spacing: .04em; color: var(--call); margin-top: 1px; }
.nav { display: none; align-items: center; gap: 4px; margin-left: 8px; }
.nav a { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink-soft); padding: 9px 14px; border-radius: var(--r-pill); transition: background .15s, color .15s; position: relative; }
.nav a:hover { background: var(--surface); color: var(--ink); }
.nav a.active { color: var(--accent-700); background: var(--accent-50); }
.nav a.locked { color: var(--faint); cursor: default; }
.nav a.locked:hover { background: transparent; }
.nav a.locked svg { width: 12px; height: 12px; margin-left: 5px; opacity: .7; vertical-align: -1px; }
.hdr-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hdr-phone { display: none; }
.hamburger { margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong); background: #fff; display: grid; place-items: center; color: var(--ink); }
.hamburger svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer-host { position: fixed; inset: 0; overflow: clip; pointer-events: none; z-index: 80; }
.drawer-host > * { pointer-events: auto; }
.drawer-bd { position: absolute; inset: 0; background: rgba(10,26,43,.45); backdrop-filter: blur(2px); z-index: 80; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer-bd.open { opacity: 1; pointer-events: auto; }
.drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: #fff; z-index: 90; transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column; box-shadow: var(--sh-lg); }
.drawer.open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.drawer-nav { padding: 10px 14px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-weight: 500; font-size: 17px; padding: 14px 14px; border-radius: var(--r); color: var(--ink); }
.drawer-nav a.active { background: var(--accent-50); color: var(--accent-700); }
.drawer-nav a.locked { color: var(--faint); }
.drawer-lock-pill { font-size: 11px; font-weight: 600; font-family: var(--font-display); color: var(--accent-700); background: var(--accent-50); padding: 3px 9px; border-radius: var(--r-pill); }
.drawer-foot { margin-top: auto; padding: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 30px; align-items: center; padding-block: 36px 8px; }
.hero h1 { font-size: clamp(33px, 8.5vw, 60px); }
.hero .sub { color: var(--muted); font-size: clamp(16px, 4.4vw, 20px); margin-top: 18px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.hero-proof .stars { color: var(--amber); letter-spacing: 1px; }
.hero-media { position: relative; }
.hero-media image-slot { width: 100%; aspect-ratio: 4/3.4; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.hero-float { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 12px 14px; display: flex; align-items: center; gap: 11px; }
.hero-float .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.hero-float strong { font-family: var(--font-display); font-size: 15px; display: block; }
.hero-float span { font-size: 12.5px; color: var(--muted); }

/* hero variant: form card */
.hero-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 22px; }
.hero-form-card h3 { font-size: 21px; }
.hero-form-card .muted { color: var(--muted); font-size: 14px; margin-top: 5px; }

/* hero variant: full-bleed */
.hero-bleed { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; }
.hero-bleed image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.hero-bleed .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,38,.15) 0%, rgba(8,22,38,.82) 100%); }
.hero-bleed .inner { position: relative; padding: 30px; color: #fff; }
.hero-bleed h1 { color: #fff; }
.hero-bleed .sub { color: rgba(255,255,255,.85); }

/* ---------- trust bar ---------- */
.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.trust-cell { background: #fff; padding: 22px 18px; text-align: center; }
.trust-cell .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 6vw, 36px); letter-spacing: -.03em; color: var(--ink); }
.trust-cell .l { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.svc {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--brand-100); }
.svc-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-50); color: var(--accent-700); display: grid; place-items: center; flex: none; }
.svc-ic svg { width: 25px; height: 25px; }
.svc h3 { font-size: 19px; }
.svc p { color: var(--muted); font-size: 15px; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 4px; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.why { display: flex; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--sh-sm); }
.why-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--call-50); color: var(--call-700); display: grid; place-items: center; flex: none; }
.why-ic svg { width: 23px; height: 23px; }
.why h3 { font-size: 17.5px; margin-bottom: 5px; }
.why p { color: var(--muted); font-size: 14.5px; }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gal-item { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.gal-item image-slot { width: 100%; aspect-ratio: 1/1; border-radius: var(--r); }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 11px; background: linear-gradient(transparent, rgba(8,22,38,.78)); color: #fff; font-size: 12.5px; font-weight: 500; font-family: var(--font-display); pointer-events: none; }

/* ---------- lead form ---------- */
.lead { }
.form { display: grid; gap: 13px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 13.5px; color: var(--ink-soft); }
.field .req { color: var(--brand); }
.input, .textarea, .select {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  padding: 13px 14px; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-50); }
.input.err, .textarea.err { border-color: #e0564f; box-shadow: 0 0 0 4px #fdeceb; }
.field .msg { font-size: 12.5px; color: #d4453d; }
.textarea { resize: vertical; min-height: 92px; }
.form-row { display: grid; gap: 13px; }
.form-note { font-size: 12.5px; color: var(--faint); display: flex; align-items: center; gap: 7px; }
.form-note svg { width: 15px; height: 15px; color: var(--call); flex: none; }
.form-success { text-align: center; padding: 22px 8px; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: var(--call-50); color: var(--call); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .ok svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; }
.form-success p { color: var(--muted); margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(140deg, #0c2c5a 0%, var(--brand) 60%, #2f86ff 100%); border-radius: var(--r-xl); color: #fff; padding: 40px 26px; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-band h2 { color: #fff; font-size: clamp(25px, 6vw, 38px); position: relative; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 17px; position: relative; max-width: 460px; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; position: relative; }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm); }
.tst .stars { color: var(--amber); letter-spacing: 1px; font-size: 15px; }
.tst blockquote { margin: 12px 0 16px; font-size: 16px; color: var(--ink-soft); }
.tst .who { display: flex; align-items: center; gap: 11px; }
.tst .av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-50); color: var(--accent-700); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.tst .who b { font-family: var(--font-display); font-size: 14.5px; display: block; }
.tst .who span { font-size: 12.5px; color: var(--muted); }

/* ---------- upgrade / locked modules ---------- */
.lock-module { position: relative; border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg); background: repeating-linear-gradient(135deg, #fbfcfe, #fbfcfe 12px, #f4f7fb 12px, #f4f7fb 24px); padding: 24px; text-align: center; }
.lock-badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--accent-700); background: var(--accent-50); border: 1px solid var(--brand-100); padding: 6px 13px; border-radius: var(--r-pill); }
.lock-badge svg { width: 14px; height: 14px; }
.lock-module h3 { font-size: 19px; margin-top: 13px; }
.lock-module p { color: var(--muted); font-size: 14.5px; margin-top: 7px; max-width: 420px; margin-inline: auto; }
.lock-plan { font-size: 12px; color: var(--faint); margin-top: 12px; }
.lock-plan b { color: var(--ink-soft); }
.lock-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
/* paid (revealed) state */
.module-live { border-style: solid; border-color: var(--line); background: #fff; box-shadow: var(--sh-sm); }
.plan-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; font-family: var(--font-display); letter-spacing: .03em; padding: 3px 9px; border-radius: var(--r-pill); }
.plan-tag.Business { color: #0f4fb8; background: var(--brand-50); }
.plan-tag.Growth { color: #128040; background: var(--call-50); }
.plan-tag.Agency { color: #9a6206; background: var(--amber-50); }

/* ---------- footer ---------- */
.ft { background: var(--ink); color: #cdd9e6; padding-block: 48px 28px; }
.ft a { color: #cdd9e6; }
.ft-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.ft .brand { color: #fff; }
.ft-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-display); font-weight: 600; }
.ft-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-col a:hover { color: #fff; }
.ft-col .locked { color: #6f8197; display: inline-flex; align-items: center; gap: 7px; }
.ft-col .locked svg { width: 12px; height: 12px; }
.ft-contact { display: flex; flex-direction: column; gap: 12px; }
.ft-contact .row { display: flex; gap: 11px; align-items: flex-start; }
.ft-contact svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: #8ea0b3; }

/* ---------- sticky mobile action bar ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff; border-top: 1px solid var(--line); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; gap: 9px; box-shadow: 0 -4px 24px rgba(13,38,66,.10); }
.mbar .btn { padding: 14px 10px; font-size: 15px; }

/* desktop floating CTA */
.float-cta { position: fixed; right: 22px; bottom: 24px; z-index: 65; display: none; }
.float-cta .btn { box-shadow: var(--sh-lg); }

/* ---------- about ---------- */
.about-hero { display: grid; gap: 26px; align-items: center; }
.about-hero image-slot { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.story p { color: var(--muted); font-size: 16.5px; margin-top: 14px; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.val { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-sm); }
.val .n { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent); }
.val h3 { font-size: 18px; margin: 9px 0 7px; }
.val p { color: var(--muted); font-size: 14.5px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding-bottom: 26px; position: relative; }
.tl-item::before { content: ""; position: absolute; left: 27px; top: 36px; bottom: -4px; width: 2px; background: var(--line); }
.tl-item:last-child::before { display: none; }
.tl-year { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; background: var(--accent); width: 54px; height: 30px; border-radius: var(--r-pill); display: grid; place-items: center; }
.tl-body h3 { font-size: 17px; margin-bottom: 5px; }
.tl-body p { color: var(--muted); font-size: 14.5px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; box-shadow: var(--sh-sm); }
.ci-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.ci-card .ic.call { background: var(--call-50); color: var(--call-700); }
.ci-card .ic.mail { background: var(--accent-50); color: var(--accent-700); }
.ci-card .ic.pin { background: var(--amber-50); color: #9a6206; }
.ci-card .lbl { font-size: 12.5px; color: var(--muted); }
.ci-card .val2 { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.ci-card svg { width: 22px; height: 22px; }
.hours { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--sh-sm); }
.hours h3 { font-size: 16px; margin-bottom: 12px; }
.hours .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.hours .row:last-child { border-bottom: none; }
.hours .row span:first-child { color: var(--muted); }
.hours .row span:last-child { font-weight: 600; font-family: var(--font-display); }
.map { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); min-height: 240px; background:
   linear-gradient(0deg, rgba(22,104,227,.04), rgba(22,104,227,.04)),
   repeating-linear-gradient(0deg, #eef3f9, #eef3f9 23px, #e4ebf4 23px, #e4ebf4 24px),
   repeating-linear-gradient(90deg, #eef3f9, #eef3f9 23px, #e4ebf4 23px, #e4ebf4 24px); }
.map .road { position: absolute; background: #fff; box-shadow: 0 0 0 1px #dde6f0; }
.map .pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-100%); color: var(--brand); filter: drop-shadow(0 6px 10px rgba(22,104,227,.35)); }
.map .pin svg { width: 44px; height: 44px; }
.map .maptag { position: absolute; left: 50%; top: 46%; transform: translate(-50%, 12px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 13px; font-size: 12.5px; font-weight: 600; font-family: var(--font-display); box-shadow: var(--sh); white-space: nowrap; }

/* ---------- page hero (sub pages) ---------- */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding-block: 40px; }
.page-hero h1 { font-size: clamp(30px, 7vw, 46px); }
.page-hero p { color: var(--muted); font-size: 18px; margin-top: 12px; max-width: 560px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.crumb a { color: var(--accent-700); }

/* ---------- plan switcher (demo control) ---------- */
.planbar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 84px; z-index: 75; display: flex; align-items: center; gap: 2px; background: #0c1d31; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-pill); padding: 5px; box-shadow: var(--sh-lg); }
.planbar .lab { color: #9fb2c6; font-size: 11.5px; font-weight: 600; font-family: var(--font-display); padding: 0 10px 0 12px; letter-spacing: .03em; }
.planbar button { border: none; background: transparent; color: #cdd9e6; font-family: var(--font-display); font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: var(--r-pill); transition: background .15s, color .15s; }
.planbar button.on { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
@media (max-width: 560px) { .planbar { bottom: 78px; } .planbar .lab { display: none; } .planbar button { padding: 8px 12px; font-size: 12.5px; } }

/* reveal animation for revealed modules */
.reveal-in { animation: revealIn .45s var(--ease) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (min-width: 700px) {
  .section { padding-block: 80px; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .tst-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .lock-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 56px 48px; }
}
@media (min-width: 960px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .hdr-phone { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; padding-block: 60px 30px; }
  .hero-grid.form-layout { grid-template-columns: 1fr .82fr; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .about-hero { grid-template-columns: 1fr 1fr; }
  .float-cta { display: block; }
  .mbar { display: none; }
  body.has-mbar { } /* desktop hides mbar */
  .lock-grid { grid-template-columns: repeat(3, 1fr); }
}
/* hide desktop float on small */
@media (max-width: 959px) { .float-cta { display: none; } }

/* keep content clear of fixed bars on mobile */
@media (max-width: 959px) { main { padding-bottom: 78px; } }
