/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Color scheme declaration ───────────────────────────────────────────────── */
:root {
  color-scheme: dark;

  /* ── Dark base — premium, not generic ─────────────────────────────────────── */
  --bg:           #0d1117;
  --bg-2:         #111820;
  --bg-3:         #161f2a;
  --surface:      #17202e;
  --surface-2:    #1c2840;
  --border:       #1e2d42;
  --border-bright:#273c56;

  --text:         #e8eef5;
  --text-muted:   #93a8be;
  --text-subtle:  #5a7088;

  /* Orange — urgency, warmth, trust */
  --accent:        #e07b2a;
  --accent-hover:  #c96e22;
  --accent-dim:    rgba(224, 123, 42, 0.10);
  --accent-mid:    rgba(224, 123, 42, 0.22);
  --accent-glow:   rgba(224, 123, 42, 0.35);
  --accent-bright: #f08c3c;

  /* Blue — cool, technical, professional */
  --cool:         #0ea5e9;
  --cool-dim:     rgba(14, 165, 233, 0.12);

  /* Emergency red */
  --urgent:       #c0392b;
  --urgent-hover: #a93226;
  --urgent-dim:   rgba(192, 57, 43, 0.12);

  /* Hero overrides */
  --hero-text:    #f0f4f8;
  --hero-muted:   #9fb5ca;
  --hero-accent:  #f0a060;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 88px;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-full: 999px;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  /* Shadows — dark surfaces */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.40);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.48);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.55);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.62);
}

/* ── Base ─────────────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent scroll jumps when content changes height */
  overflow-y: scroll;
  /* Block horizontal scroll at the root */
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

/* Global overflow protection for text elements */
p, h1, h2, h3, h4, h5, h6, span, li {
  overflow-wrap: break-word;
  min-width: 0;
}

/* ── Global focus-visible ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── 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;
  }
  canvas { display: none !important; }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Emergency Bar ────────────────────────────────────────────────────────────── */
.emergency-bar {
  background: var(--urgent);
  color: #fdf0ee;
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 101;
}
.emergency-bar a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.emergency-bar a:hover { text-decoration: none; opacity: 0.88; }

/* ── Speed / Urgency Bar ─────────────────────────────────────────────────────── */
.speed-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: relative;
  z-index: 99;
}
.speed-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.speed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  white-space: nowrap;
}
.speed-item svg { flex-shrink: 0; color: var(--accent); }
.speed-sep {
  width: 1px;
  height: 18px;
  background: var(--border-bright);
  flex-shrink: 0;
}

/* ── Header ───────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.60);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-logo { height: 46px; width: auto; }
.logo-link  { display: flex; flex-shrink: 0; }

.header-nav {
  display: flex;
  gap: 36px;
}
.header-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.15s;
  padding: 2px 0;
  position: relative;
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: var(--r-full);
}
.header-nav a:hover { color: var(--accent); }
.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after,
.header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active,
.header-nav a[aria-current="page"] { color: var(--accent); }

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 22px;
  background: var(--accent);
  color: #fdf5ee;
  border-radius: var(--r-sm);
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 3px 16px var(--accent-glow);
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 5px 24px rgba(224, 123, 42, 0.50);
  transform: translateY(-1px);
}
.cta-label  { font-size: 0.60rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.82; }
.cta-number { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }

/* ── Buttons ──────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  line-height: 1;
  min-width: 0;
  min-height: 44px;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}
/* Prevent double-click confusion */
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #fdf5ee;
  box-shadow: 0 3px 16px var(--accent-glow);
  position: relative;
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  box-shadow: 0 5px 26px rgba(224, 123, 42, 0.52);
}

.btn-ghost {
  background: transparent;
  color: var(--hero-text);
  box-shadow: inset 0 0 0 2px rgba(240, 244, 248, 0.42);
}
.btn-ghost:hover {
  background: rgba(240, 244, 248, 0.08);
  box-shadow: inset 0 0 0 2px rgba(240, 244, 248, 0.72);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }

