:root {
  --primary: #1565c0;
  --primary-light: #1976d2;
  --primary-dark: #0d47a1;
  --accent: #2196f3;
  --accent-hover: #1976d2;
  --accent-light: #e3f2fd;
  --text: #263238;
  --text-light: #546e7a;
  --text-muted: #90a4ae;
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --bg-warm: #fff3e0;
  --border: #e3f2fd;
  --border-light: #f5f9ff;
  --shadow-sm: 0 1px 2px 0 rgb(33 150 243 / 0.05);
  --shadow: 0 4px 6px -1px rgb(33 150 243 / 0.1), 0 2px 4px -2px rgb(33 150 243 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(33 150 243 / 0.1), 0 8px 10px -6px rgb(33 150 243 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(13 71 161 / 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--accent-hover); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  padding: 0.625rem 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.top-bar strong { font-weight: 700; color: #fff; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; color: var(--primary); }
.logo-icon { font-size: 1.75rem; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--accent); text-decoration: none; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(33,150,243,0.3);
}
.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(33,150,243,0.4);
}

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--text); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 40%, #1976d2 100%);
  color: #fff;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(33,150,243,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(33,150,243,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero h1 span { color: #64b5f6; }

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-trust svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  flex-shrink: 0;
}

/* ===== LEAD FORM ===== */
.lead-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(0);
  transition: transform 0.3s;
}
.lead-card:hover { transform: translateY(-4px); }

.lead-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.lead-form-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.lead-form-header h3 {
  margin: 0 0 0.375rem 0;
  font-size: 1.375rem;
  font-weight: 700;
  position: relative;
}
.lead-form-header p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  position: relative;
}

.lead-form-body { padding: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.875rem;
}
.form-group input {
  width: 100%;
  padding: 1rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s;
  color: var(--text);
  font-weight: 500;
}
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}
.form-group input::placeholder { color: var(--text-muted); }

.zip-input-wrapper { position: relative; }
.zip-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  pointer-events: none;
}
.zip-input-wrapper input { padding-left: 3rem; }

.submit-btn {
  width: 100%;
  padding: 1.125rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(33,150,243,0.35);
  letter-spacing: 0.01em;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,0.45);
}
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== RESULT MESSAGES ===== */
.result-message { text-align: center; padding: 1rem; }
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.no-coverage-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}
.result-message h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.375rem;
  font-weight: 700;
}
.result-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0 0 1.25rem 0;
}

.phone-link {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  padding: 1rem 2rem;
  background: var(--accent-light);
  border-radius: var(--radius);
  margin: 0.5rem 0;
  transition: all 0.2s;
  border: 2px solid var(--accent);
  letter-spacing: -0.02em;
}
.phone-link:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.03);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(33,150,243,0.3);
}

.phone-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 1rem 0;
  font-weight: 500;
}

.back-btn {
  margin-top: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 0.9375rem;
}
.back-btn:hover { background: var(--border); transform: translateY(-1px); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #64b5f6);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
  color: var(--text);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.service-meta span {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(33,150,243,0.3);
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.step-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== CITIES & STATES ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.city-link, .state-link {
  display: block;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  font-size: 0.9375rem;
}
.city-link:hover, .state-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--accent);
  transform: translateY(-2px);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}
.state-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--accent);
  transform: translateY(-2px);
}
.state-card h3 { font-size: 1.0625rem; font-weight: 700; }
.state-card .abbr {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(33,150,243,0.2) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-box h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  position: relative;
}
.btn-white:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 1.25rem 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.breadcrumbs a { color: var(--text-light); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-muted); margin: 0 0.5rem; }
.breadcrumbs .current { color: var(--text); font-weight: 600; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(33,150,243,0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.page-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 600px;
  position: relative;
}

/* ===== CONTENT AREA ===== */
.content-area {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.content-area h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}
.content-area h2:first-child { margin-top: 0; }
.content-area h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 1rem;
}
.content-area p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.content-area ul, .content-area ol {
  margin: 1.25rem 0 1.25rem 1.5rem;
  color: var(--text);
  line-height: 1.7;
}
.content-area li { margin-bottom: 0.75rem; }
.content-area strong { color: var(--primary); }

/* ===== LEAD FORM INLINE ===== */
.lead-form-inline {
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  border: 2px solid #bbdefb;
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.lead-form-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}
.lead-form-inline h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.lead-form-inline p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ===== NEARBY SECTION ===== */
.nearby-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border-light);
}
.nearby-section h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.875rem;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: all 0.2s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .lead-card { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 3rem 0 4rem; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .section { padding: 3.5rem 0; }
  .section-header h2 { font-size: 1.75rem; }
  .page-header h1 { font-size: 2rem; }
  .content-area { padding: 1.75rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box h3 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .state-grid, .cities-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .lead-form-inline { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-badge { font-size: 0.8125rem; }
  .lead-form-header { padding: 1.5rem; }
  .lead-form-header h3 { font-size: 1.125rem; }
  .lead-form-body { padding: 1.5rem; }
  .phone-link { font-size: 1.5rem; padding: 0.875rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
