/* =========================================================
   RESTORE XPERTS — Design System
   www.restorexperts.com
   Mobile-First | Inspection-First | Conversion-Focused
   ========================================================= */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Core Palette */
  --navy:        #1C2B4A;   /* Trust, authority, command */
  --navy-deep:   #0F1E35;   /* Deep trust, hero depth */
  --navy-mid:    #243355;   /* Hover states, depth */
  --slate:       #2E5B8B;   /* Approachable expertise */
  --amber:       #D97706;   /* Urgency without panic, action */
  --amber-light: #F59E0B;   /* Amber hover */
  --amber-glow:  rgba(217,119,6,0.15);

  /* Neutrals */
  --white:       #FFFFFF;
  --cloud:       #F8FAFC;   /* Breathing room, organized */
  --cloud-dark:  #F1F5F9;
  --charcoal:    #1E293B;   /* Body text, premium readable */
  --steel:       #94A3B8;   /* Supporting, muted */
  --slate-light: #CBD5E1;   /* Dividers */

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing (8px grid) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.14), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-amber: 0 4px 20px rgba(217,119,6,0.35);

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
@media (min-width: 768px)  { .container { padding: 0 var(--sp-8); } }
@media (min-width: 1280px) { .container { padding: 0 var(--sp-6); } }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow--light { color: rgba(255,255,255,0.55); }
.eyebrow--amber { color: var(--amber); }

.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-top: var(--sp-3);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--steel);
  margin-top: var(--sp-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.6); }

@media (min-width: 768px) {
  .section-header h2 { font-size: var(--text-4xl); }
}

/* ─── BUTTON SYSTEM ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--emergency {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  font-size: var(--text-base);
  padding: 1rem 2rem;
}
.btn--emergency:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  font-size: var(--text-base);
  padding: 1rem 2rem;
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--amber-outline {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn--amber-outline:hover {
  background: var(--amber);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--lg   { padding: 1.125rem 2.25rem; font-size: var(--text-base); }
.btn--sm   { padding: 0.6rem 1.25rem; font-size: var(--text-xs); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--navy);
}
.logo-wordmark .x { color: var(--amber); }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}
.nav-links a {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--cloud); color: var(--navy); }

/* Nav CTA */
.nav-actions {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--amber);
  transition: var(--transition);
}
.nav-phone:hover { color: var(--amber-light); }
.nav-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  border-radius: var(--radius);
  transition: var(--transition);
}
.hamburger:hover { background: var(--cloud); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--sp-8) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-links a {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 1px solid var(--cloud-dark);
}
.mobile-links a:hover { background: var(--cloud); color: var(--navy); }

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
}
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--amber);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background-color: var(--navy);
  overflow: hidden;
}

/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Right atmospheric glow */
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(46,91,139,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding: var(--sp-20) 0;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-6);
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(217,119,6,0.25);
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  color: var(--amber);
  display: block;
}

.hero-subtitle {
  margin-top: var(--sp-6);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
}

.hero-actions {
  margin-top: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero-trust {
  margin-top: var(--sp-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-trust-item svg {
  color: var(--amber);
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* Hero precision visual */
.hero-visual {
  display: none;
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hero-target {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow:
    0 0 0 2px rgba(217,119,6,0.5),
    0 0 0 28px rgba(217,119,6,0.07),
    0 0 0 70px rgba(217,119,6,0.04),
    0 0 0 120px rgba(255,255,255,0.025),
    0 0 0 185px rgba(255,255,255,0.018),
    0 0 0 260px rgba(255,255,255,0.012),
    0 0 0 350px rgba(255,255,255,0.006);
}
.hero-target::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.06) 75%,
    transparent 100%);
}
.hero-target::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 520px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.06) 75%,
    transparent 100%);
}

@media (min-width: 1024px) {
  .hero-title { font-size: var(--text-7xl); }
  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 660px;
  }
  .hero-visual { display: flex; }
}

/* ─── EMERGENCY BAND ─────────────────────────────────────── */
.emergency-band {
  background: var(--navy-deep);
  border-top: 3px solid var(--amber);
  padding: var(--sp-5) 0;
}
.emergency-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
}
.emergency-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.emergency-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
.emergency-text strong {
  font-weight: 700;
  color: var(--white);
}
.emergency-phone-link {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: var(--transition);
}
.emergency-phone-link:hover { color: var(--amber); }

@media (min-width: 768px) {
  .emergency-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-6);
  }
  .emergency-band-left { flex: 1; min-width: 0; }
}