.btn-urgent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background: var(--urgent);
  color: #fdf0ee;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 14px rgba(192, 57, 43, 0.40);
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
  text-align: center;
}
.btn-urgent:hover {
  background: var(--urgent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 22px rgba(192, 57, 43, 0.52);
}
.btn-urgent:focus-visible {
  outline: 2.5px solid var(--urgent);
  outline-offset: 3px;
}

.btn-lg   { padding: 18px 40px; font-size: 1.2rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text);
  background: #0a1018;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-color: #0a1018;
  z-index: 0;
  filter: brightness(0.32) saturate(0.55);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    118deg,
    rgba(10, 16, 24, 0.96) 0%,
    rgba(10, 16, 24, 0.68) 45%,
    rgba(10, 16, 24, 0.24) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(224, 123, 42, 0.14);
  border: 1px solid rgba(224, 123, 42, 0.40);
  color: #f0a060;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-lg);
  overflow-wrap: normal;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--hero-text);
}

.headline-accent {
  color: var(--hero-accent);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--hero-muted);
  max-width: 54ch;
  margin-bottom: var(--space-xl);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.trust-num  {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--hero-accent);
  line-height: 1;
}
.trust-lbl  {
  font-size: 0.68rem;
  color: var(--hero-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 38px;
  background: rgba(240, 244, 248, 0.16);
  flex-shrink: 0;
}

/* ── Proof Banner ─────────────────────────────────────────────────────────────── */
.proof-banner {
  background: var(--bg-3);
  padding: var(--space-md) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.proof-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.proof-sep { color: var(--border-bright); font-size: 1.2rem; flex-shrink: 0; }

/* ── Section shared ───────────────────────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-xl); }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.07;
  margin-bottom: var(--space-md);
  color: var(--text);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.04rem;
  max-width: 56ch;
  line-height: 1.68;
}

/* ── Services ─────────────────────────────────────────────────────────────────── */
.services {
  padding: var(--space-2xl) 0;
  background: var(--bg-2);
}

/* Non-identical service card layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}
.services-grid > .service-card:not(.service-card--urgent) {
  grid-column: span 2;
}
.services-grid > .service-card:nth-child(4) {
  grid-column: 2 / 4;
}
.services-grid > .service-card:nth-child(5) {
  grid-column: 4 / 6;
}

/* Emergency row — full width urgency card */
.services-grid .service-card--urgent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 340px 1fr;
  border-color: rgba(192, 57, 43, 0.28);
  background: #1a1210;
}
.services-grid .service-card--urgent .service-img-wrap {
  height: 100%;
  min-height: 220px;
  border-radius: 0;
}
.services-grid .service-card--urgent .service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  gap: var(--space-md);
}
.services-grid .service-card--urgent .service-body p {
  max-width: 44ch;
  font-size: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  min-width: 0;
}
.service-card:hover {
  border-color: rgba(224, 123, 42, 0.30);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  border-color: rgba(224, 123, 42, 0.22);
}

.service-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 3;
  padding: 5px 12px;
  background: var(--accent);
  color: #fdf5ee;
  border-radius: var(--r-full);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(224, 123, 42, 0.45);
  white-space: nowrap;
}
.service-badge--urgent {
  background: var(--urgent);
  box-shadow: 0 2px 10px rgba(192, 57, 43, 0.45);
}

.service-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.82) saturate(0.80);
}
.service-card:hover .service-img-photo {
  transform: scale(1.05);
  filter: brightness(0.92) saturate(0.95);
}
.service-img-icon {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-img-photo.img-error { display: none; }
.service-img-photo.img-error + .service-img-icon { opacity: 1; }

.service-body { padding: var(--space-lg); min-width: 0; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Process ──────────────────────────────────────────────────────────────────── */
.process {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-xl);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  min-width: 0;
}
.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(224, 123, 42, 0.26);
}

.process-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(224, 123, 42, 0.10);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.04em;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: background 0.25s;
}
.process-step:hover .process-icon { background: var(--accent-mid); }

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.process-step p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border-bright);
  margin-top: 108px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--border-bright);
}

