/* ============================================================
   1Up Pro Solar and Electric — site styles
   Design language: "Full Spectrum" (expanding spectrum panels).
   Brand foundations imported verbatim from the Claude Design tokens.
   ============================================================ */

@import url('tokens/typography.css');
@import url('tokens/colors.css');
@import url('tokens/spacing.css');
@import url('tokens/base.css');

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--section-y) var(--space-6); }
.section-tight { padding: var(--space-9) var(--space-6); }
img { max-width: 100%; height: auto; }
body { background: var(--white); overflow-x: hidden; }

.eyebrow {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  font-size: var(--text-sm); color: var(--magenta-pink);
  margin: 0 0 var(--space-3);
}
.eyebrow.center { text-align: center; }
.gtext { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grule { height: 4px; width: 72px; border: 0; border-radius: var(--radius-pill); background: var(--brand-gradient); margin: var(--space-4) 0 0; }
.grule.center { margin-left: auto; margin-right: auto; }
.spectrum-bar { height: 5px; border: 0; border-radius: var(--radius-pill); background: var(--brand-gradient); }

.section-head { max-width: 640px; }
.section-head.center { max-width: 720px; margin: 0 auto; text-align: center; }
.section-head h2 { font-size: var(--text-3xl); line-height: 1.12; letter-spacing: -.02em; margin: 0; }
.section-head .intro { margin: var(--space-4) 0 0; font-size: var(--text-lg); color: var(--text-body); line-height: 1.6; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  line-height: 1.2; padding: 5px 13px; border-radius: var(--radius-pill);
  background: var(--neutral-100); color: var(--neutral-700); white-space: nowrap;
}
.badge .lucide { width: 14px; height: 14px; }
.badge--gradient { background: var(--brand-gradient); color: #fff; }
.badge--gold { background: var(--gold-100); color: var(--gold-700); }

/* ---------- Buttons ---------- */
.btn {
  --btn-shadow: none;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
  line-height: 1; min-height: 48px; padding: 12px 22px; gap: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap; box-shadow: var(--btn-shadow);
  transition: transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              background var(--dur-base) var(--ease-standard);
  -webkit-tap-highlight-color: transparent;
}
.btn .lucide { width: 18px; height: 18px; }
.btn--lg { font-size: var(--text-lg); min-height: 56px; padding: 15px 30px; gap: 12px; }
.btn--lg .lucide { width: 20px; height: 20px; }
.btn--sm { font-size: var(--text-sm); min-height: 38px; padding: 8px 16px; gap: 8px; }
.btn--sm .lucide { width: 16px; height: 16px; }

.btn--primary { color: #fff; background: var(--brand-gradient); --btn-shadow: 0 8px 22px rgba(20, 48, 107, .16); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(20, 48, 107, .24); text-decoration: none; }
.btn--solid { color: #fff; background: var(--magenta-pink); --btn-shadow: var(--shadow-sm); }
.btn--solid:hover { transform: translateY(-1px); background: var(--magenta-600); text-decoration: none; }
.btn--secondary { color: var(--sky-700); background: #fff; border-color: var(--sky-blue); --btn-shadow: var(--shadow-xs); }
.btn--secondary:hover { transform: translateY(-1px); background: var(--sky-50); text-decoration: none; }
.btn--ghost { color: var(--text-link); background: transparent; border-radius: var(--radius-sm); }
.btn--ghost:hover { background: var(--sky-50); text-decoration: none; }
.btn--on-grad { background: #fff; color: var(--magenta-600); }
.btn--on-grad:hover { transform: translateY(-1px); background: #fff; box-shadow: var(--shadow-lg); text-decoration: none; }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); text-decoration: none; }
.btn:active { transform: scale(.97); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { max-width: var(--container-max); margin: 0 auto; padding: 10px var(--space-6); display: flex; align-items: center; gap: var(--space-6); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 96px; width: auto; }
.nav { display: flex; gap: var(--space-5); margin-left: var(--space-4); }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--text-strong); text-decoration: none; padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--magenta-pink); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--magenta-pink); border-bottom-color: var(--magenta-pink); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: var(--space-4); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  color: var(--deep-blue); text-decoration: none;
}
.header-phone .lucide { width: 16px; height: 16px; color: var(--sky-600); }
.header-phone:hover { text-decoration: none; color: var(--magenta-pink); }
.nav-toggle { display: none; }

/* Mobile drawer */
.drawer-scrim { position: fixed; inset: 0; background: rgba(12,29,68,.45); opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-standard); z-index: 60; }
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; z-index: 70; transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column; padding: var(--space-6);
  box-shadow: var(--shadow-xl);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); }
.drawer-top img { height: 44px; }
.drawer-close { background: var(--neutral-100); border: 0; border-radius: var(--radius-pill); width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-strong); }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--text-strong); text-decoration: none; padding: 12px 8px; border-radius: var(--radius-sm); }
.drawer nav a:hover { background: var(--sky-50); text-decoration: none; }
.drawer .drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-3); }

