/* ============================================================
   DRAIN FORCE — Design Tokens
   ============================================================ */

:root {
  /* Type scale — fluid clamp() */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 5.5rem);

  /* Spacing — 4px base unit */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.3125rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'General Sans', 'Segoe UI', sans-serif;
  --font-body: 'Satoshi', 'General Sans', 'Segoe UI', sans-serif;
}

/* ---- Light mode (default) ---- */
:root,
[data-theme='light'] {
  --color-bg: #f5f8fc;
  --color-surface: #ffffff;
  --color-surface-2: #eef3f9;
  --color-surface-offset: #e7edf6;
  --color-surface-dynamic: #dde6f1;
  --color-divider: rgba(15, 27, 46, 0.08);
  --color-border: rgba(15, 27, 46, 0.12);

  --color-text: #0e1b2e;
  --color-text-muted: #566a85;
  --color-text-faint: #9aabc2;
  --color-text-inverse: #f7fafd;

  /* Primary — Force Blue */
  --color-primary: #1568d6;
  --color-primary-hover: #0f52ac;
  --color-primary-active: #0c4589;
  --color-primary-highlight: #dbe9fb;

  /* Navy — brand dark */
  --color-navy: #0e1b2e;
  --color-navy-2: #142842;

  /* Urgent — for phone / emergency CTAs only */
  --color-urgent: #e0501f;
  --color-urgent-hover: #c1410f;
  --color-urgent-active: #a1370f;
  --color-urgent-highlight: #fbe3d7;

  /* Success (used sparingly — confirmations) */
  --color-success: #1f8a52;
  --color-success-highlight: #d9f0e3;

  --shadow-sm: 0 1px 2px rgba(14, 27, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 27, 46, 0.08);
  --shadow-lg: 0 20px 48px rgba(14, 27, 46, 0.14);
  --shadow-navy: 0 20px 48px rgba(8, 14, 26, 0.35);
}

/* ---- Dark mode ---- */
[data-theme='dark'] {
  --color-bg: #0a121e;
  --color-surface: #101c2c;
  --color-surface-2: #142234;
  --color-surface-offset: #182a40;
  --color-surface-dynamic: #1d3049;
  --color-divider: rgba(255, 255, 255, 0.08);
  --color-border: rgba(255, 255, 255, 0.12);

  --color-text: #e7edf6;
  --color-text-muted: #93a5c0;
  --color-text-faint: #5c6d87;
  --color-text-inverse: #0e1b2e;

  --color-primary: #4f9bf0;
  --color-primary-hover: #74b1f4;
  --color-primary-active: #90c1f6;
  --color-primary-highlight: #1c3350;

  --color-navy: #060c15;
  --color-navy-2: #0b1524;

  --color-urgent: #ff6b3d;
  --color-urgent-hover: #ff8563;
  --color-urgent-active: #ff9a7d;
  --color-urgent-highlight: #3a2419;

  --color-success: #3fb37b;
  --color-success-highlight: #16302342;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
  --shadow-navy: 0 20px 48px rgba(0, 0, 0, 0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0a121e;
    --color-surface: #101c2c;
    --color-surface-2: #142234;
    --color-surface-offset: #182a40;
    --color-surface-dynamic: #1d3049;
    --color-divider: rgba(255, 255, 255, 0.08);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-text: #e7edf6;
    --color-text-muted: #93a5c0;
    --color-text-faint: #5c6d87;
    --color-text-inverse: #0e1b2e;
    --color-primary: #4f9bf0;
    --color-primary-hover: #74b1f4;
    --color-primary-active: #90c1f6;
    --color-primary-highlight: #1c3350;
    --color-navy: #060c15;
    --color-navy-2: #0b1524;
    --color-urgent: #ff6b3d;
    --color-urgent-hover: #ff8563;
    --color-urgent-active: #ff9a7d;
    --color-urgent-highlight: #3a2419;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
    --shadow-navy: 0 20px 48px rgba(0, 0, 0, 0.6);
  }
}

/* ============================================================
   Base layout helpers
   ============================================================ */

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section-pad-lg {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}
.section-pad-sm {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.04;
}
.h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.08;
}
.h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.15;
}
.h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 56ch;
}
.body-muted {
  color: var(--color-text-muted);
}
.body-text {
  max-width: 68ch;
  color: var(--color-text-muted);
}