/* ── Why Us / About ───────────────────────────────────────────────────────────── */
.why-us { padding: var(--space-2xl) 0; background: var(--bg-2); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

.why-photo-col { position: relative; padding-bottom: 28px; }

.why-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  background: var(--bg-3);
}
.why-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-badge {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.badge-num   { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.badge-stars { color: var(--accent); font-size: 0.88rem; letter-spacing: 3px; margin: 4px 0; }
.badge-lbl   { font-size: 0.68rem; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.07em; }

.why-intro {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.74;
  margin-bottom: var(--space-xl);
  max-width: 56ch;
}

.why-list { display: flex; flex-direction: column; gap: var(--space-xl); margin-bottom: var(--space-xl); }

.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background 0.2s;
}
.why-item:hover .why-icon { background: var(--accent-mid); }

.why-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  color: var(--text);
}
.why-item p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

.about-service-area {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-md) var(--space-lg);
}
.about-service-area h4 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-subtle);
  margin-bottom: 7px;
}
.about-service-area p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Stats strip ──────────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-3);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-top: 5px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: auto;
}

/* ── Reviews ──────────────────────────────────────────────────────────────────── */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-bright);
}

.review-card--featured {
  border-color: rgba(224, 123, 42, 0.22);
  background: #1a1610;
}

.review-stars  { color: var(--accent); font-size: 0.9rem; letter-spacing: 3px; }
.review-text   { font-style: italic; font-size: 0.95rem; line-height: 1.74; color: var(--text-muted); flex: 1; }
.review-author { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); }
.review-source { font-size: 0.70rem; color: var(--text-subtle); }

.reviews-cta { text-align: center; color: var(--text-muted); font-size: 0.97rem; }

/* ── Service Area ─────────────────────────────────────────────────────────────── */
.service-area-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-2);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.area-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--text);
  font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}
.area-card:hover {
  border-color: rgba(224, 123, 42, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.area-card svg { flex-shrink: 0; }
.area-card span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.area-card--more {
  border-style: dashed;
  color: var(--text-subtle);
  font-style: italic;
  font-weight: 500;
}
.area-card--more svg { color: var(--cool); }
.area-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--bg-2);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  min-width: 0;
}
.faq-question span {
  min-width: 0;
  overflow-wrap: break-word;
}
.faq-question:hover { background: var(--bg-3); color: var(--accent); }
.faq-question[aria-expanded="true"] { background: #1a1610; color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #1a1610;
}
.faq-answer.is-open {
  max-height: 600px;
  padding: 0 var(--space-xl) var(--space-lg);
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.74;
  padding-top: var(--space-sm);
}
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--accent-bright); }

/* ── CTA Band ─────────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  background: var(--bg-3);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text);
}
.cta-band p { color: var(--text-muted); font-size: 1rem; }

/* ── Contact ──────────────────────────────────────────────────────────────────── */
.contact { padding: var(--space-2xl) 0; background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
  line-height: 1.68;
}

.contact-details  { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.contact-detail   { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact-detail > svg { flex-shrink: 0; margin-top: 3px; }
.contact-detail strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-subtle);
  margin-bottom: 3px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.99rem;
  font-weight: 500;
  display: block;
  color: var(--text);
  overflow-wrap: break-word;
}
.contact-detail a:hover { color: var(--accent); text-decoration: underline; }

.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Form ─────────────────────────────────────────────────────────────────────── */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.form-group label {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-subtle);
}
.form-group label span[aria-label="required"] {
  color: var(--urgent);
  font-weight: 800;
  margin-left: 2px;
}
.label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  font-size: 0.68rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  min-height: 44px; /* touch target */
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a7088' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(224, 123, 42, 0.14);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); opacity: 0.7; }
/* Invalid states */
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--urgent);
  background: #1a1010;
}
.form-group input[aria-invalid="true"]:focus,
.form-group select[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}
/* Dark select option */
.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.field-error {
  font-size: 0.71rem;
  color: #f1635a;
  margin-top: 3px;
  display: none;
}
.field-error.visible { display: block; }

.field-hint {
  font-size: 0.71rem;
  color: var(--text-subtle);
  margin-top: 3px;
  display: block;
}