/* ─── SECTION WRAPPER ────────────────────────────────────── */
.section { padding: var(--sp-20) 0; }
.section--cloud { background: var(--cloud); }
.section--dark {
  background: var(--navy-deep);
  background-image: radial-gradient(circle at 20% 80%, rgba(46,91,139,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(46,91,139,0.1) 0%, transparent 50%);
}
@media (min-width: 768px) { .section { padding: var(--sp-24) 0; } }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-light);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.service-card:hover {
  border-left-color: var(--amber);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card--emergency {
  border-left-color: var(--amber);
  background: linear-gradient(135deg, #fffbf0 0%, var(--white) 100%);
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--cloud);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.service-card--emergency .service-icon {
  background: rgba(217,119,6,0.1);
  color: var(--amber);
}
.service-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--steel);
  line-height: 1.6;
  flex: 1;
}
.service-price {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--amber);
}
.service-price-note {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--steel);
  margin-left: var(--sp-1);
}
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  margin-top: var(--sp-2);
  transition: color 0.2s var(--ease);
}
.service-cta-link svg { transition: transform 0.2s var(--ease); }
.service-cta-link:hover {
  color: var(--amber);
}
.service-cta-link:hover svg { transform: translateX(3px); }
.service-card--emergency .service-cta-link {
  color: var(--amber);
}
.service-card--emergency .service-cta-link:hover {
  color: var(--amber-light);
}
.service-card--emergency .service-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(217,119,6,0.12);
  color: var(--amber);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
  width: fit-content;
}

/* ─── WHY US ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.why-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.why-icon--amber {
  background: rgba(217,119,6,0.12);
  color: var(--amber);
}

.why-item h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.why-item p {
  font-size: var(--text-sm);
  color: var(--steel);
  line-height: 1.65;
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(33.33% - 0px);
    right: calc(33.33% - 0px);
    height: 1px;
    background: linear-gradient(to right, var(--amber) 0%, var(--amber) 100%);
    opacity: 0.3;
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-8);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .process-step { align-items: center; text-align: center; }
}

.process-number {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--slate-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.process-step:hover .process-number {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 0 6px rgba(217,119,6,0.08);
}

.process-step h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
}
.process-step p {
  font-size: var(--text-base);
  color: var(--steel);
  line-height: 1.65;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}
@media (min-width: 768px)  { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: var(--transition);
}
.pricing-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.pricing-card--featured {
  background: var(--white);
  border-color: var(--amber);
  border-width: 2px;
  box-shadow: 0 0 0 6px rgba(217,119,6,0.08), var(--shadow-xl);
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  background: var(--white);
  transform: scale(1.04) translateY(-2px);
}

.pricing-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pricing-card--featured .pricing-label { color: var(--amber); }

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.pricing-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.pricing-card--featured .pricing-title { color: var(--navy); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
}
.pricing-from {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.pricing-card--featured .pricing-from { color: var(--steel); }
.pricing-price {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-card--featured .pricing-price { color: var(--navy); }

.pricing-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.pricing-card--featured .pricing-desc { color: var(--steel); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.pricing-card--featured .pricing-feature { color: var(--charcoal); }
.pricing-feature svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ─── TRUST / STATS / TESTIMONIALS ───────────────────────── */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-20);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--slate-light);
  border-bottom: 1px solid var(--slate-light);
}
@media (min-width: 768px) { .trust-stats { grid-template-columns: repeat(4, 1fr); } }

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4);
}
.trust-stat-value {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-stat-label {
  font-size: var(--text-sm);
  color: var(--steel);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testimonial-stars {
  display: flex;
  gap: var(--sp-1);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--amber); color: var(--amber); }

.testimonial-card blockquote {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
}
.author-location {
  font-size: var(--text-xs);
  color: var(--steel);
}

/* Google Reviews invite block */
.google-invite {
  text-align: center;
  margin-top: var(--sp-16);
  padding: var(--sp-10) var(--sp-8);
  background: var(--cloud);
  border: 1px solid var(--slate-light);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.google-invite p {
  font-size: var(--text-sm);
  color: var(--steel);
  margin-bottom: var(--sp-2);
}
.google-invite p:last-of-type {
  margin-bottom: var(--sp-6);
}
.google-invite strong {
  color: var(--charcoal);
}

/* ─── SERVICE AREA ───────────────────────────────────────── */
.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 1024px) { .area-layout { grid-template-columns: 1fr 1fr; gap: var(--sp-16); } }

.area-eyebrow { margin-bottom: var(--sp-4); }
.area-layout h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
@media (min-width: 768px) { .area-layout h2 { font-size: var(--text-4xl); } }
.area-layout p {
  font-size: var(--text-lg);
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.area-tag {
  padding: var(--sp-2) var(--sp-4);
  background: var(--cloud);
  border: 1px solid var(--slate-light);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.area-tag--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.area-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.area-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.area-map-text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.area-map-text svg {
  width: 48px; height: 48px;
  color: var(--amber);
  margin: 0 auto var(--sp-4);
}
.area-map-text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0;
}
.area-map-text small {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: var(--text-sm);
  margin-top: var(--sp-2);
}

/* ─── CONTACT / BOOKING ──────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 5fr 7fr; gap: var(--sp-16); align-items: start; } }

.contact-info { padding-top: var(--sp-2); }
.contact-info h2 {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.contact-info > p {
  font-size: var(--text-lg);
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--cloud);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.contact-detail-text span, .contact-detail-text a {
  font-size: var(--text-base);
  color: var(--charcoal);
}
.contact-detail-text a:hover { color: var(--amber); }
.contact-detail-text .hours-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--steel);
  margin-top: var(--sp-1);
}

.contact-emergency-box {
  padding: var(--sp-5);
  background: rgba(217,119,6,0.06);
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: var(--radius-lg);
  margin-top: var(--sp-2);
}
.contact-emergency-box .em-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.contact-emergency-box p {
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-emergency-box a {
  font-weight: 700;
  color: var(--amber);
}

/* Form */
.form-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}
.form-wrapper h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-wrapper > p {
  font-size: var(--text-sm);
  color: var(--steel);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--cloud-dark);
}