.text-inverse {
  color: var(--color-text-inverse);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  line-height: 1;
  min-height: 48px;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--primary:active {
  background: var(--color-primary-active);
  transform: translateY(0);
}

.btn--urgent {
  background: var(--color-urgent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn--urgent:hover {
  background: var(--color-urgent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--urgent:active {
  background: var(--color-urgent-active);
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-surface-2);
  border-color: var(--color-text-faint);
}

.btn--ghost-inverse {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost-inverse:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: var(--text-xs);
  min-height: 38px;
}
.btn--block {
  width: 100%;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

.topbar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  font-size: var(--text-xs);
}
.topbar-inner a {
  color: inherit;
  text-decoration: none;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.topbar-links a:hover {
  color: #ffffff;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  color: #ffffff;
}
.topbar-phone svg {
  width: 14px;
  height: 14px;
  color: var(--color-urgent);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  height: 38px;
  width: auto;
}
.logo-img--dark {
  display: none;
}
[data-theme='dark'] .logo-img--light {
  display: none;
}
[data-theme='dark'] .logo-img--dark {
  display: block;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .logo-img--light {
    display: none;
  }
  :root:not([data-theme]) .logo-img--dark {
    display: block;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-block: var(--space-2);
}
.main-nav a:hover {
  color: var(--color-primary);
}
.main-nav svg.chev {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-interactive);
}
.has-dropdown:hover svg.chev {
  transform: rotate(180deg);
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 280px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s var(--ease-out),
    transform 0.2s var(--ease-out),
    visibility 0.2s;
  z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-weight: 500;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.menu-toggle {
  display: none;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-surface);
  z-index: 200;
  overflow-y: auto;
  padding: var(--space-5);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.mobile-nav-head img {
  height: 32px;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-nav > ul > li > a,
.mobile-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
  color: var(--color-text);
}
.mobile-subnav {
  display: none;
  flex-direction: column;
  padding-left: var(--space-4);
  gap: 0;
}
.mobile-subnav.is-open {
  display: flex;
}
.mobile-subnav a {
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .nav-actions .btn--ghost {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 640px) {
  .nav-actions .btn--primary span {
    display: none;
  }
  .topbar-links {
    display: none;
  }
}

/* ============================================================
   Trust bar
   ============================================================ */

.trust-bar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar-track {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-3);
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary-active, #4f9bf0);
  flex-shrink: 0;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  background: var(--color-navy);
  color: #ffffff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 27, 0.55) 0%, rgba(9, 16, 27, 0.75) 55%, rgba(9, 16, 27, 0.96) 100%),
    linear-gradient(100deg, rgba(9, 16, 27, 0.92) 10%, rgba(9, 16, 27, 0.35) 62%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-20), 14vw, var(--space-32));
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-20));
}
.hero-content {
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-6);
}
.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38d16a;
  box-shadow: 0 0 0 0 rgba(56, 209, 106, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 209, 106, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(56, 209, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 209, 106, 0);
  }
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-5);
  color: #ffffff;
}
.hero h1 .accent {
  color: #5eabf6;
}
.hero p.hero-lede {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  max-width: 54ch;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
}
.hero-meta-item strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}
.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Interior page hero (service/location pages) */
.page-hero {
  background: var(--color-navy);
  color: #fff;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}
.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  max-width: 20ch;
  margin-bottom: var(--space-4);
  color: #ffffff;
}
.page-hero .lede {
  color: rgba(255, 255, 255, 0.75);
  max-width: 58ch;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ============================================================
   Services grid
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card .icon-wrap {
  color: var(--color-primary);
}
.service-card .icon-wrap svg {
  width: 30px;
  height: 30px;
}
.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex-grow: 1;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.service-card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-interactive);
}
.service-card:hover .card-link svg {
  transform: translateX(3px);
}
.service-card--feature {
  grid-column: span 2;
  background: var(--color-navy);
  color: #fff;
  border: none;
  justify-content: center;
}
.service-card--feature h3 {
  font-size: var(--text-xl);
  color: #ffffff;
}
.service-card--feature p {
  color: rgba(255, 255, 255, 0.7);
}
.service-card--feature .icon-wrap {
  color: #5eabf6;
}
.service-card--feature .card-link {
  color: #5eabf6;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--feature {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card--feature {
    grid-column: span 1;
  }
}

