/* =============================================================================
   Secure Electric — design system
   Palette: ink (near-black), warm paper, brand orange, gold stars.
   Type: Manrope (display) + Inter (body).
   ========================================================================== */

:root {
  --ink: #0B0F14;
  --ink-2: #121820;
  --ink-3: #1A222C;
  --paper: #F6F4EF;
  --paper-2: #EEEBE3;
  --white: #FFFFFF;
  --text: #161B22;
  --text-2: #3D4652;
  --muted: #6A7482;
  --accent: #F0501F;
  --accent-hover: #D9440F;
  --accent-soft: rgba(240, 80, 31, 0.12);
  --gold: #F5B301;
  --success: #1F9D55;
  --danger: #D92D20;
  --line: rgba(11, 15, 20, 0.10);
  --line-strong: rgba(11, 15, 20, 0.18);
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 20, 0.05), 0 1px 3px rgba(11, 15, 20, 0.07);
  --shadow-md: 0 12px 32px -12px rgba(11, 15, 20, 0.25);
  --shadow-lg: 0 32px 64px -24px rgba(11, 15, 20, 0.45);
  --font-display: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 8vw, 112px);
  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.5em; font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); line-height: 1.02; letter-spacing: -0.035em; }
h1 em { font-style: normal; color: var(--accent); }
.h1-line { display: block; white-space: nowrap; }
@media (max-width: 480px) { .hide-sm { display: none; } }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.85rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
address { font-style: normal; }
blockquote { margin: 0; }
figure { margin: 0; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding: var(--section) 0; }
.section-tight { padding-top: calc(var(--section) * 0.5); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head.split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.section-head.split > div:first-child { max-width: 760px; }
.section-head h2 { margin-bottom: 0.35em; }
.section-head p:last-child { margin-bottom: 0; }
.section-foot { margin-top: clamp(28px, 4vw, 44px); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-light { color: #FFB08E; }
.lead { font-size: 1.15rem; color: var(--text-2); }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .2s; }
.text-link:hover { border-bottom-color: currentColor; }
.text-link .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.text-link:hover .icon { transform: translateX(3px); }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1;
  border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -12px rgba(240, 80, 31, 0.7); }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 16px 32px -12px rgba(240, 80, 31, 0.8); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 12px 28px -14px rgba(11, 15, 20, 0.6); }
