/* ═══════════════════════════════════════════
   PROPTAX CA — V2 EDITORIAL REDESIGN
   Inspired by TrumpRx.gov aesthetic
   ═══════════════════════════════════════════ */

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

:root {
  --navy: #0A2540;
  --navy-deep: #061b30;
  --navy-light: #0f3460;
  --gold: #C8963E;
  --gold-light: #E2B868;
  --gold-bright: #F59E0B;
  --gold-dark: #A67A2E;
  --teal: #06B6D4;
  --teal-light: #22D3EE;
  --green: #2b5e49;
  --green-light: #d4edda;
  --cream: #FAFAF5;
  --cream-dark: #F2F1EB;
  --white: #FFFFFF;
  --border: rgba(10, 37, 64, 0.1);
  --border-strong: rgba(10, 37, 64, 0.18);
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #888;
  --font-serif: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Menlo', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 17px;
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ═══════════════════════════════════════════
   STICKY ALERT BAR
   ═══════════════════════════════════════════ */
/* Sticky header wrapper — keeps alert + nav together */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
}

.top-alert {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.88rem;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo), opacity 0.3s;
}
.top-alert.dismissed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.top-alert .pulse-dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.top-alert a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-alert-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 8px;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.3s;
}
.top-alert-close:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: relative;
  z-index: 999;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled .nav {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; color: var(--gold); }
.nav-logo em { font-style: italic; color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta-link {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: none;
  border: 1.5px solid var(--border-strong);
  padding: 9px 22px;
  border-radius: 50px;
  transition: all 0.3s;
}
.nav-cta-link:hover {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════ */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 48px 24px 64px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  color: var(--navy);
}
.hero-float-1 { top: 8%; right: 8%; font-size: 180px; font-family: var(--font-serif); animation: floatSlow 12s ease-in-out infinite; }
.hero-float-2 { bottom: 12%; left: 5%; font-size: 120px; font-family: var(--font-serif); animation: floatSlow 10s ease-in-out infinite reverse; }
.hero-float-3 { top: 35%; right: 25%; width: 80px; height: 80px; border: 2px solid var(--navy); border-radius: 50%; animation: floatSlow 14s ease-in-out infinite; }
.hero-float-4 { bottom: 25%; right: 12%; width: 40px; height: 40px; background: var(--gold); opacity: 0.06; border-radius: 6px; transform: rotate(45deg); animation: floatSlow 9s ease-in-out infinite reverse; }

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(2deg); }
  66% { transform: translate(-8px, 8px) rotate(-1deg); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.8s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--gold-dark);
}

.hero h1 {
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.9s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 1.1s forwards;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
}
.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(0,0,0,0.02);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out-expo) 1.2s forwards;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.hero-proof-text strong { color: var(--text-primary); }

/* Hero stats card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-card-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero-card-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.hero-card-amount small {
  font-size: 0.4em;
  color: var(--text-muted);
  letter-spacing: 0;
}
.hero-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-card-stat { }
.hero-card-stat-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-primary);
}
.hero-card-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Notification toasts on hero card */
.hero-toast {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  animation: floatSlow 7s ease-in-out infinite;
  z-index: 2;
}
.hero-toast-1 { top: -18px; right: -24px; }
.hero-toast-2 { bottom: -14px; left: -20px; animation-delay: -3.5s; }
.toast-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-icon svg { width: 16px; height: 16px; }
.toast-icon.green { background: rgba(43,94,73,0.1); color: var(--green); }
.toast-icon.gold { background: rgba(200,150,62,0.12); color: var(--gold-dark); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; }
.trust-item .stars { color: var(--gold-bright); font-size: 0.85rem; }
.trust-sep { width: 1px; height: 24px; background: var(--border-strong); }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services { padding: 120px 24px; }
.services-header { max-width: 500px; margin-bottom: 60px; }
.services-header h2 { margin-bottom: 16px; }
.services-header p { color: var(--text-secondary); font-size: 1.05rem; }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
}
.service-card:hover { background: var(--cream); }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-icon.amber { background: rgba(200,150,62,0.1); color: var(--gold-dark); }
.service-icon.teal { background: rgba(6,182,212,0.1); color: var(--teal); }
.service-icon.red { background: rgba(239,68,68,0.08); color: #dc3545; }

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
}
.service-stat-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════ */
.calculator {
  padding: 120px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.calc-info .section-label { margin-bottom: 14px; }
.calc-info h2 { margin-bottom: 16px; }
.calc-info > p { color: var(--text-secondary); margin-bottom: 36px; line-height: 1.8; }

.calc-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.calc-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.calc-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.calc-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.calc-form-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.06);
}
.form-group input::placeholder { color: #bbb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.calc-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.calc-btn:hover { background: var(--navy-light); }

/* Calculator result with visual bar */
.calc-result {
  margin-top: 24px;
  display: none;
  animation: fadeUp 0.5s var(--ease-out-expo);
}
.calc-result.show { display: block; }

.calc-result-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
  margin-bottom: 16px;
}
.calc-result-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.calc-result-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.calc-result-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Visual comparison bars */
.calc-bars { display: flex; flex-direction: column; gap: 12px; }
.calc-bar-item label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.calc-bar-track {
  height: 28px;
  background: var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.calc-bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  transition: width 1s var(--ease-out-expo);
  width: 0;
}
.calc-bar-fill.current { background: var(--text-muted); }
.calc-bar-fill.reduced { background: var(--green); }
.calc-bar-fill.animated { width: var(--bar-width); }

