/* ===========================================================================
   Pro Locksmith Services — main stylesheet
   Mobile-first, modern, accessible. Single file, no external CSS dependencies.
   =========================================================================== */

:root {
  --color-primary: #0a2a5e;
  --color-primary-dark: #06183b;
  --color-primary-light: #1d4ed8;
  --color-accent: #e8a635;
  --color-accent-light: #f5c451;
  --color-accent-dark: #b27d1e;
  --color-emergency: #dc2626;
  --color-emergency-dark: #991b1b;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-muted-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-bg-soft: #eef2f9;
  --color-bg-dark: #0a1733;
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, .12), 0 4px 12px rgba(15, 23, 42, .06);
  --shadow-xl: 0 28px 72px rgba(10, 42, 94, .22), 0 8px 16px rgba(15, 23, 42, .08);
  --shadow-glow: 0 0 0 1px rgba(232, 166, 53, .35), 0 12px 32px rgba(232, 166, 53, .25);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1240px;
  --container-narrow: 780px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', var(--font-sans);

  --header-h: 80px;

  --gradient-primary: linear-gradient(135deg, #0a2a5e 0%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #f5c451 0%, #b27d1e 100%);
  --gradient-emergency: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  --gradient-success: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--color-primary-light); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--color-primary); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: var(--color-text); margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.125rem, 4.6vw, 3.75rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.625rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 10000;
  background: var(--color-primary); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section + .section { padding-top: 0; }
