/* ═══════════════════════════════════════════════════════════════════
   TRUE SHINE CLEANING — full multi-page styles
   Palette: white base / navy / teal / soft cream
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0E3A5F;
  --navy-2: #0A2A47;
  --ink: #0F1E2C;
  --teal: #14B8A6;
  --teal-dark: #0E8F82;
  --teal-light: #E6FAF7;
  --paper: #FFFFFF;
  --paper-2: #F7FAFB;
  --paper-3: #EEF4F6;
  --line: #E2E8EC;
  --muted: #5A6B78;
  --gold: #F4B400;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(14, 58, 95, 0.06);
  --shadow: 0 8px 28px rgba(14, 58, 95, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 58, 95, 0.16);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ═════════ TOP CONTACT BAR ═════════ */
.topbar { background: var(--navy); color: rgba(255,255,255,0.95); font-size: 0.88rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; height: 44px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; }
.topbar-link strong { font-size: 1rem; font-weight: 800; }
.topbar-right { display: flex; align-items: center; gap: 0.65rem; }
.topbar-hours { font-size: 0.82rem; opacity: 0.85; }
.topbar-social { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; }
.topbar-social:hover { background: var(--teal); }
@media (max-width: 640px) { .topbar-inner { height: auto; padding: 0.4rem 0; flex-direction: column; align-items: flex-start; gap: 0.25rem; } .topbar-link { font-size: 0.8rem; } .topbar-right { display: none; } }

/* ═════════ MAIN NAV ═════════ */
.nav {
  position: sticky; top: 44px; left: 0; right: 0; z-index: 100;
  height: 72px; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(14,58,95,0.06);
  transition: all 0.25s ease;
}
@media (min-width: 768px) { .nav { padding: 0 2rem; } }
.nav.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 6px 24px rgba(14,58,95,0.08); }
@media (max-width: 640px) { .nav { top: auto; } }

.logo { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
.logo-mark { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; background: var(--teal-light); border-radius: 10px; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); letter-spacing: -0.01em; }
.logo-sub { font-weight: 600; font-size: 0.7rem; color: var(--teal-dark); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { color: var(--navy); font-size: 0.92rem; font-weight: 600; padding: 0.5rem 0.85rem; border-radius: 8px; transition: all 0.2s; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--teal-dark); background: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.btn-ghost-nav { font-weight: 700; font-size: 0.88rem; color: var(--navy); padding: 0.5rem 0.75rem; border-radius: 8px; }
.btn-ghost-nav:hover { color: var(--teal-dark); background: var(--teal-light); }
@media (max-width: 1100px) { .btn-ghost-nav { display: none; } }

/* ═════════ HAMBURGER + DRAWER ═════════ */
.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; padding: 0; }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 1050px) { .nav-links { display: none; } .hamburger { display: inline-flex; } }

