/* ============================================================
   ALL FACILITY SERVICES — Design Tokens & Component Styles
   Color: White base, steel blue accent, navy authority
   Fonts: Cabinet Grotesk (display) + Satoshi (body)
   ============================================================ */

/* ---- FONTS ---- */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700,800,900&f[]=satoshi@400,500,700&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Type Scale */
  --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.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --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;

  /* Colors — White/Blue Brand Palette */
  --color-bg:              #ffffff;
  --color-surface:         #f7f9fc;
  --color-surface-2:       #eef2f8;
  --color-surface-offset:  #e3eaf4;
  --color-divider:         #d1dae8;
  --color-border:          #c6d1e3;

  --color-text:            #0f1c2e;
  --color-text-muted:      #4a5f7a;
  --color-text-faint:      #96a8be;
  --color-text-inverse:    #ffffff;

  /* Steel blue primary */
  --color-primary:         #1a5fa8;
  --color-primary-hover:   #164e8e;
  --color-primary-active:  #103d70;
  --color-primary-highlight: #dde8f5;

  /* Deep navy accent */
  --color-navy:            #0d2d52;
  --color-navy-hover:      #0a2241;

  /* Utility */
  --color-success:         #1e7c4a;
  --color-error:           #c0392b;
  --color-warning:         #b05a00;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.2 0.06 240 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.06 240 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.2 0.06 240 / 0.14);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body:    'Satoshi', 'Helvetica Neue', sans-serif;
}

/* Dark mode */
[data-theme="dark"] {
  --color-bg:              #0a1628;
  --color-surface:         #0f1e35;
  --color-surface-2:       #152540;
  --color-surface-offset:  #1a2c4a;
  --color-divider:         #1f3355;
  --color-border:          #253d63;
  --color-text:            #dce8f5;
  --color-text-muted:      #7e9ab8;
  --color-text-faint:      #4a6685;
  --color-text-inverse:    #0a1628;
  --color-primary:         #4d96e0;
  --color-primary-hover:   #71aee8;
  --color-primary-active:  #94c2ef;
  --color-primary-highlight: #1a3255;
  --color-navy:            #6aade6;
  --color-navy-hover:      #8bbfec;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #0a1628;
    --color-surface:         #0f1e35;
    --color-surface-2:       #152540;
    --color-surface-offset:  #1a2c4a;
    --color-divider:         #1f3355;
    --color-border:          #253d63;
    --color-text:            #dce8f5;
    --color-text-muted:      #7e9ab8;
    --color-text-faint:      #4a6685;
    --color-text-inverse:    #0a1628;
    --color-primary:         #4d96e0;
    --color-primary-hover:   #71aee8;
    --color-primary-active:  #94c2ef;
    --color-primary-highlight: #1a3255;
    --color-navy:            #6aade6;
    --color-navy-hover:      #8bbfec;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.5);
  }
}