.prose p { font-size: 1.0625rem; color: var(--color-muted); }
.prose .lead { font-size: 1.1875rem; color: var(--color-text); font-weight: 500; }
.prose h2 { margin-top: 0; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-sub { color: var(--color-muted); font-size: 1.0625rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(10, 42, 94, .08);
  padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9375rem; line-height: 1;
  border: 2px solid transparent; transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon, .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 17px 30px; font-size: 1rem; }
.btn-primary { background: var(--gradient-primary); color: #fff !important; box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-emergency { background: var(--gradient-emergency); color: #fff !important; box-shadow: 0 8px 22px rgba(220, 38, 38, .35); animation: pulseRed 2.6s ease-in-out infinite; }
.btn-emergency:hover { box-shadow: 0 10px 30px rgba(220, 38, 38, .50); }
.btn-accent { background: var(--gradient-accent); color: var(--color-primary-dark) !important; box-shadow: var(--shadow-md); font-weight: 800; }
.btn-accent:hover { box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--color-primary) !important; border-color: currentColor; }
.btn-outline:hover { background: var(--color-primary); color: #fff !important; }
.btn-outline.btn-on-dark { color: #fff !important; }
.btn-outline.btn-on-dark:hover { background: #fff; color: var(--color-primary) !important; }

@keyframes pulseRed {
  0%, 100% { box-shadow: 0 8px 22px rgba(220, 38, 38, .35); }
  50% { box-shadow: 0 8px 22px rgba(220, 38, 38, .35), 0 0 0 14px rgba(220, 38, 38, 0); }
}

/* ---------- icons ---------- */
.icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; }

/* ---------- topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-row { display: flex; gap: 28px; align-items: center; padding: 9px 24px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.topbar-item .icon { width: 14px; height: 14px; color: var(--color-accent-light); }
.topbar-phone { margin-left: auto; color: #fff; font-weight: 700; }
.topbar-phone:hover { color: var(--color-accent-light); text-decoration: none; }
@media (max-width: 720px) {
  .topbar-row { gap: 12px; padding: 8px 16px; flex-wrap: wrap; }
  .topbar-item:nth-child(1) { order: 2; flex-basis: 100%; }
  .topbar-item:nth-child(2) { order: 1; }
  .topbar-phone { order: 1; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.header-row { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--color-text); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; letter-spacing: -.012em; color: var(--color-primary); }
.brand-sub { font-size: .7rem; color: var(--color-muted); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }

.primary-nav { display: flex; align-items: center; gap: 24px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--color-text); font-weight: 600; font-size: .9375rem;
  text-decoration: none;
}
.nav-list > li > a:hover { background: var(--color-bg-alt); color: var(--color-primary); text-decoration: none; }
.nav-list > li > a[aria-current="page"] { color: var(--color-primary); background: rgba(10,42,94,.06); }
.has-submenu { position: relative; }
.has-submenu > a::after { content: '▾'; font-size: .65em; margin-left: 4px; opacity: .6; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all .18s ease; z-index: 200;
}
.submenu-wide { min-width: 480px; columns: 2; column-gap: 4px; padding: 12px; }
.submenu li { break-inside: avoid; }
.submenu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--color-text); font-weight: 500; font-size: .9375rem; text-decoration: none;
}
.submenu a:hover { background: var(--color-bg-alt); color: var(--color-primary); text-decoration: none; }
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-switch a { background: var(--color-bg-alt); border: 1px solid var(--color-border); }
.lang-switch a:hover { background: #fff; border-color: var(--color-primary); }
.lang-switch .icon { width: 16px; height: 16px; }

.nav-cta { display: none; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; border-radius: var(--radius-sm);
  color: var(--color-text);
}
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline-flex; }
.nav-toggle .icon { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav-list > li > a { padding: 10px 10px; font-size: .875rem; }
  .nav-cta { display: none; }
  .submenu-wide { min-width: 420px; }
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease; visibility: hidden;
  }
  .primary-nav.open { transform: translateX(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list > li > a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); border: 1px solid transparent; }
  .nav-list > li > a:hover { border-color: var(--color-border); }
  .has-submenu { position: static; }
  .has-submenu > a::after { display: none; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 4px 0 12px 16px; columns: 1;
    background: transparent;
  }
  .submenu a { padding: 10px 14px; font-size: .9375rem; }
  .nav-cta { display: inline-flex; margin-top: 16px; justify-content: center; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(245, 196, 81, .2), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(29, 78, 216, .14), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #fff 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 42, 94, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 42, 94, .03) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
}
.hero-inner {
  position: relative;
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  padding: clamp(56px, 9vw, 112px) 24px;
}
.hero-content { max-width: 660px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--color-muted); margin-bottom: 36px; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 600px; }
.hero-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
}
.hero-badge .icon { width: 30px; height: 30px; color: var(--color-primary); flex-shrink: 0; }
.hero-badge div { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge strong { font-size: .9375rem; font-weight: 800; color: var(--color-text); }
.hero-badge span { font-size: .8125rem; color: var(--color-muted); }

.hero-visual {
  position: relative; height: 500px; min-height: 380px;
}
.hero-card {
  position: absolute; padding: 20px 24px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xl); border: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 4px; min-width: 200px;
  animation: float 5s ease-in-out infinite;
}
.hero-card strong { font-family: var(--font-display); font-size: 1.625rem; font-weight: 800; color: var(--color-text); letter-spacing: -.02em; }
.hero-card span { font-size: .8125rem; color: var(--color-muted); }
.hero-card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.hero-card-icon svg { width: 24px; height: 24px; }
.hero-card-1 { top: 30px; left: 0; }
.hero-card-2 { top: 200px; right: 0; animation-delay: 1.5s; }
.hero-card-2 .hero-card-icon { background: var(--gradient-accent); color: var(--color-primary-dark); }
.hero-card-3 { bottom: 20px; left: 60px; animation-delay: 3s; }
.hero-card-3 .hero-card-icon { background: var(--gradient-success); }
.hero-orb {
  position: absolute; right: -50px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 42, 94, .12) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 340px; max-width: 480px; margin: 0 auto; }
  .hero-orb { width: 320px; height: 320px; }
}
@media (max-width: 520px) {
  .hero-badges { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---------- trust strip ---------- */
.trust-strip { background: var(--color-primary); color: #fff; padding: 18px 0; position: relative; }
.trust-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 196, 81, .08) 50%, transparent 100%);
  pointer-events: none;
}
.trust-strip-list { display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: center; position: relative; }
.trust-strip-list li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9375rem; }
.trust-strip-list .icon { color: var(--color-accent-light); width: 18px; height: 18px; }