.btn-dark:hover { background: var(--ink-3); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--paper); }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.45); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn.is-loading .btn-label::after { content: "…"; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, 0.82); font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar p { margin: 0; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar .icon { width: 1em; height: 1em; color: var(--accent); }
.topbar strong { color: #fff; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-sep { opacity: 0.4; }
@media (max-width: 900px) { .topbar-right { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
/* Frosted background lives on a pseudo-element so the header itself never becomes the
   containing block for the fixed mobile nav (backdrop-filter would do that). */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(11, 15, 20, 0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo-mark { width: 38px; height: 38px; color: var(--ink); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.brand-name span { color: var(--accent); }
.brand-light .brand-name { color: #fff; }
.brand-light .logo-mark { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a { padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; color: var(--text-2); transition: background .2s, color .2s; }
.main-nav > a:hover { background: var(--paper); color: var(--ink); }
.nav-mobile-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; padding: 6px 10px 6px 6px; border-radius: 12px; transition: background .2s; }
.header-phone:hover { background: var(--paper); }
.header-phone-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: #fff; }
.header-phone-icon .icon { width: 18px; height: 18px; }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone-text small { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.header-phone-text strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ink); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1100px) {
  .main-nav > a { padding: 10px 10px; font-size: 0.9rem; }
  .header-quote { display: none; }
}
@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .header-phone-text { display: none; }
  .header-phone { padding: 0; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: var(--nav-top, var(--header-h)); right: 0; bottom: 0; left: 0; z-index: 80;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 20px var(--gutter) 32px;
    background: #fff;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: none; opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .main-nav > a { font-size: 1.15rem; padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-mobile-cta { display: grid; gap: 12px; margin-top: 20px; }
  .nav-mobile-cta .btn { width: 100%; padding: 16px; }
}

/* ---------- Hero (dark, home) ---------- */
.hero { position: relative; overflow: hidden; }
.hero-dark { background: var(--ink); color: #fff; padding: clamp(48px, 7vw, 104px) 0 clamp(88px, 9vw, 128px); }
.hero-dark::before {
  content: ""; position: absolute; inset: 0;
  background: url("/img/hero-bg.webp") center / cover no-repeat;
  opacity: 0.22;
}
.hero-dark::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 88% 8%, rgba(240, 80, 31, 0.42), transparent 62%),
    radial-gradient(40% 40% at 10% 90%, rgba(240, 80, 31, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 20, 0.35) 0%, rgba(11, 15, 20, 0.55) 55%, var(--ink) 100%);
}
.hero-dark .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy h1 { margin-bottom: 0.45em; max-width: 12ch; }
.hero-dark h1 { color: #fff; }
.hero-sub { font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.55; max-width: 52ch; margin-bottom: 1.6em; }
.hero-dark .hero-sub { color: rgba(255, 255, 255, 0.78); }
.hero-summary { color: var(--text-2); max-width: 60ch; margin-top: -0.6em; margin-bottom: 1.8em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-bottom: 22px; }
.proof-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 12px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255, 255, 255, 0.05); font-size: 0.9rem; }
.proof-badge strong { font-family: var(--font-display); font-weight: 800; }
.hero-light .proof-badge { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.proof-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-hover); font-weight: 700; font-size: 0.88rem; }
.proof-text { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.hero-light .proof-text { color: var(--muted); }
.hero-checks { display: grid; grid-template-columns: repeat(2, auto); justify-content: start; gap: 10px 28px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
.hero-checks li { display: flex; align-items: center; gap: 8px; }
.hero-checks .icon { color: var(--accent); width: 1em; height: 1em; }
.hero-form { position: relative; }

/* ---------- Hero (light, inner pages) ---------- */
.hero-light { background: var(--paper); color: var(--text); padding: clamp(28px, 4vw, 48px) 0 clamp(64px, 7vw, 96px); }
.hero-light::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 50% at 90% 0%, rgba(240, 80, 31, 0.16), transparent 60%),
    linear-gradient(rgba(11, 15, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 20, 0.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}
.hero-light .container { position: relative; z-index: 1; }
.hero-light .hero-grid { margin-top: clamp(12px, 2vw, 24px); }
.hero-light .hero-sub { color: var(--text-2); }
.hero-compact { padding-bottom: clamp(48px, 6vw, 72px); }
.hero-copy-wide { max-width: 820px; margin-top: 16px; }
.hero-copy-wide h1 { max-width: 16ch; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: 0.5; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current] { color: var(--text-2); font-weight: 500; }

/* ---------- Form card ---------- */
.form-card {
  position: relative;
  background: #fff; color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 15, 20, 0.06);
}
.form-card-tag {
  position: absolute; top: -14px; left: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.form-card-tag .icon { color: var(--accent); width: 0.95em; height: 0.95em; }
.lead-form-head { margin-bottom: 18px; }
.lead-form-title { font-size: 1.35rem; margin-bottom: 0.2em; }
.lead-form-sub { margin: 0; color: var(--muted); font-size: 0.92rem; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.field .optional { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1px solid #D5D9DF; border-radius: 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field input::placeholder, .field textarea::placeholder { color: #9AA3AE; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.field-error { display: none; font-size: 0.8rem; color: var(--danger); }
.field.invalid input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.12); }
.field.invalid .field-error { display: block; }
.form-errors { margin-bottom: 14px; font-size: 0.9rem; color: var(--danger); }
.form-errors ul { padding-left: 18px; list-style: disc; }
.form-errors:empty, .validation-summary-valid { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.lead-form .btn-block { margin-top: 6px; }
.form-note { display: flex; align-items: flex-start; gap: 8px; margin: 12px 0 0; font-size: 0.76rem; line-height: 1.45; color: var(--muted); }
.form-note .icon { width: 1em; height: 1em; margin-top: 2px; color: var(--success); }
.form-alt { margin: 12px 0 0; text-align: center; font-size: 0.88rem; color: var(--muted); }
.form-alt a { font-weight: 700; color: var(--ink); }
.lead-form-compact .form-alt { display: none; }

/* ---------- Trust strip ---------- */
.trust-strip { position: relative; z-index: 2; margin-top: -44px; }
.trust-list {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(11, 15, 20, 0.06);
  overflow: hidden;
}
.trust-list li { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid var(--line); }
.trust-list li:last-child { border-right: 0; }
.trust-list strong { display: block; font-family: var(--font-display); font-size: 0.98rem; letter-spacing: -0.01em; }
.trust-list span:not(.stars):not(.brand-badge):not(.trust-icon) { display: block; font-size: 0.8rem; color: var(--muted); }
.trust-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--paper); color: var(--ink); flex: none; }
.trust-icon .icon { width: 20px; height: 20px; }
.brand-badge { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-badge.google { color: #4285F4; }
.brand-badge.yelp { color: #D32323; }
.trust-list .brand-badge { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px; border-radius: 12px; background: var(--paper); font-size: 0.95rem; }
@media (max-width: 1100px) {
  .trust-list { grid-template-columns: repeat(3, 1fr); }
  .trust-list li:nth-child(3) { border-right: 0; }
  .trust-list li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .trust-list li:nth-child(4) { border-right: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .trust-strip { margin-top: -32px; }
  .trust-list { grid-template-columns: 1fr 1fr; }
  .trust-list li { padding: 16px; border-right: 0 !important; border-top: 1px solid var(--line); }
  .trust-list li:nth-child(-n+2) { border-top: 0; }
  .trust-list li:nth-child(odd) { border-right: 1px solid var(--line) !important; }
  .trust-list li:last-child { grid-column: 1 / -1; border-right: 0 !important; }
}

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 16px; height: 16px; }

/* ---------- Services grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; display: flex; align-items: flex-end;
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); z-index: -2; }
.service-card:hover img { transform: scale(1.06); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 15, 20, 0.05) 30%, rgba(11, 15, 20, 0.55) 62%, rgba(11, 15, 20, 0.94) 100%); }
.service-card-body { padding: 22px; width: 100%; }
.service-card-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.18); }
.service-card-icon .icon { width: 20px; height: 20px; }
.service-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.service-card p { margin: 0; font-size: 0.88rem; line-height: 1.45; color: rgba(255, 255, 255, 0.72); }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: #FFB08E; }
.service-card-link .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.service-card:hover .service-card-link .icon { transform: translateX(3px); }
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .service-grid { grid-template-columns: 1fr; } .service-card { aspect-ratio: 16 / 11; } }

/* ---------- Why section ---------- */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.why-visual { position: relative; max-width: 480px; }
.why-photo { position: relative; border-radius: var(--radius-lg); background: #fff; overflow: hidden; }
.why-photo::before { content: ""; position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff); z-index: 1; }
.why-photo img { width: 100%; }
.why-card {
  position: absolute; display: grid; gap: 2px;
  padding: 16px 18px; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow-md), 0 0 0 1px rgba(11, 15, 20, 0.06);
}
.why-card strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.01em; }
.why-card span:not(.stars):not(.why-card-icon) { font-size: 0.8rem; color: var(--muted); }
.why-card-rating { left: -8%; top: 14%; }
.why-card-time { right: -6%; bottom: 20%; }
.why-card-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover); margin-bottom: 4px; }
.why-card-icon .icon { width: 18px; height: 18px; }
.why-copy h2 { max-width: 14ch; }
.reason-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 28px 0 32px; }
.reason-list li { display: flex; gap: 14px; align-items: flex-start; }
.reason-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--paper); color: var(--ink); }
.reason-icon .icon { width: 19px; height: 19px; }
.reason-list strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.reason-list p { margin: 0; font-size: 0.9rem; line-height: 1.5; color: var(--text-2); }
.why-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 380px; margin: 0 auto; }
  .why-card-rating { left: -4%; }
  .why-card-time { right: -2%; }
}
@media (max-width: 640px) { .reason-list { grid-template-columns: 1fr; } }