/* ---------- Hero (centered, type-led) ---------- */
.hero { position: relative; overflow: hidden; background: var(--brand-wash); text-align: center; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.hero::before { width: 460px; height: 460px; background: radial-gradient(circle, rgba(236,28,148,.55), transparent 70%); top: -160px; left: -120px; }
.hero::after { width: 520px; height: 520px; background: radial-gradient(circle, rgba(31,163,224,.45), transparent 70%); bottom: -220px; right: -140px; }
.hero-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; padding: var(--space-10) var(--space-6) var(--space-9); }
.hero-logo-chip {
  display: block; width: -moz-fit-content; width: fit-content; padding: 5px; border-radius: var(--radius-xl);
  background: var(--brand-gradient); box-shadow: var(--shadow-lg); margin: 0 auto var(--space-6);
}
.hero-logo-chip .inner { background: rgba(255,255,255,.96); border-radius: calc(var(--radius-xl) - 5px); padding: 16px 26px; }
.hero-logo-chip img { height: 96px; width: auto; display: block; }
.hero h1 { font-size: var(--text-5xl); line-height: 1.02; letter-spacing: -.02em; margin: 0; }
.hero p.lede { font-size: var(--text-xl); color: var(--text-body); line-height: 1.5; margin: var(--space-5) auto var(--space-6); max-width: 640px; }
.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.hero-fin { display: inline-flex; align-items: center; gap: var(--space-3); margin-top: var(--space-6); color: var(--text-muted); font-size: var(--text-sm); }
.hero-fin .lucide { width: 18px; height: 18px; color: var(--royal-purple); }

/* spectrum service strip under hero */
.spec-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: var(--space-7); }
.spec-strip a {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: #fff; padding: 9px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.spec-strip a .lucide { width: 16px; height: 16px; }
.spec-strip a:hover { transform: translateY(-2px); text-decoration: none; transition: transform var(--dur-base) var(--ease-out); }
.t-magenta { background: var(--magenta-pink); }
.t-blue { background: var(--sky-blue); }
.t-green { background: var(--green-600); }
.t-purple { background: var(--royal-purple); }
.t-gold { background: var(--gold-500); color: var(--deep-blue) !important; }

/* ---------- Trust bar ---------- */
.trustbar-wrap { background: #fff; border-bottom: 1px solid var(--border-subtle); }
.trustbar { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-6); align-items: center; justify-content: center; padding: var(--space-5) 0; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; }
.trust-item .chip { width: 34px; height: 34px; border-radius: var(--radius-pill); flex: none; background: var(--sky-50); color: var(--sky-600); display: inline-flex; align-items: center; justify-content: center; }
.trust-item .chip .lucide { width: 18px; height: 18px; }
.trust-item span.label { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--text-strong); white-space: nowrap; }