/* ============================================================
   Why choose us
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  align-items: center;
}
.why-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-media img {
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
}
.why-stat-card {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: color-mix(in srgb, var(--color-navy) 88%, transparent);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.why-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
  color: #5eabf6;
}
.why-stat-card span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
.why-item:first-child {
  padding-top: 0;
}
.why-item-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-faint);
  min-width: 2ch;
  padding-top: 0.15em;
}
.why-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.why-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Offer / CTA band
   ============================================================ */

.offer-band {
  background: linear-gradient(120deg, var(--color-navy) 0%, #0c1729 55%, var(--color-navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(var(--space-6), 5vw, var(--space-16));
  align-items: center;
}
.offer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
}
.offer-card .eyebrow {
  color: #5eabf6;
}
.offer-card .eyebrow::before {
  background: #5eabf6;
}
.offer-card h3 {
  color: #fff;
  font-size: var(--text-xl);
  margin-block: var(--space-3) var(--space-3);
}
.offer-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}
.offer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-divider {
    padding-block: var(--space-2);
  }
}

/* ============================================================
   Reviews
   ============================================================ */

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.rating-score {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
}
.rating-stars {
  display: flex;
  gap: 2px;
  color: #f0a71b;
  margin-bottom: 2px;
}
.rating-stars svg {
  width: 16px;
  height: 16px;
}
.rating-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review-card .rating-stars {
  margin: 0;
}
.review-card p {
  font-size: var(--text-sm);
  color: var(--color-text);
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
}
.review-author strong {
  color: var(--color-text);
  font-weight: 700;
  display: block;
}

@media (max-width: 900px) {
  .reviews-track {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Service area strip
   ============================================================ */

.areas-band {
  background: var(--color-surface-2);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
.area-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
}
.area-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.area-chip svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Process steps
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.process-step {
  position: relative;
  padding-top: var(--space-6);
  border-top: 2px solid var(--color-divider);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-3);
}
.process-step h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ Accordion
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-divider);
}
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  text-align: left;
  padding-block: var(--space-5);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-faint);
  transition: transform var(--transition-interactive);
}
.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
  color: var(--color-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}
.faq-answer-inner {
  padding-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 68ch;
}

/* ============================================================
   Two column content (service/location pages)
   ============================================================ */

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
}
.content-main > * + * {
  margin-top: var(--space-5);
}
.content-main h2 {
  margin-top: var(--space-10);
}
.content-main ul,
.content-main ol {
  padding-left: var(--space-5);
  color: var(--color-text-muted);
}
.content-main ul {
  list-style: none;
  padding-left: 0;
}
.content-main ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-primary);
}

.side-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.side-card + .side-card {
  margin-top: var(--space-5);
}
.side-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}
.side-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.side-card ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.side-card ul li svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}
.side-cta {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
}
.side-cta h4 {
  color: #fff;
}
.side-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}
.side-cta .btn {
  width: 100%;
  margin-bottom: var(--space-3);
}

@media (max-width: 860px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Form
   ============================================================ */

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10) var(--space-4);
}
.form-success.is-visible {
  display: block;
}
.form-success svg {
  width: 52px;
  height: 52px;
  color: var(--color-success);
  margin: 0 auto var(--space-4);
}
.form-success h3 {
  margin-bottom: var(--space-2);
}
.form-success p {
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: auto;
  }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-block: clamp(var(--space-16), 8vw, var(--space-20));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  display: inline-block;
  margin-bottom: var(--space-5);
}
.footer-brand-logo img {
  height: 32px;
}
.footer-top p {
  font-size: var(--text-sm);
  max-width: 34ch;
  margin-bottom: var(--space-5);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.footer-social a:hover {
  background: var(--color-primary);
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #5eabf6;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-block: var(--space-5);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}
.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Sticky mobile call bar
   ============================================================ */

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
.mobile-call-bar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 720px) {
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}

/* ============================================================
   Misc utility
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}
.badge svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}

.divider-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
}

.section-head {
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
  max-width: 760px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: var(--space-3);
}
.section-head p {
  margin-top: var(--space-4);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 999;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

@media (max-width: 720px) {
  .h1,
  .hero h1 {
    line-height: 1.08;
  }
}