/* ---------- stats bar ---------- */
.stats-bar { padding: 48px 0; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.stats-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stats-list li { display: flex; flex-direction: column; gap: 4px; padding: 0 8px; position: relative; }
.stats-list li:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 12px; bottom: 12px; width: 1px;
  background: var(--color-border-strong);
}
.stats-list strong {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
  color: var(--color-primary); letter-spacing: -.02em;
}
.stats-list span { font-size: .875rem; color: var(--color-muted); font-weight: 500; }
@media (max-width: 720px) {
  .stats-list { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-list li::after { display: none !important; }
}

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-services { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-why { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cities { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-counties { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-reviews { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-offerings { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  position: relative;
  display: block; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none; color: var(--color-text);
  overflow: hidden;
}
.card-service::before, .card-county::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--gradient-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.card-service:hover::before, .card-county:hover::before { transform: scaleX(1); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--color-border-strong); text-decoration: none; }
.card h3 { margin-bottom: 8px; color: var(--color-text); }
.card p { color: var(--color-muted); margin-bottom: 16px; }
.card-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 30px; height: 30px; }
.card-icon-check { background: var(--gradient-success); }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-weight: 700; font-size: .9375rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }
.card-service:nth-child(2n) .card-icon { background: var(--gradient-accent); color: var(--color-primary-dark); }
.card-service:nth-child(3n) .card-icon { background: var(--gradient-success); }
.card-service:nth-child(4n) .card-icon { background: var(--gradient-emergency); }

.card-county h3 { color: var(--color-primary); }

.card-emphasis { background: var(--gradient-primary); color: #fff; border: 0; box-shadow: var(--shadow-lg); }
.card-emphasis h2, .card-emphasis h3 { color: #fff; }
.card-emphasis p { color: rgba(255,255,255,.88); }

/* ---------- process / how it works ---------- */
.section-process { background: var(--color-bg-alt); }
.process-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.process-step {
  position: relative;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 30px 26px 26px; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-accent); color: var(--color-primary-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 196, 81, .35);
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--color-muted); margin: 0; font-size: .9375rem; }
.process-step::after {
  content: ''; position: absolute; top: 52px; right: -22px; width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}
.process-step:last-child::after { display: none; }
@media (max-width: 720px) {
  .process-step::after { display: none; }
}

/* ---------- counties row ---------- */
.counties-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.county-chip {
  display: inline-flex; align-items: center; padding: 11px 22px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  color: var(--color-primary); font-weight: 700; font-size: .9375rem;
  box-shadow: var(--shadow-sm); text-decoration: none;
  transition: all .18s ease;
}
.county-chip:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); text-decoration: none; transform: translateY(-2px); }

/* ---------- city cards ---------- */
.city-card {
  display: flex; align-items: center; gap: 14px; padding: 18px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  text-decoration: none; color: var(--color-text); transition: all .18s ease;
}
.city-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); text-decoration: none; transform: translateY(-2px); }
.city-card-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(10, 42, 94, .08), rgba(29, 78, 216, .08));
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.city-card-icon svg { width: 22px; height: 22px; }
.city-card div { display: flex; flex-direction: column; line-height: 1.3; }
.city-card strong { font-family: var(--font-display); font-weight: 700; }
.city-card span { font-size: .8125rem; color: var(--color-muted); }

/* ---------- reviews ---------- */
.section-reviews { background: var(--color-bg-alt); }
.card-review { display: flex; flex-direction: column; gap: 16px; background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--color-border); }
.card-review .stars { display: flex; gap: 2px; color: var(--color-accent); }
.card-review .stars svg { width: 18px; height: 18px; }
.card-review blockquote { margin: 0; font-size: 1.0625rem; line-height: 1.6; color: var(--color-text); }
.card-review figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.card-review figcaption strong { color: var(--color-text); font-family: var(--font-display); }
.card-review figcaption span { font-size: .875rem; color: var(--color-muted); }

/* ---------- google business profile section ---------- */
.section-google { padding-top: 0; }
.google-card {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 28px; align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, #fff 0%, #f7faff 100%);
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.google-card::before {
  content: ''; position: absolute; right: -120px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245, 196, 81, .14) 0%, transparent 60%);
  pointer-events: none;
}
.google-card-icon {
  width: 80px; height: 80px; border-radius: 24px;
  background: #fff; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.google-card-icon svg { width: 44px; height: 44px; }
.google-card-body h2 { margin-bottom: 8px; }
.google-card-body p { color: var(--color-muted); margin-bottom: 12px; }
.google-card-stars { display: inline-flex; align-items: center; gap: 10px; }
.google-card-stars .stars { display: inline-flex; gap: 1px; color: var(--color-accent); }
.google-card-stars .stars svg { width: 16px; height: 16px; }
.google-card-stars > span { font-size: .9375rem; color: var(--color-text); font-weight: 600; }
.google-card-actions { display: flex; flex-direction: column; gap: 10px; }
.google-card-actions .btn { justify-content: center; }
@media (max-width: 880px) {
  .google-card { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .google-card-icon { margin: 0 auto; }
  .google-card-stars { justify-content: center; }
  .google-card-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ---------- FAQ ---------- */
.section-faq { background: var(--color-bg-alt); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 4px 26px; transition: box-shadow .15s ease, border-color .15s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  color: var(--color-text); padding: 20px 0; position: relative; padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 14px; height: 14px;
  border-right: 2px solid var(--color-primary); border-bottom: 2px solid var(--color-primary);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 0 20px; color: var(--color-muted); }
.faq-answer p { margin: 0; }

/* ---------- breadcrumbs ---------- */
.breadcrumbs { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); padding: 10px 0; font-size: .875rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--color-muted); }
.breadcrumbs a { color: var(--color-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-primary); text-decoration: underline; }
.breadcrumbs .sep { color: var(--color-border-strong); }
.breadcrumbs li[aria-current="page"] { color: var(--color-text); font-weight: 600; }

/* ---------- page header ---------- */
.page-header {
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
  padding: clamp(56px, 9vw, 112px) 0 36px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 42, 94, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 42, 94, .03) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 60% 70% at 50% 0%, #000 30%, transparent 100%);
}
.page-header > * { position: relative; }
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { margin-bottom: 16px; }
.page-sub { font-size: 1.125rem; color: var(--color-muted); max-width: 720px; margin: 0 auto; }