/* ============================================================
   GLOBAL
   ============================================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-4); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: oklch(from var(--color-bg) l c h / 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.07);
  transition: box-shadow var(--transition-interactive);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
[data-theme="dark"] .nav-logo-text { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--color-primary); }

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

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid oklch(from var(--color-text) l c h / 0.10);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* Mobile menu toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  z-index: 200;
  padding: var(--space-20) var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-5);
  border-top: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.nav-mobile a:hover { color: var(--color-primary); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.btn-navy:hover {
  background: var(--color-navy-hover);
  border-color: var(--color-navy-hover);
  box-shadow: var(--shadow-md);
}

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

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 50%, #e8f0fb 100%);
}
[data-theme="dark"] .hero-bg {
  background: linear-gradient(135deg, #08152a 0%, #0a1628 50%, #0d1f3a 100%);
}

/* Subtle geometric accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 40%, oklch(0.55 0.12 240 / 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
[data-theme="dark"] .hero h1 { color: var(--color-text); }

.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.hero-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  letter-spacing: 0.02em;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-main-card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-stat {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  font-weight: 500;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.service-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-3);
}
.service-chip svg { flex-shrink: 0; }

.hero-floating-badge {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: var(--space-16) var(--space-12);
    gap: var(--space-12);
  }
  .hero-visual { justify-content: center; }
  .hero-card-stack { max-width: 100%; }
  .hero-floating-badge { left: var(--space-4); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding-block: var(--space-8);
  border-block: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
}
.trust-item svg { color: var(--color-primary); flex-shrink: 0; }

@media (max-width: 768px) {
  .trust-bar-inner {
    justify-content: center;
    gap: var(--space-6);
  }
  .trust-item { font-size: var(--text-xs); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section-alt {
  background: var(--color-surface);
}
.section-dark {
  background: var(--color-navy);
  color: #fff;
}
[data-theme="dark"] .section-dark { background: var(--color-surface-2); }

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section-dark .section-label { color: #7eb8f5; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.section-dark .section-title { color: #fff; }
[data-theme="dark"] .section-title { color: var(--color-text); }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch;
  line-height: 1.65;
}
.section-dark .section-subtitle { color: oklch(1 0 0 / 0.7); }

.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-header--centered {
  text-align: center;
}
.section-header--centered .section-subtitle { margin-inline: auto; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive),
              border-color var(--transition-interactive);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-primary-highlight);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .service-card h3 { color: var(--color-text); }

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Featured service card */
.service-card--featured {
  background: var(--color-navy);
  border-color: transparent;
  color: #fff;
}
[data-theme="dark"] .service-card--featured { background: var(--color-primary); }
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: oklch(1 0 0 / 0.75); }
.service-card--featured .service-icon { color: #7eb8f5; }
[data-theme="dark"] .service-card--featured .service-icon { color: var(--color-navy); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + var(--space-6));
  right: calc(12.5% + var(--space-6));
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-divider) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-6);
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .process-step h3 { color: var(--color-text); }
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.coverage-markets {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.market-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.market-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.market-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .market-info h4 { color: var(--color-text); }
.market-info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.market-badge {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  background: oklch(from var(--color-success) l c h / 0.1);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
}
.market-badge--soon {
  color: var(--color-warning);
  background: oklch(from var(--color-warning) l c h / 0.1);
}

.coverage-visual {
  position: relative;
}
.coverage-map-placeholder {
  background: var(--color-surface-2);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-divider);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
  padding: var(--space-8);
  overflow: hidden;
  position: relative;
}
.coverage-map-placeholder svg { opacity: 0.4; }
.coverage-map-placeholder p {
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  color: var(--color-text-faint);
}

/* US outline SVG map */
.us-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.25;
}

@media (max-width: 900px) {
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-visual { order: -1; }
}

/* ============================================================
   CONTACT / LEAD FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
[data-theme="dark"] .contact-info h2 { color: var(--color-text); }
.contact-info .section-dark .contact-info h2 { color: #fff; }

.contact-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 100%;
}
.contact-bullets li svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Form */
.lead-form {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .form-title { color: var(--color-text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
  min-height: 44px;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }

.form-submit { width: 100%; margin-top: var(--space-2); }

.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-3);
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: var(--color-success);
}
.form-success svg { margin-inline: auto; margin-bottom: var(--space-3); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-2);
}
.form-success p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 100%; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAYMENT PORTAL SECTION
   ============================================================ */
.payment-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.payment-card {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.payment-card .section-title { text-align: center; }
.payment-card .section-subtitle { margin-inline: auto; text-align: center; }

.paypal-button-wrap {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.paypal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #0070ba;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  min-height: 52px;
  transition: background var(--transition-interactive), box-shadow var(--transition-interactive);
  border: none;
  cursor: pointer;
}
.paypal-cta-btn:hover {
  background: #005ea6;
  box-shadow: var(--shadow-md);
}
.payment-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.5;
}
.payment-note a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: oklch(1 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7eb8f5;
  margin-bottom: var(--space-1);
}
[data-theme="dark"] .section-dark .why-icon { background: oklch(1 0 0 / 0.05); }
.why-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .section-dark .why-item h3 { color: var(--color-text); }
.why-item p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.65);
  line-height: 1.65;
  max-width: 100%;
}
[data-theme="dark"] .section-dark .why-item p { color: var(--color-text-muted); }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, oklch(1 0 0 / 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  position: relative;
}
.cta-banner p {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.8);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: var(--space-8);
  position: relative;
}
.cta-banner .btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  position: relative;
}
.cta-banner .btn-white:hover {
  background: oklch(1 0 0 / 0.9);
  box-shadow: var(--shadow-lg);
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: oklch(1 0 0 / 0.7);
  padding-block: clamp(var(--space-16), 6vw, var(--space-24)) var(--space-8);
}
[data-theme="dark"] .site-footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
}
[data-theme="dark"] .footer-grid { border-color: var(--color-divider); }

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-top: var(--space-4);
  max-width: 38ch;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.45);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.65);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
}
.footer-legal {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.4);
}
.footer-legal a {
  color: oklch(1 0 0 / 0.5);
  text-decoration: none;
}
.footer-legal a:hover { color: #fff; }

.footer-attribution a {
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.35);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-attribution a:hover { color: oklch(1 0 0 / 0.65); }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.js-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.js-ready.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