.form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
}
.form-label .req { color: var(--amber); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--slate-light);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--steel); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,74,0.08);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-select-wrapper {
  position: relative;
}
.form-select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--steel);
  pointer-events: none;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--steel);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--navy);
}

/* ── Optional label annotation ─── */
.form-label-optional {
  font-weight: 400;
  color: var(--steel);
  font-size: var(--text-xs);
  margin-left: var(--sp-1);
}

/* ── File input ─── */
.form-input--file {
  display: block;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--charcoal);
  background: var(--cloud);
  border: 1.5px dashed var(--slate-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.form-input--file:hover {
  border-color: var(--slate);
}
.form-input--file:focus {
  outline: none;
  border-color: var(--navy);
  border-style: solid;
}

/* ── Form hint text ─── */
.form-hint {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--steel);
  line-height: 1.5;
}

/* ── Service policies box ─── */
.form-policies {
  padding: var(--sp-4) var(--sp-5);
  background: var(--cloud);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--sp-4);
}
.form-policies-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-policies ul {
  list-style: disc;
  padding-left: var(--sp-5);
}
.form-policies ul li {
  font-size: var(--text-xs);
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 2px;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-12);
}
.form-success.show { display: block; }
.form-success svg {
  width: 56px; height: 56px;
  color: #22c55e;
  margin: 0 auto var(--sp-4);
}
.form-success h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-success p { color: var(--steel); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: var(--sp-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-12); } }

.footer-brand .logo-wordmark { color: var(--white); }
.footer-brand p {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .footer-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.footer-brand .footer-phone:hover { color: var(--amber); }

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-emergency {
  padding: var(--sp-5);
  background: rgba(217,119,6,0.1);
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: var(--radius-lg);
}
.footer-emergency .em-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-2);
}
.footer-emergency p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}
.footer-emergency a.em-phone {
  display: block;
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  transition: var(--transition);
}
.footer-emergency a.em-phone:hover { color: var(--amber); }

.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom p { font-size: var(--text-xs); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: var(--sp-5); }

/* ─── SCROLL ANIMATION ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-navy  { color: var(--navy); }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── FLOATING MOBILE EMERGENCY CTA ─────────────────────── */
.float-emergency {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy-deep);
  border-top: 2px solid var(--amber);
  padding: var(--sp-3) var(--sp-4);
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.float-emergency.is-visible { transform: translateY(0); }

.float-emergency-call {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  min-width: 0;
  text-decoration: none;
}
.float-emergency-call svg { color: var(--amber); flex-shrink: 0; }
.float-emergency-text { display: flex; flex-direction: column; min-width: 0; }
.float-emergency-text strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}
.float-emergency-text span {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.float-emergency-book {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  background: var(--amber);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.float-emergency-book:hover { background: var(--amber-light); }

/* Show only on mobile and tablet */
@media (max-width: 767px) {
  .float-emergency { display: flex; }
  /* Add bottom padding to body so content isn't hidden behind float bar */
  body.float-active { padding-bottom: 68px; }
}

/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6) var(--sp-8);
  }
}

.faq-col { display: flex; flex-direction: column; gap: var(--sp-4); }

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-item.is-open {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}
.faq-question:hover { color: var(--slate); }
.faq-question span { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  color: var(--steel);
  transition: transform 0.3s var(--ease), color 0.25s var(--ease);
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--amber);
}
.faq-item.is-open .faq-question { color: var(--navy); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--steel);
  line-height: 1.75;
  border-top: 1px solid var(--cloud-dark);
  margin-top: 0;
  padding-top: var(--sp-4);
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--slate-light);
}
.faq-cta p {
  font-size: var(--text-lg);
  color: var(--steel);
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-bottom: var(--sp-2);
}