.form-note {
  font-size: 0.70rem;
  color: var(--text-subtle);
  text-align: center;
  margin-top: var(--space-md);
}

.form-success {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--r-sm);
  color: #86efac;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(34, 197, 94, 0.20);
}
.form-success a { color: #86efac; font-weight: 700; text-decoration: underline; }

.form-error {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(192, 57, 43, 0.10);
  border-radius: var(--r-sm);
  color: #fca5a5;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(192, 57, 43, 0.22);
}
.form-error a { color: #fca5a5; font-weight: 700; text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-3);
  color: var(--text-muted);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 44px; width: auto; margin-bottom: var(--space-lg); }
.footer-brand p {
  color: var(--text-subtle);
  font-size: 0.9rem;
  max-width: 44ch;
  line-height: 1.67;
}
.footer-cols { display: flex; gap: var(--space-2xl); }
.footer-col  { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
  overflow-wrap: break-word;
}
.footer-col a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-subtle);
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p { font-size: 0.76rem; color: var(--text-subtle); }
.footer-credit { font-size: 0.76rem; }
.footer-credit a { color: var(--text-subtle); transition: color 0.15s; }
.footer-credit a:hover { color: var(--accent); }

/* ── Reveal animation ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero entrance */
  @keyframes heroUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224,123,42,0); }
    50%       { box-shadow: 0 0 24px 6px rgba(224,123,42,0.2); }
  }
  @keyframes shimmerSweep {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(250%) skewX(-15deg); }
  }
  @keyframes urgentGlow {
    0%, 100% { box-shadow: 0 2px 10px rgba(192,57,43,0.45); }
    50%       { box-shadow: 0 2px 28px rgba(192,57,43,0.80), 0 0 40px rgba(192,57,43,0.18); }
  }
  @keyframes sectionReveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-badge    { animation: heroUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.10s both,
                               badgeGlow 4s ease-in-out 2s infinite; }
  .hero-headline { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.26s both; }
  .hero-sub      { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.42s both; }
  .hero-actions  { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.56s both; }
  .hero-trust    { animation: heroUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.70s both; }

  /* Button shimmer */
  .btn-primary { overflow: hidden; }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmerSweep 3.5s ease-in-out 1.8s infinite;
    pointer-events: none;
  }

  /* Urgent card glow pulse */
  .service-card--urgent { animation: urgentGlow 2.8s ease-in-out infinite; }

  /* Section header reveal */
  .section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .section-header.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile Menu Button ───────────────────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.mobile-menu-btn:hover { border-color: var(--accent); background: var(--accent-dim); }
.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-menu.is-open { display: block; }

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.22s ease;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-lg);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.60);
  animation: slideInRight 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

/* Focus trap anchors for drawer */
.focus-trap-start,
.focus-trap-end {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: var(--bg-2); color: var(--text); }

.mobile-nav-link {
  display: block;
  padding: 14px var(--space-md);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
  min-height: 48px; /* accessibility touch target */
  display: flex;
  align-items: center;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { background: var(--accent-dim); color: var(--accent); }

.mobile-nav-cta {
  margin-top: var(--space-lg);
  justify-content: center;
  min-height: 52px;
}

/* Mobile emergency strip — fixed at bottom */
.mobile-emergency-strip {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--urgent);
  color: #fdf0ee;
  padding: 14px var(--space-md);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 -4px 24px rgba(192, 57, 43, 0.45);
  transition: background 0.15s;
}
.mobile-emergency-strip:hover { background: var(--urgent-hover); }
.mobile-emergency-strip span {
  opacity: 0.78;
  font-size: 0.72rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1px;
}

@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ── Active nav ───────────────────────────────────────────────────────────────── */
.header-nav a.active { color: var(--accent); }