.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 320px); background: var(--paper); z-index: 99; transform: translateX(105%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); box-shadow: -10px 0 40px rgba(14,58,95,0.18); overflow-y: auto; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-inner { padding: 6rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.drawer-link { display: block; padding: 0.9rem 0.5rem; font-size: 1.05rem; font-weight: 600; color: var(--navy); border-radius: 8px; }
.drawer-link:hover, .drawer-link.active { background: var(--teal-light); color: var(--teal-dark); }
.drawer-phone { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding: 0.85rem 1rem; color: var(--navy); font-weight: 700; border: 1px solid var(--line); border-radius: 10px; }
.drawer-cta { margin-top: 0.5rem; text-align: center; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(14,30,44,0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 98; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ═════════ COUPON RIBBON ═════════ */
.coupon-ribbon { background: linear-gradient(90deg, #FFB347 0%, #FF7E5F 100%); color: #fff; font-size: 0.88rem; font-weight: 600; position: relative; z-index: 101; }
.coupon-ribbon.hidden { display: none; }
.coupon-inner { display: flex; align-items: center; gap: 1rem; padding: 0.55rem 1.25rem; flex-wrap: wrap; justify-content: center; }
.coupon-tag { background: rgba(255,255,255,0.25); padding: 0.18rem 0.6rem; border-radius: 999px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.coupon-text { flex: 1; min-width: 0; }
.coupon-text strong { font-weight: 800; }
.coupon-text code { background: rgba(0,0,0,0.18); padding: 0.15rem 0.45rem; border-radius: 6px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85rem; }
.coupon-cta { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.coupon-close { background: transparent; border: 0; color: #fff; font-size: 1.25rem; cursor: pointer; padding: 0 0.25rem; line-height: 1; opacity: 0.85; }
.coupon-close:hover { opacity: 1; }
@media (max-width: 540px) { .coupon-inner { padding: 0.5rem 1rem; gap: 0.5rem; } .coupon-text { font-size: 0.78rem; flex: 1 1 100%; text-align: center; order: 3; } }

/* ═════════ BUTTONS ═════════ */
.btn-primary, .btn-secondary, .btn-ghost, .btn-ghost-plan {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 700; border-radius: 10px; text-decoration: none; cursor: pointer; transition: all 0.2s;
  border: 1px solid transparent; white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; padding: 0.85rem 1.6rem; font-size: 0.95rem; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(20,184,166,0.32); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-xl { padding: 1.25rem 2.25rem; font-size: 1.05rem; border-radius: 14px; }
.btn-secondary { background: transparent; color: var(--teal-dark); border-color: var(--teal); padding: 0.7rem 1.25rem; font-size: 0.92rem; }
.btn-secondary:hover { background: var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: var(--teal-dark); border: 0; padding: 0; }
.btn-ghost:hover { color: var(--navy); }
.btn-ghost-plan { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.5rem; border-radius: 10px; font-weight: 700; color: var(--teal-dark); border: 2px solid var(--teal); background: transparent; text-align: center; }
.btn-ghost-plan:hover { background: var(--teal); color: #fff; }

/* ═════════ HERO ═════════ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: calc(72px + 44px + 1.5rem) 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; transform: translateZ(0); max-width: 100vw; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.45) 100%); }
.hero-container { position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 720px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal-light); color: var(--teal-dark); padding: 0.45rem 0.95rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; margin: 0 0 1.5rem; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 1.25rem; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 560px; margin: 0 0 1.75rem; line-height: 1.6; }
.hero-sub strong { color: var(--navy); font-weight: 700; }
.hero-trust { margin-bottom: 1.5rem; }
.hero-phone-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; }
@media (max-width: 540px) { .hero { min-height: 80vh; padding: calc(72px + 60px + 1rem) 0 2rem; } }

/* ═════════ HERO PROOF BADGE ═════════ */
.hero-proof { display: inline-flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 1.25rem; margin: 0 0 1.5rem; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.proof-score { display: flex; align-items: center; gap: 0.65rem; padding-right: 1rem; border-right: 1px solid var(--line); }
.proof-num { font-size: 1.85rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.proof-stars { display: flex; gap: 0.1rem; }
.proof-meta strong { display: block; color: var(--navy); font-size: 0.95rem; font-weight: 800; line-height: 1.2; }
.proof-meta span { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }
.proof-source { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.proof-source-icon { color: var(--teal-dark); }
@media (max-width: 640px) { .hero-proof { padding: 0.75rem 1rem; gap: 0.75rem; } .proof-num { font-size: 1.5rem; } .proof-score { padding-right: 0.75rem; } }

/* ═════════ QUOTE FORM ═════════ */
.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); max-width: 540px; }
@media (min-width: 768px) { .quote-form { padding: 2rem; } }
.form-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 0 0 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-label { font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-field input, .form-field select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 0.95rem; background: var(--paper-2); color: var(--ink); transition: all 0.2s; }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(20,184,166,0.18); }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin: 0.85rem 0 0; }
.form-fineprint { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 0.85rem 0 0; }
.form-fineprint a { color: var(--teal-dark); text-decoration: underline; }

/* ═════════ TRUST BADGES BAR ═════════ */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; }
.trust-icon { width: 42px; height: 42px; background: var(--teal-light); color: var(--teal-dark); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item strong { display: block; color: var(--navy); font-weight: 700; font-size: 0.95rem; line-height: 1.1; }
.trust-item small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 0.15rem; }

/* ═════════ PRESS / AS FEATURED IN ═════════ */
.press-bar { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.press-inner { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.press-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0; flex-shrink: 0; }
.press-logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.press-logo { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 700; color: var(--navy); opacity: 0.55; transition: opacity 0.2s; font-style: italic; }
.press-logo:hover { opacity: 0.85; }

/* ═════════ SECTION HELPERS ═════════ */
section { padding: 4.5rem 0; }
@media (min-width: 768px) { section { padding: 5.5rem 0; } }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); margin: 0 0 0.85rem; }
.section-title { font-size: clamp(1.85rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin: 0 0 0.85rem; letter-spacing: -0.015em; line-height: 1.15; }
.section-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: 0; }

.reveal-item { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
body.js-on .reveal-item { opacity: 0; transform: translateY(24px); }
body.js-on .reveal-item.visible { opacity: 1; transform: translateY(0); }

/* ═════════ PRICING TEASER (home page strip) ═════════ */
.pricing-teaser { background: #fff; }
.pricing-teaser-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
@media (min-width: 540px) { .pricing-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-teaser-grid { grid-template-columns: repeat(6, 1fr); gap: 0.85rem; } }
.pt-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; transition: all 0.2s; text-align: center; align-items: center; }
.pt-card:hover { transform: translateY(-3px); border-color: var(--teal); background: #fff; }
.pt-card-featured { background: linear-gradient(180deg, var(--teal-light) 0%, #fff 80%); border-color: var(--teal); }
.pt-head { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.pt-head h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin: 0; }
.pt-badge { display: inline-block; background: linear-gradient(135deg, #F4B400 0%, #E0A800 100%); color: #fff; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 999px; }
.pt-rate { display: inline-flex; align-items: baseline; gap: 0.15rem; color: var(--teal-dark); line-height: 1; }
.pt-rate strong { font-size: 1.85rem; font-weight: 800; letter-spacing: -0.02em; }
.pt-rate span { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.pt-cta { font-size: 0.78rem; font-weight: 700; color: var(--teal-dark); padding: 0; text-decoration: none; }
.pt-cta:hover { color: var(--navy); }
.pricing-teaser-cta { margin-top: 2rem; }

/* ═════════ CALCULATOR ═════════ */
.calc-section { background: radial-gradient(circle at 80% 0%, rgba(20,184,166,0.08) 0%, transparent 50%), var(--paper-2); }
.calc-container { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .calc-container { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 4rem; } }
.calc-intro { max-width: 100%; min-width: 0; }
.calc-intro .section-header { text-align: left; margin: 0 0 1.5rem; max-width: 100%; }
.calc-perks { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 1.5rem 0; }
.calc-perk { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.calc-perk svg { color: var(--teal); }
.calc-callout { display: flex; align-items: center; gap: 0.65rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.85rem 1rem; font-size: 0.92rem; color: var(--navy); margin-top: 1rem; }
.calc-callout svg { color: var(--teal); flex-shrink: 0; }

.calc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); min-width: 0; max-width: 100%; }
@media (min-width: 768px) { .calc-card { padding: 2rem; } }
.calc-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin: 0 0 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.calc-step { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.calc-step span { width: 24px; height: 24px; border-radius: 50%; background: var(--paper-3); color: var(--muted); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; }
.calc-step.active { color: var(--navy); }
.calc-step.active span { background: var(--teal); color: #fff; }

.calc-field { display: block; margin-bottom: 1.25rem; }
.calc-field .form-label, .calc-field legend.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 0.55rem; padding: 0; }
.calc-field select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 0.95rem; background: var(--paper-2); color: var(--ink); transition: all 0.2s; }
.calc-field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(20,184,166,0.18); }

.clean-types { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.55rem; }
@media (min-width: 520px) { .clean-types { grid-template-columns: 1fr 1fr; } }
.clean-chip { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 1rem; cursor: pointer; transition: all 0.15s; font-family: inherit; display: flex; flex-direction: column; gap: 0.2rem; }
.clean-chip strong { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.clean-chip small { font-size: 0.74rem; color: var(--muted); line-height: 1.3; }
.clean-chip:hover { border-color: var(--teal); }
.clean-chip.active { background: var(--teal-light); border-color: var(--teal); }
.clean-chip.active strong { color: var(--teal-dark); }

.calc-result { margin-top: 1.5rem; padding: 1.75rem 1.5rem; background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%); border: 1px solid var(--teal); border-radius: 14px; text-align: center; }
.calc-result-row { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.calc-result-label { font-size: 0.82rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.calc-result-price { font-size: clamp(2.6rem, 7vw, 3.6rem); font-weight: 800; color: var(--teal-dark); letter-spacing: -0.02em; line-height: 1; }
.calc-result-note { font-size: 0.92rem; color: var(--navy); margin: 0 0 1.25rem; font-weight: 600; }
.calc-result-cta { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }

/* ═════════ 3-STEP PROCESS ═════════ */
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.step-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.step-num { position: absolute; top: -14px; left: 2rem; background: var(--teal); color: #fff; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; font-size: 0.95rem; box-shadow: 0 4px 12px rgba(20,184,166,0.4); }
.step-icon { width: 56px; height: 56px; background: var(--teal-light); color: var(--teal-dark); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0 0 0.5rem; }
.step-card p { color: var(--muted); margin: 0; line-height: 1.6; font-size: 0.95rem; }

/* ═════════ SERVICES (alternating + grid) ═════════ */
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-img { aspect-ratio: 4/3; background: var(--paper-2); overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0 0 0.5rem; }
.service-card p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; flex: 1; }

.svc-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .svc-row { grid-template-columns: 1fr 1fr; } }
.svc-row-img { aspect-ratio: 4/3; overflow: hidden; }
@media (min-width: 768px) { .svc-row-img { aspect-ratio: auto; min-height: 420px; } }
.svc-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.svc-row:hover .svc-row-img img { transform: scale(1.05); }
.svc-row-body { padding: 1.75rem; }
@media (min-width: 768px) { .svc-row-body { padding: 2.5rem 3rem; } }
.svc-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); background: var(--teal-light); padding: 0.35rem 0.85rem; border-radius: 999px; margin: 0 0 1rem; }
.svc-row-body h3 { font-size: clamp(1.5rem, 2.5vw, 1.85rem); font-weight: 800; color: var(--navy); margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.svc-row-body > p { color: var(--muted); line-height: 1.65; margin: 0 0 1.25rem; }
.svc-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.svc-list li { position: relative; padding-left: 1.5rem; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.45rem; font-weight: 500; }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
@media (min-width: 768px) { .svc-row-reverse .svc-row-img { order: 2; } .svc-row-reverse .svc-row-body { order: 1; } }

/* ═════════ ADD-ONS ═════════ */
.addons-section { background: var(--paper-2); }
.addons-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
@media (min-width: 540px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: all 0.25s; }
.addon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }
.addon-icon { width: 56px; height: 56px; background: var(--teal-light); color: var(--teal-dark); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.25rem; }
.addon-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0; }
.addon-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; margin: 0; flex: 1; }
.addon-from { display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 0.3rem 0.7rem; border-radius: 999px; margin-top: auto; align-self: flex-start; }

/* ═════════ 3-TIER PLANS ═════════ */
.plans-section { background: #fff; }
.plans-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; position: relative; transition: all 0.25s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.plan-card-popular { background: linear-gradient(180deg, var(--teal-light) 0%, #fff 30%); border: 2px solid var(--teal); transform: scale(1.02); }
.plan-card-popular:hover { transform: scale(1.02) translateY(-3px); }
.plan-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; padding: 0.3rem 1rem; border-radius: 999px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 12px rgba(20,184,166,0.4); }
.plan-head h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 0 0 0.25rem; letter-spacing: -0.01em; }
.plan-tag { display: inline-block; background: var(--paper-2); color: var(--muted); padding: 0.25rem 0.65rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.plan-card-popular .plan-tag { background: var(--teal); color: #fff; }
.plan-price { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.plan-save { display: block; font-size: clamp(1.85rem, 4vw, 2.4rem); font-weight: 800; color: var(--teal-dark); line-height: 1.05; letter-spacing: -0.02em; }
.plan-discount { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plan-features li { position: relative; padding-left: 1.5rem; color: var(--navy); font-size: 0.92rem; font-weight: 500; }
.plan-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

/* ═════════ VIDEO TESTIMONIAL ═════════ */
.video-section { background: var(--paper-2); }
.video-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .video-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.video-frame { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); box-shadow: var(--shadow-lg); }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=900&h=600&fit=crop&q=80'); background-size: cover; background-position: center; }
.video-placeholder::before { content: ''; position: absolute; inset: 0; background: rgba(14,30,44,0.55); }
.video-play { position: relative; z-index: 1; width: 88px; height: 88px; background: rgba(255,255,255,0.95); color: var(--teal-dark); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; padding-left: 6px; box-shadow: 0 12px 32px rgba(0,0,0,0.3); cursor: pointer; transition: transform 0.2s; will-change: transform; }
.video-play:hover { transform: scale(1.08); }
.video-overlay-text { position: relative; z-index: 1; margin-top: 1.25rem; background: rgba(255,255,255,0.95); padding: 0.65rem 1.15rem; border-radius: 12px; text-align: center; color: var(--navy); }
.video-overlay-text strong { display: block; font-weight: 800; }
.video-overlay-text span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }
.video-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.5rem; }
.video-quote { background: #fff; border-left: 4px solid var(--teal); padding: 1.25rem 1.5rem; border-radius: 0 12px 12px 0; margin: 0 0 1.5rem; box-shadow: var(--shadow-sm); }
.video-quote p { font-size: 1.02rem; color: var(--navy); line-height: 1.6; margin: 0 0 0.75rem; font-style: italic; font-weight: 500; }
.video-quote cite { font-size: 0.85rem; color: var(--muted); font-style: normal; font-weight: 600; }

/* ═════════ REVIEWS CAROUSEL ═════════ */
.reviews-section { background: #fff; }
.reviews-summary { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.25rem; }
.reviews-score { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.reviews-stars { display: flex; gap: 0.15rem; }
.reviews-meta { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.reviews-carousel { position: relative; margin-top: 1rem; }
.carousel-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 0.5rem 0.25rem 1.5rem; margin: 0 -0.25rem; scrollbar-width: thin; scrollbar-color: var(--teal-light) transparent; }
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 3px; }
.review-card { flex: 0 0 calc(100% - 1rem); scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; margin: 0; display: flex; flex-direction: column; gap: 1rem; transition: box-shadow 0.25s, transform 0.25s; }
@media (min-width: 640px) { .review-card { flex: 0 0 calc(50% - 1rem); } }
@media (min-width: 900px) { .review-card { flex: 0 0 calc(33.333% - 1rem); } }
.review-stars { display: flex; gap: 0.2rem; }
.review-card blockquote { font-size: 0.98rem; color: var(--navy); line-height: 1.6; margin: 0; font-weight: 500; flex: 1; quotes: """ """; }
.review-card blockquote::before { content: open-quote; color: var(--teal); font-size: 1.5rem; line-height: 0; margin-right: 0.1rem; vertical-align: -0.25em; }
.review-card blockquote::after { content: close-quote; color: var(--teal); }
.review-card figcaption { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.92rem; flex-shrink: 0; }
.review-meta strong { display: block; color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.review-meta small { color: var(--muted); font-size: 0.78rem; }
.carousel-btn { position: absolute; top: 40%; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); transition: all 0.2s; z-index: 2; }
.carousel-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
@media (max-width: 640px) { .carousel-btn { display: none; } }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; padding: 0; transition: all 0.2s; }
.carousel-dots button.active { background: var(--teal); width: 28px; border-radius: 5px; }

/* ═════════ HERITAGE / ABOUT ═════════ */
.heritage-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 4rem 0; }
.heritage-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: center; }
@media (min-width: 900px) { .heritage-inner { grid-template-columns: auto 1fr auto; gap: 3rem; } }
.heritage-badge { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(20,184,166,0.3); border-radius: var(--radius-lg); padding: 1.25rem 1.75rem; }
.heritage-years { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; line-height: 1; color: var(--teal); letter-spacing: -0.02em; }
.heritage-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); line-height: 1.3; }
.heritage-text h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin: 0 0 0.75rem; letter-spacing: -0.015em; line-height: 1.2; }
.heritage-text p { color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0; max-width: 540px; }
.heritage-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.heritage-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 0.75rem 1rem; text-align: center; }
.heritage-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--teal); line-height: 1.1; }
.heritage-stat span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; margin-top: 0.15rem; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: -18px; right: 18px; background: #fff; padding: 1rem 1.25rem; border-radius: 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.2; }
.about-badge strong { color: var(--teal-dark); font-size: 1.05rem; font-weight: 800; }
.about-badge span { color: var(--muted); font-size: 0.78rem; }
.about-lead { font-size: 1.1rem; color: var(--navy); line-height: 1.65; margin: 0 0 1rem; }
.about-body { color: var(--muted); line-height: 1.65; margin: 0 0 2rem; }
.about-pillars { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 540px) { .about-pillars { grid-template-columns: 1fr 1fr; } }
.pillar { display: flex; gap: 0.85rem; align-items: flex-start; }
.pillar-icon { flex-shrink: 0; width: 42px; height: 42px; background: var(--teal-light); color: var(--teal-dark); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }
.pillar h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.25rem; }
.pillar p { color: var(--muted); margin: 0; font-size: 0.88rem; line-height: 1.5; }
.about-cta { display: inline-flex; }

/* ═════════ STATS STRIP ═════════ */
.stats-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 2rem 1.25rem; margin-top: 3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); padding: 2.5rem 2rem; } }
.stat-item { padding: 0.5rem 0; }
.stat-num { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--teal-dark); line-height: 1; letter-spacing: -0.02em; }
.stat-label { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; letter-spacing: 0.04em; }