/* ─── HERO ENHANCEMENTS ──────────────────────────────────── */
/* Diagonal separator between hero and emergency band */
.hero-separator {
  display: block;
  height: 40px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  margin-top: -1px;
}

/* Subtle number counter in hero */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-proof-value {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-proof-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── CONTRAST STRIP — "WHY INDEPENDENT" ────────────────── */
.why-strip {
  background: var(--navy);
  padding: var(--sp-16) 0;
}
.why-strip-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  align-items: flex-start;
}
@media (min-width: 900px) {
  .why-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-12);
  }
}
.why-strip-text h2 {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
@media (min-width: 768px) { .why-strip-text h2 { font-size: var(--text-4xl); } }
.why-strip-text p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
}
.why-strip-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  flex-shrink: 0;
}
@media (min-width: 900px) { .why-strip-stat { align-items: flex-end; } }
.why-strip-stat-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.why-strip-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  max-width: 180px;
  line-height: 1.4;
}
@media (min-width: 900px) { .why-strip-stat-label { text-align: right; } }

/* ─── ACTIVE NAV STATE ───────────────────────────────────── */
.nav-links a.is-active { color: var(--amber); background: rgba(217,119,6,0.08); }

/* ─── PAGE HERO (subpage header) ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: var(--sp-24) 0 var(--sp-16);
  text-align: center;
}
.page-hero .eyebrow { color: var(--amber); opacity: 1; margin-bottom: var(--sp-4); display: block; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
  line-height: 1.6;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5); flex-wrap: wrap; justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── QUICK-LINK CARDS (home page) ──────────────────────── */
.quicklinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
@media (max-width: 600px) { .quicklinks-grid { grid-template-columns: 1fr; } }
@media (min-width: 900px) { .quicklinks-grid { grid-template-columns: repeat(4, 1fr); } }
.quicklink-card {
  display: block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  text-decoration: none;
  transition: var(--transition);
}
.quicklink-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.quicklink-icon {
  width: 44px; height: 44px;
  background: rgba(217,119,6,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}
.quicklink-card h3 { color: var(--white); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.quicklink-card p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); line-height: 1.5; margin-bottom: var(--sp-4); }
.quicklink-card-arrow { color: var(--amber); font-size: var(--text-sm); font-weight: 600; }

/* ─── SERVICE DETAIL LAYOUT (individual service pages) ───── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr 320px; gap: var(--sp-16); align-items: start; }
}
.service-detail-body > h2 {
  font-size: var(--text-3xl); font-weight: 800; color: var(--navy);
  margin-bottom: var(--sp-4); letter-spacing: -0.02em;
}
.service-detail-body > p { font-size: var(--text-base); color: var(--steel); line-height: 1.75; margin-bottom: var(--sp-5); }
.service-includes {
  background: var(--cloud); border-radius: var(--radius-lg);
  padding: var(--sp-6); margin: var(--sp-8) 0;
}
.service-includes h3 {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--navy); margin-bottom: var(--sp-4);
}
.service-includes ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.service-includes li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--charcoal); line-height: 1.5;
}
.service-includes li svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.service-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: var(--sp-5); }
.service-cta-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6); text-align: center;
}
.service-cta-box h3 { font-size: var(--text-xl); color: var(--white); margin-bottom: var(--sp-1); }
.service-cta-box .price-display { font-size: 2.25rem; font-weight: 900; color: var(--white); margin: var(--sp-3) 0 var(--sp-1); letter-spacing: -0.03em; }
.service-cta-box .price-from { font-size: var(--text-xs); font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.service-cta-box p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); line-height: 1.5; margin-bottom: var(--sp-5); }
.service-cta-box .btn { width: 100%; justify-content: center; margin-bottom: var(--sp-3); }
.service-related { background: var(--cloud); border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-6); }
.service-related h4 { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: var(--sp-3); }
.service-related-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.service-related-links a {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3); background: var(--white);
  border-radius: var(--radius); font-size: var(--text-sm); font-weight: 500;
  color: var(--navy); text-decoration: none; transition: var(--transition);
  border: 1px solid var(--slate-light);
}
.service-related-links a:hover { border-color: var(--amber); color: var(--amber); }

/* Section CTA Banner */
.cta-banner {
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  margin-top: var(--sp-16);
}
.cta-banner h2 { font-size: var(--text-2xl); font-weight: 800; color: var(--white); margin-bottom: var(--sp-2); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: var(--sp-6); }
.cta-banner .btn--ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