/* ── Back to Top ──────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fdf5ee;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 22px var(--accent-glow);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s, transform 0.3s, background 0.15s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.05);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-nav { gap: 24px; }
}

@media (max-width: 980px) {
  /* Header */
  .header-nav      { display: none; }
  .mobile-menu-btn { display: flex; }
  /* Hide the phone CTA in header on mobile — emergency strip covers it */
  .header-cta      { display: none; }

  /* Layout shifts */
  .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: var(--space-lg);
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .why-photo-col { padding-bottom: 0; text-align: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-inner .btn { width: 100%; justify-content: center; }

  /* Proof banner */
  .proof-inner { flex-direction: column; gap: var(--space-md); }
  .proof-sep   { display: none; }

  /* Process steps */
  .process-steps { flex-direction: column; gap: var(--space-md); }
  .process-connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }
  .process-connector::after {
    right: -4px;
    top: unset;
    bottom: -6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--border-bright);
    border-bottom: none;
  }

  /* Services grid */
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid > .service-card:not(.service-card--urgent) { grid-column: span 2; }
  .services-grid > .service-card:nth-child(4) { grid-column: span 2; }
  .services-grid > .service-card:nth-child(5) { grid-column: span 2; }
  .services-grid .service-card--urgent {
    grid-column: 1 / -1;
    grid-template-columns: 220px 1fr;
  }

  /* Stats */
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }

  /* Speed bar */
  .speed-bar-inner { gap: var(--space-md); }
  .speed-sep       { display: none; }
}

@media (max-width: 640px) {
  /* Container — tighter horizontal padding on phones */
  .container { padding: 0 var(--space-md); }

  /* Emergency bar — allow link to wrap on very small screens */
  .emergency-bar { font-size: 0.76rem; padding: 10px var(--space-md); }
  .emergency-bar a { white-space: normal; }

  /* Header — keep it single row: logo + hamburger only */
  .header-inner { flex-wrap: nowrap; gap: var(--space-sm); }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner { padding-top: var(--space-xl); padding-bottom: calc(var(--space-xl) + 60px); }
  .hero-badge {
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.72rem;
    padding: 6px 14px;
  }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.0; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: var(--space-sm); }
  .hero-actions .btn { justify-content: center; width: 100%; min-height: 52px; }
  .hero-trust { gap: var(--space-md) var(--space-lg); flex-wrap: wrap; justify-content: flex-start; }
  .trust-divider { display: none; }
  .trust-num  { font-size: 1.5rem; }
  .trust-item { align-items: flex-start; }
  .trust-lbl  { white-space: normal; max-width: 72px; }

  /* Speed bar — centered column on mobile */
  .speed-bar-inner { flex-direction: column; gap: 8px; align-items: center; }
  .speed-sep       { display: none; }
  .speed-item      { font-size: 0.72rem; white-space: normal; text-align: center; justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  /* Services grid — single column */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid > .service-card,
  .services-grid > .service-card:not(.service-card--urgent),
  .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5) { grid-column: auto; }
  .services-grid .service-card--urgent {
    grid-column: auto;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .services-grid .service-card--urgent .service-img-wrap { height: 200px; border-radius: 0; }
  .services-grid .service-card--urgent .service-body { padding: var(--space-lg); gap: var(--space-sm); }
  .services-grid .service-card--urgent .btn-urgent { width: 100%; }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Area grid */
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card { padding: var(--space-sm) var(--space-md); min-height: 44px; }

  /* FAQ */
  .faq-question {
    padding: var(--space-md);
    font-size: 0.95rem;
    min-height: 52px;
  }
  .faq-answer.is-open { padding: 0 var(--space-md) var(--space-md); }

  /* CTA band — full-width button */
  .cta-band-inner .btn { width: 100%; justify-content: center; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-lg); }

  /* Footer */
  .footer-cols { flex-direction: column; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-col a,
  .footer-col span { overflow-wrap: anywhere; word-break: break-word; }

  /* Mobile emergency strip — visible + extra safe-area padding */
  .mobile-emergency-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 56px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-emergency-strip span { display: block; margin-bottom: 0; }

  /* Back-to-top — clears the emergency strip */
  .back-to-top { bottom: 72px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-badge    { font-size: 0.68rem; padding: 5px 10px; }
  .area-grid     { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
  .trust-num     { font-size: 1.35rem; }
}