/* ═════════ FAQS ═════════ */
.faqs-section { background: var(--paper-2); }
.faqs-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
@media (min-width: 900px) { .faqs-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }
.faqs-head .section-header { text-align: left; margin: 0 0 2rem; }
.faqs-cta { margin-top: 0.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-dark); }
.faq-chev { flex-shrink: 0; color: var(--teal-dark); transition: transform 0.25s; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-body { padding: 0 1.25rem 1.25rem; color: var(--muted); }
.faq-body p { margin: 0; line-height: 1.65; }

/* ═════════ AREAS ═════════ */
.areas-section { background: var(--paper-2); }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.area-card { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.15rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); font-weight: 600; font-size: 0.95rem; transition: all 0.2s; text-decoration: none; }
.area-card:hover { border-color: var(--teal); background: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.area-icon { color: var(--teal); font-size: 0.7rem; }

.city-landing { background: #fff; padding: 3.5rem 0; }
.city-landing.city-alt { background: var(--paper-2); }
.city-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: center; }
@media (min-width: 900px) { .city-inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.city-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-dark); background: var(--teal-light); padding: 0.35rem 0.85rem; border-radius: 999px; margin: 0 0 1rem; }
.city-content h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 800; color: var(--navy); margin: 0 0 1rem; letter-spacing: -0.015em; line-height: 1.2; }
.city-content > p { color: var(--muted); line-height: 1.65; margin: 0 0 1.25rem; }
.city-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.city-list li { position: relative; padding-left: 1.5rem; color: var(--navy); font-size: 0.92rem; font-weight: 500; }
.city-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.city-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.city-stat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem 1rem; text-align: center; }
.city-landing.city-alt .city-stat { background: var(--paper-2); }
.city-stat strong { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--teal-dark); line-height: 1.1; letter-spacing: -0.02em; }
.city-stat span { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

/* ═════════ OFFERS ═════════ */
.offers-section { background: #fff; }
.offers-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
@media (min-width: 900px) { .offers-inner { grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; } }
.offer-card { position: relative; border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; border: 1px solid var(--line); transition: all 0.3s; overflow: hidden; }
.offer-primary { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; border-color: transparent; }
.offer-primary h2, .offer-primary p { color: #fff; }
.offer-primary p strong { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.offer-tag { display: inline-block; background: rgba(255,255,255,0.22); color: #fff; padding: 0.3rem 0.85rem; border-radius: 999px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; align-self: flex-start; margin-bottom: 0.5rem; }
.offer-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin: 0; }
.offer-primary h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 0; letter-spacing: -0.015em; line-height: 1.15; }
.offer-primary p { margin: 0; line-height: 1.6; font-size: 0.98rem; color: rgba(255,255,255,0.92); }
.offer-primary .btn-primary { align-self: flex-start; background: #fff; color: var(--teal-dark); }
.offer-primary .btn-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.offer-secondary { background: var(--paper-2); }
.offer-icon { width: 56px; height: 56px; background: var(--teal-light); color: var(--teal-dark); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; }
.offer-secondary h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0; }
.offer-secondary p { color: var(--muted); margin: 0; font-size: 0.92rem; line-height: 1.55; flex: 1; }

/* ═════════ QUOTE BAND (with checklist) ═════════ */
.quote-band { background: linear-gradient(135deg, var(--teal-light) 0%, #fff 60%); }
.quote-band-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: center; }
@media (min-width: 900px) { .quote-band-inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.quote-band-head h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin: 0 0 1rem; letter-spacing: -0.015em; line-height: 1.15; }
.quote-band-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 0; }
.quote-band-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.65rem; }
.quote-band-list li { display: flex; align-items: center; gap: 0.65rem; color: var(--navy); font-weight: 600; font-size: 0.98rem; }
.quote-band-list svg { color: var(--teal); flex-shrink: 0; }

/* ═════════ CONTACT ═════════ */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.15rem; background: var(--paper-2); border-radius: 14px; color: var(--navy); text-decoration: none; transition: background 0.2s, transform 0.2s; }
a.contact-item:hover { background: var(--teal-light); transform: translateX(4px); }
.contact-icon { flex-shrink: 0; width: 40px; height: 40px; background: #fff; color: var(--teal-dark); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.contact-item strong { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.contact-item span { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.contact-map { min-height: 380px; }
.map-card { height: 100%; min-height: 380px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--teal-light) 0%, var(--paper-3) 100%); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; color: var(--navy); }
.map-card svg { color: var(--teal-dark); margin-bottom: 1rem; }
.map-card p { margin: 0 0 0.5rem; font-size: 1rem; }
.map-card p strong { font-size: 1.15rem; font-weight: 800; }
.map-note { color: var(--muted); font-size: 0.82rem; margin-top: 1rem; max-width: 260px; }