/* ---------- Offers ---------- */
.offers { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.offers::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 55% at 100% 0%, rgba(240, 80, 31, 0.28), transparent 65%); pointer-events: none; }
.offers .container { position: relative; }
.offers h2 { color: #fff; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  padding: 30px 28px 26px; border-radius: 22px;
  background: linear-gradient(165deg, #1C2530, #121820);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.offer-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(240, 80, 31, 0.35), transparent 70%); }
.offer-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark); color: #FFB08E; margin-bottom: 8px; }
.offer-icon .icon { width: 20px; height: 20px; }
.offer-value { margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 3.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.offer-card h3 { color: #fff; font-size: 1.15rem; margin: 6px 0 4px; }
.offer-detail { flex: 1; margin: 0 0 20px; font-size: 0.92rem; line-height: 1.55; color: rgba(255, 255, 255, 0.66); }
.offer-card .btn { align-self: flex-start; }
.offer-fine { margin: 14px 0 0; font-size: 0.72rem; color: rgba(255, 255, 255, 0.4); }
.offer-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 22px; padding: 22px 26px; border-radius: 18px;
  background: rgba(240, 80, 31, 0.1); border: 1px solid rgba(240, 80, 31, 0.35);
}
.offer-banner-text { display: flex; align-items: center; gap: 16px; }
.offer-banner-icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--accent); color: #fff; }
.offer-banner-icon .icon { width: 22px; height: 22px; }
.offer-banner strong { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.01em; }
.offer-banner span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.process-step { position: relative; padding: 30px 28px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.process-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.05em; color: var(--paper-2); line-height: 1; }
.process-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: #fff; margin-bottom: 18px; }
.process-icon .icon { width: 22px; height: 22px; }
.process-step h3 { font-size: 1.2rem; }
.process-step p { margin: 0; color: var(--text-2); font-size: 0.95rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.rating-summary { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-radius: 18px; background: var(--paper); }
.rating-big { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.rating-meta p { margin: 4px 0 0; font-size: 0.85rem; color: var(--muted); }
.rating-meta .brand-badge { font-size: 0.9rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 26px; border-radius: 22px;
  background: var(--paper); border: 1px solid var(--line);
}
.reviews .review-card { background: var(--paper); }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-source { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.review-source .icon { width: 1em; height: 1em; color: var(--success); }
.review-card blockquote { flex: 1; font-size: 1rem; line-height: 1.6; color: var(--text-2); }
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.review-card figcaption strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.review-card figcaption span:not(.avatar) { font-size: 0.78rem; color: var(--muted); }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; }
@media (max-width: 1100px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }
.review-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.areas-copy h2 { max-width: 12ch; }
.areas-copy > p { color: var(--text-2); max-width: 48ch; }
.areas-office { display: flex; gap: 14px; align-items: flex-start; margin-top: 24px; padding: 18px 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.areas-office-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); }
.areas-office strong { display: block; font-family: var(--font-display); }
.areas-office span { display: block; font-size: 0.9rem; color: var(--text-2); margin-bottom: 6px; }
.areas-office .text-link { font-size: 0.9rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips li a, .area-chips li span { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 0.95rem; transition: border-color .2s, transform .2s var(--ease), box-shadow .2s; }
.area-chips li a:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-chips .icon { width: 1em; height: 1em; color: var(--accent); }
.area-more { display: inline-flex; align-items: center; padding: 12px 6px; color: var(--muted); font-size: 0.9rem; }
.area-chips-plain { margin-bottom: 24px; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }

.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.area-card { display: flex; flex-direction: column; gap: 8px; padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); margin-bottom: 4px; }
.area-card h3 { margin-bottom: 0; }
.area-card p { margin: 0; color: var(--text-2); font-size: 0.95rem; }
.area-card-neigh { font-size: 0.82rem; color: var(--muted); }
.area-card .service-card-link { color: var(--accent-hover); }
@media (max-width: 760px) { .area-grid { grid-template-columns: 1fr; } }

.local-note { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); max-width: 760px; }
.local-note-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--paper); color: var(--ink); }
.local-note p { margin: 0; color: var(--text-2); }