/* ---------- Spectrum panels (signature services presentation) ---------- */
.spectrum { display: flex; gap: 12px; margin-top: var(--space-7); min-height: 430px; }
.spec-panel {
  position: relative; flex: 1 1 0; min-width: 0; border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer; color: #fff; isolation: isolate;
  transition: flex-grow .45s var(--ease-out);
  background: var(--panel); box-shadow: var(--shadow-md); will-change: flex-grow;
}
.spec-panel.t-gold { color: var(--deep-blue); }
.spec-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.22)); z-index: -1; }
.spec-panel.is-open { flex-grow: 2.5; }
.spec-panel .pad { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-5); }
.spec-num { position: absolute; top: var(--space-5); left: var(--space-5); font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); opacity: .85; }
.spec-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); flex: none; }
.spec-panel.t-gold .spec-icon { background: rgba(20,48,107,.14); }
.spec-icon .lucide { width: 28px; height: 28px; }
.spec-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); letter-spacing: -.01em; line-height: 1.2; overflow-wrap: break-word; transition: font-size var(--dur-base) var(--ease-out); }
.spec-panel.is-open .spec-title { font-size: var(--text-2xl); }
.spec-detail { overflow: hidden; max-height: 0; opacity: 0; margin-top: 0; transition: max-height .45s var(--ease-out), opacity .3s ease, margin-top .45s var(--ease-out); }
.spec-panel.is-open .spec-detail { max-height: 320px; opacity: 1; margin-top: var(--space-4); }
.spec-detail p { color: inherit; opacity: .92; font-size: var(--text-base); line-height: 1.55; margin: 0 0 14px; max-width: 420px; }
.spec-detail ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; max-width: 420px; }
.spec-detail li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); }
.spec-detail li .lucide { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.spec-detail .spec-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: inherit; text-decoration: none; }
.spec-detail .spec-link .lucide { width: 16px; height: 16px; }

/* ---------- Why us ---------- */
.whyus { background: var(--neutral-50); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.whyus p.lede { font-size: var(--text-lg); color: var(--text-body); line-height: 1.65; margin: var(--space-5) 0 var(--space-6); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.feat { display: flex; gap: 12px; }
.feat .chip { flex: none; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--sky-50); display: inline-flex; align-items: center; justify-content: center; }
.feat .chip .lucide { width: 20px; height: 20px; color: var(--sky-600); }
.feat .t { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); font-size: var(--text-base); }
.feat .d { font-size: var(--text-sm); color: var(--text-muted); }
.whyus-media { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 380px; }
.whyus-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.whyus-media .stat-chip { position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.95); border-radius: var(--radius-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.whyus-media .stat-chip .lucide { width: 22px; height: 22px; color: var(--magenta-pink); }
.whyus-media .stat-chip .n { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); color: var(--text-strong); line-height: 1; }
.whyus-media .stat-chip .l { font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- Gallery / Our work ---------- */
.gallery { background: var(--neutral-50); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.gallery-grid figure { margin: 0; position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(20,48,107,.06); border-radius: var(--radius-card); pointer-events: none; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure span.tag { position: absolute; left: 12px; bottom: 12px; z-index: 1; }

/* dashed photo placeholder fallback */
.photo-ph { height: 380px; border-radius: var(--radius-2xl); background: var(--brand-wash); border: 2px dashed var(--border-default); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); text-align: center; padding: var(--space-6); }
.photo-ph .lucide { width: 34px; height: 34px; color: var(--neutral-400); }

/* ---------- Financing ---------- */
.fin-panel { background: var(--deep-900); border-radius: var(--radius-2xl); overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; }
.fin-copy { padding: var(--space-9) var(--space-8); }
.fin-copy h2 { color: #fff; font-size: var(--text-3xl); margin: var(--space-4) 0; }
.fin-copy p { color: rgba(255,255,255,.8); font-size: var(--text-lg); line-height: 1.6; margin: 0 0 var(--space-6); max-width: 460px; }
.fin-side { background: var(--brand-gradient-vertical); display: flex; align-items: center; justify-content: center; padding: var(--space-6); }
.fin-card { background: rgba(255,255,255,.96); border-radius: var(--radius-xl); padding: var(--space-6); text-align: center; box-shadow: var(--shadow-lg); }
.fin-card .big { font-family: var(--font-display); font-weight: 800; font-size: var(--text-5xl); line-height: 1; }
.fin-card .m { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); margin-top: 6px; }
.fin-card .s { font-size: var(--text-sm); color: var(--text-muted); margin-top: 4px; }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.review-card { position: relative; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: var(--space-7); box-shadow: var(--shadow-md); }
.review-card .topbar { position: absolute; top: 0; left: 0; right: 0; height: 5px; border-radius: var(--radius-card) var(--radius-card) 0 0; background: var(--brand-gradient); }
.review-stars { display: inline-flex; gap: 2px; color: var(--gold-500); margin-bottom: var(--space-4); }
.review-stars .lucide { width: 18px; height: 18px; fill: currentColor; }
.review-card blockquote { margin: 0 0 var(--space-5); font-size: var(--text-lg); color: var(--text-strong); line-height: 1.55; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--brand-gradient); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; }
.review-who .n { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); }
.review-who .l { font-size: var(--text-sm); color: var(--text-muted); }
.reviews-note { text-align: center; margin-top: var(--space-6); font-size: var(--text-sm); color: var(--text-muted); }