/* ═══════════════════════════════════════════
   HOW IT WORKS / TIMELINE
   ═══════════════════════════════════════════ */
.process {
  padding: 120px 24px;
}
.process-header {
  max-width: 500px;
  margin: 0 auto 72px;
  text-align: center;
}
.process-header h2 { margin-bottom: 16px; }
.process-header p { color: var(--text-secondary); }

/* Desktop horizontal timeline */
.timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  height: 1px;
  background: var(--border-strong);
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s var(--ease-out-expo);
}
.step-circle svg { width: 24px; height: 24px; color: var(--text-muted); transition: color 0.3s; }

.timeline-step:hover .step-circle {
  border-color: var(--gold-dark);
  background: rgba(200,150,62,0.04);
}
.timeline-step:hover .step-circle svg { color: var(--gold-dark); }

.step-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.step-who {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 8px;
}
.step-who.you { background: rgba(6,182,212,0.08); color: var(--teal); }
.step-who.us { background: rgba(200,150,62,0.1); color: var(--gold-dark); }

/* Vertical timeline for mobile */
.timeline-vertical { display: none; }

/* ═══════════════════════════════════════════
   PROOF / STATS
   ═══════════════════════════════════════════ */
.proof {
  padding: 120px 24px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,62,0.06), transparent 70%);
  pointer-events: none;
}

.proof-header {
  max-width: 500px;
  margin: 0 auto 64px;
  text-align: center;
}
.proof-header .section-label { color: var(--gold-light); }
.proof-header h2 { color: var(--white); margin-bottom: 16px; }
.proof-header p { color: rgba(255,255,255,0.45); }

.stats-grid {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--navy);
}
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Testimonial Carousel */
.testimonials-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out-expo);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.05); }

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.comparison {
  padding: 120px 24px;
}
.comparison-header {
  max-width: 500px;
  margin: 0 auto 60px;
  text-align: center;
}
.comparison-header h2 { margin-bottom: 16px; }
.comparison-header p { color: var(--text-secondary); }

.comparison-table-wrap {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 18px 28px;
  text-align: center;
  font-size: 0.92rem;
}
.comparison-table thead th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.hl {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.comparison-table thead th.hl::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px 6px 0 0;
  letter-spacing: 0.08em;
}

.comparison-table tbody tr {
  transition: background 0.2s;
}
.comparison-table tbody tr:hover {
  background: rgba(10,37,64,0.015);
}
.comparison-table tbody td {
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}
.comparison-table tbody td.hl {
  background: rgba(10,37,64,0.02);
  font-weight: 600;
  color: var(--navy);
}
.check { color: var(--green); }
.xmark { color: #ccc; }

/* ═══════════════════════════════════════════
   ALERT BANNER (FIRE/DEADLINE)
   ═══════════════════════════════════════════ */
.alert-section {
  padding: 0 24px;
}
.alert-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(200,150,62,0.06), rgba(200,150,62,0.02));
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.alert-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(200,150,62,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alert-icon-wrap svg { width: 28px; height: 28px; color: var(--gold-dark); }
.alert-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.alert-card p { color: var(--text-secondary); font-size: 0.95rem; }
.alert-card .btn-primary { margin-left: auto; white-space: nowrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 120px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.faq-header {
  max-width: 500px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq-header h2 { margin-bottom: 16px; }
.faq-header p { color: var(--text-secondary); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
  min-height: 48px;
}
.faq-question:hover { color: var(--gold-dark); }

.faq-chevron {
  width: 18px; height: 18px;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out-expo), color 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold-dark); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   FINAL CTA + MULTI-STEP FORM
   ═══════════════════════════════════════════ */
.final-cta {
  padding: 120px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,150,62,0.06), transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.final-cta-text h2 { color: var(--white); margin-bottom: 16px; }
.final-cta-text > p { color: rgba(255,255,255,0.45); font-size: 1.05rem; margin-bottom: 32px; }

.final-cta-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.final-cta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.final-cta-badge svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

.final-cta-phone {
  margin-top: 28px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
}
.final-cta-phone a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
}

/* Social proof near CTA */
.cta-proof {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-proof-imgs {
  display: flex;
}
.cta-proof-imgs span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -6px;
}
.cta-proof-imgs span:first-child { margin-left: 0; }
.cta-proof-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* Multi-step form */
.msf {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.msf-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.msf-bar {
  flex: 1;
  height: 3px;
  background: var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}
.msf-bar-fill {
  width: 0;
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: width 0.4s var(--ease-out-expo);
}
.msf-bar.active .msf-bar-fill,
.msf-bar.done .msf-bar-fill { width: 100%; }

.msf-step-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.msf-step-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.msf-page { display: none; }
.msf-page.active { display: block; }

.msf-page .form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}
.msf-page .form-group input,
.msf-page .form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  min-height: 46px;
  -webkit-appearance: none;
}
.msf-page .form-group input:focus,
.msf-page .form-group select:focus {
  border-color: var(--navy);
}