/* ═════════ FOOTER ═════════ */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 4rem 0 1.5rem; font-size: 0.9rem; }
.footer .logo-name { color: #fff; }
.footer .logo-sub { color: var(--teal-light); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin: 1rem 0 0; max-width: 360px; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 { color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-col a { color: rgba(255,255,255,0.78); padding: 0.3rem 0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; }
.footer-bottom a { color: var(--teal-light); }
.footer-bottom a:hover { color: #fff; }

/* ═════════ STICKY MOBILE BAR ═════════ */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); padding: 0.65rem; box-shadow: 0 -4px 16px rgba(14,58,95,0.08); transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky-call { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--teal); color: #fff; padding: 0.95rem 1rem; border-radius: 12px; font-weight: 800; font-size: 1rem; text-decoration: none; }
.mobile-sticky-call:hover { background: var(--teal-dark); }
@media (max-width: 768px) { .mobile-sticky { display: block; } body { padding-bottom: 80px; } }

/* ═════════ MOTION TEXT ANIMATIONS ═════════ */
.motion-word, .motion-char { display: inline-block; overflow: hidden; vertical-align: top; }
.motion-word > span, .motion-char > span { display: inline-block; will-change: transform; }
[data-text-animate] { display: inline-block; }
.stagger-child { opacity: 0; transform: translateY(20px); }
[data-magnetic] { display: inline-block; cursor: pointer; will-change: transform; }
[data-parallax] { will-change: transform; transform: translateZ(0); }

/* ═════════ RESPONSIVE ═════════ */
@media (max-width: 540px) {
  .hero { padding: calc(72px + 60px + 1rem) 0 2rem; min-height: 80vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-item { opacity: 1; transform: none; }
}