/* ---------- Quote CTA band ---------- */
.cta-band { background: var(--brand-gradient-diagonal); }
.cta-inner { max-width: var(--container-max); margin: 0 auto; padding: var(--space-9) var(--space-6); text-align: center; }
.cta-inner h2 { color: #fff; font-size: var(--text-4xl); margin: 0 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,.12); }
.cta-inner p { color: rgba(255,255,255,.92); font-size: var(--text-xl); margin: 0 auto var(--space-6); max-width: 600px; }
.cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-900); color: #fff; }
.footer-rule { height: 5px; background: var(--brand-gradient); }
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: var(--space-9) var(--space-6) var(--space-6); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); }
.footer-logo { display: inline-block; background: var(--brand-gradient); padding: 4px; border-radius: var(--radius-md); margin-bottom: var(--space-4); box-shadow: var(--shadow-md); }
.footer-logo .inner { display: block; background: #fff; border-radius: 10px; padding: 12px 18px; }
.footer-logo img { height: 84px; width: auto; display: block; }
.footer-about { margin: 0 0 var(--space-4); color: rgba(255,255,255,.75); font-size: var(--text-sm); max-width: 320px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-pill); background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-col h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 var(--space-4); }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span.line { color: rgba(255,255,255,.85); text-decoration: none; font-size: var(--text-sm); display: inline-flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col .links .lucide { width: 16px; height: 16px; color: var(--growth-green); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--space-7); padding-top: var(--space-5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: var(--text-xs); color: rgba(255,255,255,.55); }

/* ---------- Services page ---------- */
.page-head { background: var(--brand-wash); border-bottom: 1px solid var(--border-subtle); text-align: center; }
.page-head .inner { max-width: var(--container-max); margin: 0 auto; padding: var(--space-9) var(--space-6); }
.page-head h1 { font-size: var(--text-4xl); margin: 16px auto 0; max-width: 760px; }
.page-head p { font-size: var(--text-xl); color: var(--text-body); margin: 16px auto 0; max-width: 620px; }
.svc-rows { display: flex; flex-direction: column; gap: var(--space-5); }
.svc-row { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); box-shadow: var(--shadow-md); padding: var(--space-7); display: grid; grid-template-columns: 64px 1fr 1fr; gap: var(--space-6); align-items: start; }
.svc-row .svc-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); display: inline-flex; align-items: center; justify-content: center; }
.svc-row .svc-icon .lucide { width: 32px; height: 32px; }
.svc-row h3 { font-size: var(--text-2xl); margin: 0 0 8px; }
.svc-row .blurb { margin: 0; color: var(--text-body); font-size: var(--text-base); line-height: 1.6; }
.svc-row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.svc-row li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--text-body); }
.svc-row li .lucide { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.tone-magenta { --panel: var(--magenta-500); }
.tone-blue { --panel: var(--sky-500); }
.tone-green { --panel: var(--green-500); }
.tone-purple { --panel: var(--purple-500); }
.tone-gold { --panel: var(--gold-500); }
.svc-ic-magenta { background: var(--magenta-100); color: var(--magenta-600); }
.svc-ic-blue { background: var(--sky-100); color: var(--sky-600); }
.svc-ic-green { background: var(--green-100); color: var(--green-600); }
.svc-ic-purple { background: var(--purple-100); color: var(--purple-600); }
.svc-ic-gold { background: var(--gold-100); color: var(--gold-700); }

/* process strip */
.process { background: var(--neutral-50); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.process-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.process-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); }
.process-card .num { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); }
.process-card .top .lucide { width: 24px; height: 24px; color: var(--sky-600); }
.process-card .t { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-size: var(--text-lg); margin-bottom: 4px; }
.process-card .d { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }

/* ---------- Quote page ---------- */
.quote-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-8); align-items: start; }
.quote-form-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); padding: var(--space-8); }
.quote-form-card h2 { font-size: var(--text-2xl); margin: 0 0 var(--space-5); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--text-strong); }
.field .input-wrap { position: relative; display: flex; align-items: center; }
.field .input-wrap .lucide { position: absolute; left: 14px; width: 18px; height: 18px; color: var(--neutral-400); pointer-events: none; }
.field .input-wrap.has-icon input { padding-left: 42px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--text-strong);
  padding: 12px 16px; border: 2px solid var(--border-default); border-radius: var(--radius-md);
  outline: none; width: 100%; background: #fff; transition: border-color var(--dur-base) var(--ease-standard);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky-blue); }
.checks { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.check { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); color: var(--text-body); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--magenta-pink); }
.form-foot { margin-top: var(--space-6); display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.form-note { font-size: var(--text-sm); color: var(--text-muted); display: inline-flex; align-items: center; gap: 8px; }
.form-note .lucide { width: 16px; height: 16px; color: var(--neutral-400); }
.quote-aside { display: flex; flex-direction: column; gap: var(--space-5); }
.quote-trust { background: var(--deep-900); color: #fff; border-radius: var(--radius-card); padding: var(--space-7); box-shadow: var(--shadow-lg); }
.quote-trust h3 { color: #fff; margin: 0 0 var(--space-4); font-size: var(--text-xl); }
.quote-trust .feat { margin-bottom: var(--space-4); }
.quote-trust .feat .chip { background: rgba(255,255,255,.12); }
.quote-trust .feat .chip .lucide { color: var(--growth-green); }
.quote-trust .feat .t { color: #fff; }
.quote-trust .feat .d { color: rgba(255,255,255,.7); }
.quote-call { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: var(--space-6); box-shadow: var(--shadow-sm); text-align: center; }
.quote-call .pre { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 8px; }
.quote-call a { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); color: var(--deep-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.quote-call a .lucide { width: 22px; height: 22px; color: var(--magenta-pink); }
.form-success { text-align: center; padding: var(--space-7) var(--space-4); }
.form-success .ok { width: 72px; height: 72px; border-radius: var(--radius-pill); background: var(--green-100); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); }
.form-success .ok .lucide { width: 38px; height: 38px; color: var(--green-600); }
.form-success p { color: var(--text-body); font-size: var(--text-lg); max-width: 380px; margin: 0 auto var(--space-6); }
[hidden] { display: none !important; }

/* ---------- Google reviews carousel ---------- */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; margin-top: var(--space-6); }
.gbadge { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.gbadge .glogo { width: 30px; height: 30px; flex: none; }
.gbadge .grate { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); color: var(--text-strong); line-height: 1; }
.gbadge .gstars { display: inline-flex; gap: 1px; color: var(--gold-500); }
.gbadge .gstars .lucide { width: 16px; height: 16px; fill: currentColor; }
.gbadge .gmeta { font-size: var(--text-xs); color: var(--text-muted); }
.reviews-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.rail { display: flex; align-items: flex-start; gap: var(--space-5); overflow-x: auto; scroll-snap-type: x mandatory; padding: var(--space-2) var(--space-1) var(--space-5); margin-top: var(--space-6); scrollbar-width: thin; }
.g-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--neutral-300); border-radius: var(--radius-pill); }
.gcard { scroll-snap-align: start; flex: 0 0 340px; max-width: 340px; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); box-shadow: var(--shadow-md); padding: var(--space-6); display: flex; flex-direction: column; }
.gcard .who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-gradient); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.gcard .who .n { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); }
.gcard .who .meta { font-size: var(--text-xs); color: var(--text-muted); }
.gcard .gmark { margin-left: auto; width: 22px; height: 22px; flex: none; }
.gcard .stars { display: inline-flex; gap: 1px; color: var(--gold-500); margin-bottom: 10px; }
.gcard .stars .lucide { width: 16px; height: 16px; fill: currentColor; }
.gcard blockquote { margin: 0; font-size: var(--text-sm); color: var(--text-body); line-height: 1.6; }
.rail-note { text-align: center; margin-top: var(--space-3); font-size: var(--text-sm); color: var(--text-muted); }