/* Property type radio cards */
.prop-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.prop-type-card {
  padding: 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  background: var(--cream);
}
.prop-type-card:hover { border-color: var(--text-muted); }
.prop-type-card.selected {
  border-color: var(--navy);
  background: rgba(10,37,64,0.04);
  color: var(--navy);
  font-weight: 600;
}
.prop-type-card svg { display: block; margin: 0 auto 6px; width: 22px; height: 22px; color: var(--text-muted); }
.prop-type-card.selected svg { color: var(--navy); }

.msf-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.msf-next, .msf-back, .msf-submit {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  min-height: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.msf-next, .msf-submit {
  background: var(--navy);
  color: var(--white);
}
.msf-next:hover, .msf-submit:hover { background: var(--navy-light); }
.msf-back {
  background: var(--cream);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  flex: 0.5;
}
.msf-back:hover { background: var(--cream-dark); }

.msf-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.msf-privacy svg { width: 14px; height: 14px; }

/* Form success state */
.msf-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.msf-success.show { display: block; }
.msf-success-icon {
  width: 56px; height: 56px;
  background: rgba(43,94,73,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.msf-success-icon svg { width: 28px; height: 28px; color: var(--green); }
.msf-success h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.msf-success p { color: var(--text-secondary); font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--text-primary);
  padding: 80px 24px 40px;
  color: rgba(255,255,255,0.4);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.footer-social a svg { width: 16px; height: 16px; color: rgba(255,255,255,0.4); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }

/* Footer email capture */
.footer-capture {
  margin-top: 4px;
}
.footer-capture p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-capture-form {
  display: flex;
  gap: 8px;
}
.footer-capture-form input {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
  min-height: 42px;
}
.footer-capture-form input::placeholder { color: rgba(255,255,255,0.2); }
.footer-capture-form input:focus { border-color: rgba(255,255,255,0.25); }
.footer-capture-form button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--gold-dark);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  min-height: 42px;
}
.footer-capture-form button:hover { background: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out-expo);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.back-to-top:hover svg { color: var(--white); }
.back-to-top svg { width: 18px; height: 18px; color: var(--text-primary); transition: color 0.3s; }

/* ═══════════════════════════════════════════
   CCPA / COOKIE BANNER
   ═══════════════════════════════════════════ */
.ccpa-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  z-index: 998;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: transform 0.4s var(--ease-out-expo);
}
.ccpa-banner.hidden {
  transform: translateY(100%);
}
.ccpa-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 600px;
}
.ccpa-banner a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.ccpa-banner button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 40px;
}
.ccpa-banner button:hover { background: var(--cream); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  /* Show card on tablet, stacked */
  .hero-card { max-width: 500px; }
  .hero-toast-1 { right: 0; }
  .hero-toast-2 { left: 0; }

  .calc-inner { grid-template-columns: 1fr; gap: 48px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .final-cta-badges { align-items: center; }
  .cta-proof { justify-content: center; }
  .msf { max-width: 500px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    animation: fadeUp 0.3s var(--ease-out-expo);
  }
  .nav-links.mobile-open a { font-size: 1rem; color: var(--text-primary); }

  .hero { padding: 36px 24px 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .hero-toast { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  /* Switch to vertical timeline */
  .timeline { display: none; }
  .timeline-vertical { display: block; }
  .timeline-v {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
  }
  .timeline-v::before {
    content: '';
    position: absolute;
    left: 17px; top: 0; bottom: 0;
    width: 1px;
    background: var(--border-strong);
  }
  .tv-step {
    position: relative;
    padding-bottom: 36px;
  }
  .tv-step:last-child { padding-bottom: 0; }
  .tv-dot {
    position: absolute;
    left: -48px; top: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .tv-dot svg { width: 16px; height: 16px; color: var(--text-muted); }
  .tv-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
  .tv-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
  }
  .tv-who {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 20px;
    margin-left: 8px;
  }
  .tv-who.you { background: rgba(6,182,212,0.08); color: var(--teal); }
  .tv-who.us { background: rgba(200,150,62,0.1); color: var(--gold-dark); }

  .testimonial-card { min-width: calc(100% - 0px); }

  .comparison-table-wrap { overflow-x: auto; }
  .comparison-table { min-width: 580px; }

  .alert-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  .alert-card .btn-primary { margin-left: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .ccpa-banner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero { padding: 28px 16px 40px; }
  .hero h1 { font-size: 2rem; }
  .calc-form, .msf { padding: 28px 20px; }
  .stat-card { padding: 28px 12px; }
  .prop-type-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .top-alert { font-size: 0.8rem; padding: 10px 40px 10px 16px; text-align: left; justify-content: flex-start; }
}