/* ---------- Check / sign lists ---------- */
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.check-list .icon { width: 1.1em; height: 1.1em; margin-top: 3px; color: var(--success); flex: none; }
.check-list-lg li { font-size: 1.02rem; }
.check-list-light { color: rgba(255, 255, 255, 0.85); }
.check-list-light .icon { color: #FFB08E; }
.check-list-cols { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
@media (max-width: 640px) { .check-list-cols { grid-template-columns: 1fr; } }
.sign-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sign-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-size: 0.95rem; }
.sign-list .icon { color: var(--accent); flex: none; margin-top: 2px; }
@media (max-width: 640px) { .sign-list { grid-template-columns: 1fr; } }

/* ---------- Service detail ---------- */
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail-block { margin-bottom: clamp(40px, 5vw, 64px); }
.detail-block h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 0.7em; }
.offer-inline { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 22px 24px; border-radius: 18px; background: var(--ink); color: #fff; }
.offer-inline-icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--accent); color: #fff; }
.offer-inline > div { flex: 1; min-width: 200px; }
.offer-inline strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.offer-inline span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.detail-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 18px; }
.side-card { border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.side-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.side-cta { padding: 24px; }
.side-cta .eyebrow { margin-bottom: 8px; }
.side-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
.side-phone .icon { color: var(--accent); }
.side-cta p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.side-list { padding: 22px 24px; }
.side-list h4 { margin-bottom: 12px; color: var(--muted); }
.side-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); font-weight: 600; font-size: 0.95rem; }
.side-list li a .icon { color: var(--accent); }
.side-list li a .chev { margin-left: auto; color: var(--muted); }
.side-list li a:hover { color: var(--accent-hover); }
@media (max-width: 1000px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; grid-template-columns: 1fr 1fr; }
  .side-photo { display: none; }
}
@media (max-width: 640px) { .detail-side { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-intro h2 { max-width: 12ch; }
.faq-intro > p { color: var(--text-2); }
.faq-call { padding: 16px 18px; border-radius: 14px; background: var(--paper); font-size: 0.95rem; }
.faq-call a { font-weight: 700; color: var(--accent-hover); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex: none; color: var(--muted); transition: transform .25s var(--ease); }
.faq-item[open] summary .icon { transform: rotate(180deg); color: var(--accent); }
.faq-answer { padding: 0 4px 22px; color: var(--text-2); max-width: 64ch; }
.faq-answer p { margin: 0; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } .faq-intro { position: static; } }

/* ---------- Quote section ---------- */
.quote-section { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.quote-grid-page { margin-top: 20px; }
.quote-copy h2 { max-width: 14ch; }
.quote-copy > p { color: var(--text-2); max-width: 48ch; }
.quote-phone { display: inline-flex; align-items: center; gap: 12px; margin: 8px 0 24px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.03em; color: var(--ink); }
.quote-phone .icon { width: 0.9em; height: 0.9em; color: var(--accent); }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(64px, 8vw, 104px) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("/img/cta-bg.webp") center / cover no-repeat; opacity: 0.22; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 0% 50%, rgba(240, 80, 31, 0.32), transparent 60%), linear-gradient(90deg, rgba(11, 15, 20, 0.5), rgba(11, 15, 20, 0.85)); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); max-width: 14ch; }
.cta-band-copy p:last-child { margin: 0; color: rgba(255, 255, 255, 0.75); max-width: 50ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: clamp(56px, 6vw, 80px) 0 40px; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; margin: 18px 0; max-width: 40ch; }
.footer-rating { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.footer-rating strong { color: #fff; }
.footer-license { font-size: 0.8rem !important; color: rgba(255, 255, 255, 0.5); }
.footer-col h4 { color: #fff; margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; color: #fff; margin-bottom: 8px; }
.footer-phone .icon { color: var(--accent); }
.footer-contact p { font-size: 0.9rem; margin: 0 0 12px; }
.footer-contact address { font-size: 0.9rem; line-height: 1.5; margin-bottom: 8px; }
.footer-contact .text-link { color: #fff; font-size: 0.9rem; margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 0.82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, 0.85); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom span { opacity: 0.4; margin: 0 4px; }
.footer-sms { margin: 24px 0 0; font-size: 0.74rem; line-height: 1.5; color: rgba(255, 255, 255, 0.4); max-width: 90ch; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 15, 20, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(0); transition: transform .3s var(--ease);
}
.sticky-bar.is-hidden { transform: translateY(110%); }
.sticky-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border-radius: 12px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #fff; }
.sticky-bar .icon { width: 18px; height: 18px; }
.sticky-call { background: var(--accent); }
.sticky-quote { background: #fff; color: var(--ink) !important; }
@media (max-width: 900px) {
  .sticky-bar { display: grid; }
  body { padding-bottom: 72px; }
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 15, 20, 0.7); backdrop-filter: blur(4px); }
.modal-card { position: relative; width: min(100%, 860px); border-radius: 26px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); animation: modal-in .35s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(11, 15, 20, 0.07); color: var(--ink); cursor: pointer; }
.modal-close:hover { background: rgba(11, 15, 20, 0.14); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-copy { padding: 40px 36px; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.modal-copy::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(240, 80, 31, 0.45), transparent 70%); }
.modal-copy h3 { color: #fff; font-size: 1.7rem; letter-spacing: -0.03em; }
.modal-copy > p { color: rgba(255, 255, 255, 0.75); }
.modal-copy .check-list { margin: 20px 0 24px; }
.modal-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: #FFB08E; position: relative; }
.modal-form { padding: 32px 30px; }
body.modal-open { overflow: hidden; }
@media (max-width: 760px) {
  .modal { padding: 12px; align-items: end; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-copy { padding: 28px 24px 22px; }
  .modal-copy .check-list { display: none; }
  .modal-copy h3 { font-size: 1.4rem; }
  .modal-form { padding: 22px 22px 18px; }
  .modal-close { background: rgba(255, 255, 255, 0.22); color: #fff; }
}

/* ---------- Thank you / error ---------- */
.thanks-inner { text-align: center; max-width: 720px; margin: 24px auto 0; display: flex; flex-direction: column; align-items: center; }
.thanks-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff; margin-bottom: 20px; box-shadow: 0 14px 30px -12px rgba(31, 157, 85, 0.6); }
.thanks-icon .icon { width: 34px; height: 34px; }
.thanks-icon-muted { background: var(--ink); box-shadow: none; }
.thanks-inner h1 { max-width: none; }
.thanks-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.thanks-links { margin-top: 28px; font-size: 0.9rem; color: var(--muted); }
.thanks-links a { font-weight: 600; color: var(--ink); }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: 8px; color: var(--text-2); }
.prose p { color: var(--text-2); }
.prose-meta { font-size: 0.85rem; color: var(--muted); }

/* ---------- Reveal animation ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .area-card { transition: none; }
}

/* ---------- Landing mode (?lp=1): strip navigation to keep ad traffic focused ---------- */
body.lp .topbar, body.lp .main-nav, body.lp .nav-toggle, body.lp .footer-col:not(.footer-contact), body.lp .breadcrumb { display: none !important; }
body.lp .header-quote { display: inline-flex; }

/* ---------- Responsive hero ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { max-width: none; }
  .hero-dark { padding-bottom: 72px; }
  .hero-form { max-width: 560px; }
}
@media (max-width: 640px) {
  .hero-ctas .btn { width: 100%; }
  .hero-checks { grid-template-columns: 1fr; }
  .section-head.split .btn { display: none; }
  .cta-band-actions .btn { width: 100%; }
  .offer-banner .btn { width: 100%; }
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .trust-list li { padding: 14px 12px; gap: 10px; }
  .trust-list strong { font-size: 0.9rem; }
  .trust-list .brand-badge { min-width: 36px; height: 36px; padding: 0 8px; font-size: 0.82rem; }
  .trust-icon { width: 36px; height: 36px; }
  .stars .icon { width: 14px; height: 14px; }
  .process-num { font-size: 2rem; top: 18px; right: 20px; }
}