/* ---------- Live chat widget ---------- */
.chat-fab { position: fixed; right: 20px; bottom: 20px; z-index: 95; width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer; background: var(--brand-gradient); box-shadow: var(--shadow-lg); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-out); }
.chat-fab:hover { transform: scale(1.06); }
.chat-fab .lucide { width: 28px; height: 28px; }
.chat-fab .ic-close { display: none; }
.chat-fab.open .ic-chat { display: none; }
.chat-fab.open .ic-close { display: inline-flex; }
.chat-fab .dot { position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--growth-green); border: 2px solid #fff; }
.chat-teaser { position: fixed; right: 92px; bottom: 30px; z-index: 94; max-width: 248px; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 12px 34px 12px 14px; font-size: var(--text-sm); color: var(--text-strong); line-height: 1.4; }
.chat-teaser .x { position: absolute; top: 6px; right: 6px; border: 0; background: transparent; cursor: pointer; color: var(--text-muted); width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }
.chat-teaser .x .lucide { width: 15px; height: 15px; }
.chat-teaser[hidden] { display: none; }
.chat-panel { position: fixed; right: 20px; bottom: 92px; z-index: 95; width: min(92vw, 366px); max-height: min(76vh, 580px); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; display: flex; flex-direction: column; transform: translateY(16px) scale(.98); opacity: 0; visibility: hidden; transform-origin: bottom right; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), visibility var(--dur-base); }
.chat-panel.open { transform: none; opacity: 1; visibility: visible; }
.chat-head { background: var(--brand-gradient); color: #fff; padding: 16px; display: flex; align-items: center; gap: 12px; }
.chat-head .av { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.95); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex: none; }
.chat-head .av img { height: 34px; width: auto; }
.chat-head .name { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
.chat-head .status { font-size: var(--text-xs); opacity: .95; display: inline-flex; align-items: center; gap: 6px; }
.chat-head .status .live { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.chat-body { padding: 16px; overflow-y: auto; background: var(--neutral-50); flex: 1; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; border-top-left-radius: 4px; padding: 12px 14px; font-size: var(--text-sm); color: var(--text-body); line-height: 1.5; box-shadow: var(--shadow-xs); }
.chat-msg .lead { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); display: block; margin-bottom: 6px; }
.chat-offer { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.chat-offer li { display: flex; gap: 8px; align-items: flex-start; font-size: var(--text-sm); color: var(--text-body); }
.chat-offer li .lucide { width: 16px; height: 16px; color: var(--growth-green); flex: none; margin-top: 2px; }
.chat-q { font-family: var(--font-display); font-weight: 600; color: var(--text-strong); }
.chat-foot { padding: 12px; border-top: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 8px; background: #fff; }
@media (max-width: 640px) {
  .gcard { flex-basis: 280px; }
  .chat-fab { right: 16px; bottom: 16px; }
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 86px; }
  .chat-teaser { display: none; }
}

/* ---------- Government page ---------- */
.gov-hero { background: var(--deep-900); color: #fff; position: relative; overflow: hidden; }
.gov-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--brand-gradient); }
.gov-hero .inner { max-width: var(--container-max); margin: 0 auto; padding: var(--space-10) var(--space-6) var(--space-9); position: relative; z-index: 1; }
.gov-hero .badge { background: rgba(255,255,255,.14); color: #fff; }
.gov-hero h1 { color: #fff; font-size: var(--text-5xl); line-height: 1.04; letter-spacing: -.02em; max-width: 820px; margin: var(--space-4) 0 0; }
.gov-hero h1 .gtext { -webkit-text-fill-color: transparent; }
.gov-hero p.lede { color: rgba(255,255,255,.82); font-size: var(--text-xl); line-height: 1.5; max-width: 640px; margin: var(--space-5) 0 var(--space-6); }
.gov-hero .hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.cred-strip { background: var(--neutral-50); border-bottom: 1px solid var(--border-subtle); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.cred-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: var(--space-5); box-shadow: var(--shadow-xs); }
.cred-card .k { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.cred-card .v { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-size: var(--text-lg); word-break: break-word; }
.cred-card .v.small { font-size: var(--text-sm); line-height: 1.55; letter-spacing: 0; }
.gov-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-6); }
.agency-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-top: var(--space-5); list-style: none; padding: 0; }
.agency-list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-base); color: var(--text-body); }
.agency-list li .lucide { width: 20px; height: 20px; color: var(--sky-600); flex: none; margin-top: 2px; }
.cap-band { background: var(--deep-900); border-radius: var(--radius-2xl); overflow: hidden; display: grid; grid-template-columns: 1.45fr 1fr; }
.cap-band .copy { padding: var(--space-9) var(--space-8); }
.cap-band h2 { color: #fff; font-size: var(--text-3xl); margin: var(--space-4) 0; }
.cap-band p { color: rgba(255,255,255,.8); font-size: var(--text-lg); line-height: 1.6; margin: 0 0 var(--space-6); max-width: 460px; }
.cap-band .side { background: var(--brand-gradient-vertical); display: flex; align-items: center; justify-content: center; padding: var(--space-7); }
.cap-doc { background: rgba(255,255,255,.96); border-radius: var(--radius-lg); padding: var(--space-6); text-align: center; box-shadow: var(--shadow-lg); }
.cap-doc .lucide { width: 46px; height: 46px; color: var(--magenta-pink); }
.cap-doc .t { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); margin: var(--space-3) 0 4px; }
.cap-doc .s { font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: var(--section-y) var(--space-6); }
.legal .eff { color: var(--text-muted); font-size: var(--text-sm); margin: 0 0 var(--space-6); }
.legal h2 { font-size: var(--text-2xl); margin: var(--space-7) 0 var(--space-3); }
.legal p { color: var(--text-body); line-height: 1.7; margin: 0 0 var(--space-4); }
.legal ul { margin: 0 0 var(--space-4); padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-body); line-height: 1.6; }
.legal li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--brand-gradient); }
.legal a { color: var(--text-link); }
.footer-legal { display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 96; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid var(--border-subtle); box-shadow: 0 -6px 20px rgba(20,48,107,.10); padding: 9px 12px; gap: 10px; }
.mobile-cta a { flex: 1; min-height: 46px; }

