/* ==============================================
   FIRST COAST BREEZE — Main Stylesheet
   Brand: Deep sky blue + warm amber accent
   Tone: Trustworthy, local, urgent, clean
   ============================================== */

/* ---- TOKENS ---- */
:root,
[data-theme='light'] {
  --color-bg: #f8f9fb;
  --color-surface: #ffffff;
  --color-surface-2: #f2f5f8;
  --color-surface-offset: #e8edf2;
  --color-border: #d1dbe5;
  --color-divider: #dce4ec;

  --color-text: #0f1f2e;
  --color-text-muted: #4a6278;
  --color-text-faint: #8fa5b8;
  --color-text-inverse: #ffffff;

  /* Sky blue — primary brand */
  --color-primary: #0a6ebd;
  --color-primary-hover: #085fa3;
  --color-primary-active: #064d86;
  --color-primary-highlight: #cce0f5;

  /* Warm amber — accent/urgency */
  --color-accent-warm: #f59e0b;
  --color-accent-warm-hover: #d97706;

  /* Success */
  --color-success: #16a34a;
  --color-success-highlight: #d1fae5;

  /* Status */
  --color-full: #dc2626;
  --color-full-bg: #fee2e2;
  --color-open: #16a34a;
  --color-open-bg: #dcfce7;
  --color-urgent: #d97706;
  --color-urgent-bg: #fef3c7;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10,40,70,0.07);
  --shadow-md: 0 4px 16px rgba(10,40,70,0.10);
  --shadow-lg: 0 12px 40px rgba(10,40,70,0.14);

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

  /* Type */
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --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-hero: clamp(3rem,     1.5rem  + 5vw,    5.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;

  --content-default: 1100px;
  --content-wide: 1300px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg: #0a1520;
  --color-surface: #0f1e2d;
  --color-surface-2: #142030;
  --color-surface-offset: #172336;
  --color-border: #1e3448;
  --color-divider: #192d40;
  --color-text: #d6e8f5;
  --color-text-muted: #7a9ab5;
  --color-text-faint: #3d5c73;
  --color-text-inverse: #0a1520;
  --color-primary: #4aa3e8;
  --color-primary-hover: #2d8fd6;
  --color-primary-active: #1a78c0;
  --color-primary-highlight: #0e2c45;
  --color-accent-warm: #fbbf24;
  --color-accent-warm-hover: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --color-full: #f87171;
  --color-full-bg: #3b1515;
  --color-open: #4ade80;
  --color-open-bg: #14321f;
  --color-urgent: #fbbf24;
  --color-urgent-bg: #342608;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  min-height: 100dvh;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section-alt { background: var(--color-surface); }
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section-label.light { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-10);
  line-height: 1.1;
}
.section-title-sm {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.65em 1.4em;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(10,110,189,0.25);
}
.btn-primary:hover { background: var(--color-primary-hover); box-shadow: 0 4px 16px rgba(10,110,189,0.35); }
.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f0f8ff; }
.btn-nav {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.5em 1.2em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
.btn-nav:hover { background: var(--color-primary-hover); }
.btn-ghost-sm {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 0.4em 0.9em;
  font-size: var(--text-xs);
}
.btn-ghost-sm:hover { background: var(--color-primary); color: #fff; }
.btn-lg { padding: 0.8em 1.8em; font-size: var(--text-base); }

/* ---- HEADER / NAV ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.logo-text {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.logo-text strong { font-weight: 800; color: var(--color-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}
.theme-toggle:hover { background: var(--color-surface-offset); color: var(--color-text); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  width: 36px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.mobile-nav.open { transform: translateY(0); display: flex; }
.mobile-nav a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 30, 0.82) 0%,
    rgba(5, 20, 40, 0.65) 50%,
    rgba(5, 20, 50, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: var(--space-20);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4em 1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--color-accent-warm);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: var(--space-8);
  line-height: 1.5;
}
.hero-form {
  margin-bottom: var(--space-8);
}
.form-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: stretch;
}
.form-row input,
.form-row select {
  flex: 1;
  min-width: 150px;
  padding: 0.75em 1em;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  color: #fff;
  font-size: var(--text-sm);
  transition: border-color var(--transition), background var(--transition);
}
.form-row input::placeholder { color: rgba(255,255,255,0.55); }
.form-row input:focus,
.form-row select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
  outline: none;
}
.form-row select option { background: #0f1e2d; color: #fff; }
.form-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-3);
}
.form-note.light { color: rgba(255,255,255,0.6); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-accent-warm);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
  background: var(--color-accent-warm);
  color: #fff;
  padding-block: var(--space-3);
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.urgency-link {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
  white-space: nowrap;
}
.urgency-link:hover { opacity: 0.85; }

/* ---- STEPS ---- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-connector {
  width: 48px;
  height: 2px;
  background: var(--color-primary-highlight);
  flex-shrink: 0;
  margin-top: 3rem;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  width: 10px; height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-primary-highlight);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.step-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.step-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- TRUST SPLIT ---- */
.section-split { background: var(--color-surface-2); }
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.split-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }
.feature-list li strong { color: var(--color-text); }

/* ---- ZIP GRID ---- */
.zip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}
.zip-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.zip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.zip-code {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.zip-name {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.zip-status {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full);
}
.zip-status.full { background: var(--color-full-bg); color: var(--color-full); }
.zip-status.open { background: var(--color-open-bg); color: var(--color-open); }
.zip-status.urgent { background: var(--color-urgent-bg); color: var(--color-urgent); }
.zip-card.more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
  background: var(--color-surface-offset);
  border-style: dashed;
}
.zip-more-text {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--color-accent-warm); font-size: var(--text-base); letter-spacing: 2px; }
.testimonial-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---- CTA SECTION ---- */
.section-cta {
  background: linear-gradient(135deg, #0a3d6b 0%, #0a6ebd 50%, #0e85d9 100%);
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
}
.cta-container { max-width: 580px; }
.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cta-form input,
.cta-form select {
  padding: 0.85em 1.1em;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  color: #fff;
  font-size: var(--text-sm);
  transition: border-color var(--transition), background var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus,
.cta-form select:focus { border-color: rgba(255,255,255,0.6); outline: none; background: rgba(255,255,255,0.18); }
.cta-form select option { background: #0a3d6b; color: #fff; }

/* ---- FOR PROS ---- */
.section-pros { background: var(--color-surface-2); }
.pros-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: start;
}
.pros-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.pros-content strong { color: var(--color-text); }
.pros-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.pros-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.6;
}
.pros-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.pros-list li strong { color: var(--color-text); }
.pros-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.pros-scarcity {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pros-scarcity strong { color: var(--color-full); }
.pros-math {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: stretch;
}
.math-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.math-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-2);
}
.math-val {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.math-val.bad { color: var(--color-full); }
.math-val.good { color: var(--color-success); }
.math-sub { font-size: var(--text-xs); color: var(--color-text-muted); }
.math-vs {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text-faint);
}
.good-card {
  border-color: var(--color-success);
  background: var(--color-success-highlight);
}
.math-savings {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-success);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding-top: var(--space-16);
}
[data-theme='dark'] .footer { background: #060e18; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: rgba(255,255,255,0.9); }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-4);
  max-width: 30ch;
  line-height: 1.6;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col-title {
  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-1);
}
.footer-col a, .footer-col span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-block: var(--space-5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }
.footer-links {
  display: contents;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 32px; margin-top: 0; margin-inline: auto; }
  .step-connector::after { right: -4px; top: auto; bottom: -6px; }
  .split-container { grid-template-columns: 1fr; }
  .split-image { max-height: 320px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pros-container { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-6); grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero-content { padding-block: var(--space-16); }
  .form-row { flex-direction: column; }
  .form-row input, .form-row select, .form-row .btn { width: 100%; }
  .hero-stats { gap: var(--space-4); }
  .zip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