/* ---------- intro section ---------- */
.section-intro .prose h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); }
.section-intro .prose a { color: var(--color-primary-light); font-weight: 600; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; gap: 28px;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
}
.contact-call { padding: 36px; text-align: center; }
.phone-big {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800; color: #fff !important; text-decoration: none;
  margin: 16px 0;
}
.phone-big:hover { text-decoration: underline; }
.phone-big svg { width: 32px; height: 32px; color: var(--color-accent-light); }
.contact-info h3 { margin-top: 24px; font-size: 1.125rem; }
.contact-info h3:first-child { margin-top: 0; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--color-text); }
.check-list .icon { color: #16a34a; margin-top: 4px; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.section-cta {
  background:
    radial-gradient(800px 400px at 80% -50%, rgba(245, 196, 81, .25), transparent 60%),
    var(--gradient-primary);
  color: #fff;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-band {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; max-width: 540px; }
.cta-band .btn-emergency { font-size: 1.125rem; padding: 18px 32px; }

/* ---------- footer ---------- */
.site-footer { background: var(--color-bg-dark); color: #cbd5e1; padding: 72px 0 0; position: relative; overflow: hidden; }
.site-footer::before {
  content: ''; position: absolute; top: -100px; left: -50px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, .15) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid; gap: 36px;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}
.footer-brand-col { max-width: 380px; }
.brand-footer { color: #fff; }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-sub { color: rgba(255,255,255,.7); }
.footer-tagline { color: rgba(255,255,255,.78); margin: 16px 0 20px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill); font-size: .8125rem; color: #fff;
}
.badge .icon { color: var(--color-accent-light); width: 14px; height: 14px; }

.site-footer h3 { color: #fff; font-size: .9375rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-weight: 700; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .9375rem; transition: color .15s ease; }
.site-footer a:hover { color: var(--color-accent-light); }

.footer-contact li { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact .icon { color: var(--color-accent-light); }
.footer-cta { margin-top: 16px; }
.footer-google-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  padding: 10px 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill); font-weight: 600; color: #fff !important; font-size: .875rem;
}
.footer-google-link svg { width: 18px; height: 18px; }
.footer-google-link:hover { background: rgba(255,255,255,.1); }

.footer-bottom { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; position: relative; }
.footer-bottom-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .8125rem; color: rgba(255,255,255,.6); }
.footer-bottom p { margin: 0; }
.disclaimer { font-style: italic; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- sticky call (mobile) ---------- */
.sticky-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  display: none; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  background: var(--gradient-emergency); color: #fff !important;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  box-shadow: 0 14px 36px rgba(220, 38, 38, .45);
}
.sticky-call svg { width: 20px; height: 20px; }
.sticky-call:hover { text-decoration: none; }
.sticky-call-text { display: inline; }
@media (max-width: 768px) { .sticky-call { display: inline-flex; } }
@media (max-width: 380px) { .sticky-call-text { display: none; } .sticky-call { padding: 14px; } }

/* ---------- 404 ---------- */
.section-404 h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--color-primary); margin-bottom: 0; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-404 p { font-size: 1.125rem; color: var(--color-muted); }

/* ---------- print ---------- */
@media print {
  .topbar, .nav-toggle, .sticky-call, .section-cta, .hero-cta, .footer-cta, .nav-cta { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