/* ---------- How it works (home, condensed) ---------- */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.how-step { text-align: center; padding: var(--space-4); }
.how-step .ring { width: 64px; height: 64px; margin: 0 auto var(--space-4); border-radius: 50%; background: var(--brand-wash); display: inline-flex; align-items: center; justify-content: center; position: relative; }
.how-step .ring .lucide { width: 28px; height: 28px; color: var(--sky-600); }
.how-step .ring .n { position: absolute; top: -4px; right: -4px; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-gradient); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: var(--text-xs); display: inline-flex; align-items: center; justify-content: center; }
.how-step .t { font-family: var(--font-display); font-weight: 700; color: var(--text-strong); font-size: var(--text-lg); margin-bottom: 4px; }
.how-step .d { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--deep-900); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); text-align: center; }
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: var(--text-4xl); line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: rgba(255,255,255,.78); font-size: var(--text-sm); margin-top: 8px; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; margin-top: var(--space-6); }
.area-chip { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-xs); font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--text-strong); }
.area-chip .lucide { width: 18px; height: 18px; color: var(--magenta-pink); flex: none; }
.area-note { margin-top: var(--space-5); color: var(--text-body); font-size: var(--text-base); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: var(--space-7) auto 0; }
.faq details { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); margin-bottom: 12px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--text-strong); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--brand-wash); display: inline-flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-out); }
.faq summary .chev .lucide { width: 15px; height: 15px; color: var(--sky-600); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .ans { padding: 0 22px 20px; color: var(--text-body); line-height: 1.65; font-size: var(--text-base); }
.faq .ans p { margin: 0; }

/* ---------- Lightbox ---------- */
.gallery-grid figure { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(8,16,38,.9); display: flex; align-items: center; justify-content: center; padding: var(--space-6); opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-out); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.lightbox .lb-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lightbox .lb-close .lucide { width: 22px; height: 22px; }

/* ---------- 404 ---------- */
.nf { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--brand-wash); padding: var(--space-9) var(--space-6); }
.nf .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; }
.nf h1 { font-size: var(--text-3xl); margin: var(--space-4) 0 var(--space-3); }
.nf p { color: var(--text-body); font-size: var(--text-lg); max-width: 480px; margin: 0 auto var(--space-6); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .whyus-grid { grid-template-columns: 1fr; }
  .fin-panel { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .svc-row { grid-template-columns: 56px 1fr; }
  .svc-row ul { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .cap-band { grid-template-columns: 1fr; }
  .gov-feat-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  /* spectrum -> vertical accordion */
  .spectrum { flex-direction: column; min-height: 0; gap: 10px; }
  .spec-panel { flex: 0 0 auto; }
  .spec-panel .pad { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0 var(--space-4); padding: var(--space-5); justify-content: flex-start; }
  .spec-num { position: static; }
  .spec-icon { margin-bottom: 0; }
  .spec-title { font-size: var(--text-lg); }
  .spec-detail { flex-basis: 100%; }
  .spec-panel.is-open .spec-detail { max-height: 360px; margin-top: var(--space-4); }
}
@media (max-width: 640px) {
  :root { --section-y: var(--space-9); }
  .hero h1 { font-size: var(--text-4xl); }
  .hero p.lede { font-size: var(--text-lg); }
  .cta-inner h2 { font-size: var(--text-3xl); }
  .field-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .fin-copy { padding: var(--space-7) var(--space-6); }
  .hero-logo-chip img { height: 76px; }
  .cred-grid { grid-template-columns: 1fr; }
  .agency-list { grid-template-columns: 1fr; }
  .cap-band .copy { padding: var(--space-7) var(--space-6); }
  .brand img { height: 80px; }
  .mobile-cta { display: flex; }
  body:has(.mobile-cta) { padding-bottom: 72px; }
  .chat-fab { bottom: 84px; }
  .chat-panel { bottom: 156px; max-height: min(64vh, 500px); }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .header-cta .btn--primary { display: none; }
}
@media (max-width: 380px) {
  .wrap, .section, .header-inner, .hero-inner, .cta-inner, .footer-inner, .page-head .inner { padding-left: var(--space-4); padding-right: var(--space-4); }
  .brand img { height: 70px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .spec-panel { transition: none; }
}
