/* ================================================================
   AffordableAutoProtection.net — Shared Stylesheet v1
   ================================================================ */

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0A1628;
  --navy2:  #060F1C;
  --orange: #F4511E;
  --org2:   #D94319;
  --gray:   #64748B;
  --light:  #F8FAFC;
  --border: #E2E8F0;
  --white:  #FFFFFF;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--orange); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none; flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-size: 14px; font-weight: 500; color: #374151;
  padding: 8px 12px; border-radius: 6px;
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--light); }

/* Florida dropdown */
.nav-has-dropdown {
  position: relative; display: flex; align-items: center;
}
.nav-has-dropdown > a {
  font-size: 14px; font-weight: 500; color: #374151;
  padding: 8px 8px 8px 12px; border-radius: 6px 0 0 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-has-dropdown > a:hover { color: var(--navy); background: var(--light); }
.dropdown-toggle {
  background: none; border: none; cursor: pointer;
  padding: 8px 10px 8px 4px; color: var(--gray); display: flex; align-items: center;
  border-radius: 0 6px 6px 0; transition: background 0.15s;
}
.dropdown-toggle:hover { background: var(--light); }
.dropdown-toggle svg { transition: transform 0.2s; }
.nav-has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

/* ::after bridge prevents gap-close on hover */
.nav-has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px; list-style: none; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  transition-delay: 100ms; z-index: 300;
}
.nav-has-dropdown:hover > .nav-dropdown,
.nav-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition-delay: 0ms;
}

/* Region submenu */
.nav-has-submenu { position: relative; }
.nav-region-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 10px 16px; text-align: left;
  font-size: 13px; font-weight: 600; color: var(--navy);
  font-family: inherit; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  transition: background 0.15s;
}
.nav-region-btn:hover { background: var(--light); }
.nav-region-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-has-submenu.open > .nav-region-btn svg { transform: rotate(90deg); }

/* Right-opening flyout */
.nav-submenu {
  position: absolute; top: -8px; left: calc(100% + 4px);
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 180px; list-style: none; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  transition-delay: 100ms; z-index: 301;
}
/* ::after bridge for submenu */
.nav-has-submenu::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 100%; width: 12px;
}
.nav-has-submenu:hover > .nav-submenu,
.nav-has-submenu:focus-within > .nav-submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition-delay: 0ms;
}
.nav-submenu a {
  display: block; padding: 8px 16px;
  font-size: 13px; color: #374151;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:hover { background: var(--light); color: var(--navy); }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  transition: background 0.15s; flex-shrink: 0; white-space: nowrap;
}
.nav-cta:hover { background: var(--org2); }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--navy); border-radius: 6px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--light); }

/* Mobile nav */
@media (max-width: 880px) {
  .nav { padding: 0 16px; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0; z-index: 199;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 0 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow-y: auto; max-height: calc(100vh - 64px);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    display: block; padding: 12px 20px; border-radius: 0; font-size: 15px;
  }
  .nav-has-dropdown {
    flex-direction: column; align-items: stretch; position: static;
  }
  .nav-has-dropdown::after { display: none; }
  .nav-has-dropdown > a { padding: 12px 20px; border-radius: 0; flex: 1; }
  .dropdown-toggle {
    position: absolute; right: 8px; top: 6px; padding: 8px;
    border-radius: 6px;
  }
  /* Suppress desktop :hover on mobile */
  .nav-has-dropdown:hover > .nav-dropdown,
  .nav-has-dropdown:focus-within > .nav-dropdown,
  .nav-has-submenu:hover > .nav-submenu,
  .nav-has-submenu:focus-within > .nav-submenu {
    opacity: 0; visibility: hidden; pointer-events: none;
  }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    display: none; padding: 0; background: var(--light);
    margin: 0; min-width: 0;
  }
  .nav-has-dropdown.open > .nav-dropdown { display: block; }
  .nav-has-submenu::after { display: none; }
  .nav-region-btn { padding: 10px 20px 10px 32px; font-size: 14px; }
  .nav-submenu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    display: none; padding: 0; background: #fff; min-width: 0;
    border-left: 3px solid var(--orange); margin-left: 32px;
  }
  .nav-has-submenu.open > .nav-submenu { display: block; }
  .nav-submenu a { padding: 9px 16px; font-size: 13px; }
}

/* ─── Page Hero (supporting pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(120deg, #fff 55%, rgba(244,81,30,0.05) 100%);
  padding: 56px 32px 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF7ED; border: 1px solid #FED7AA; color: #C2410C;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  padding: 6px 14px; border-radius: 20px; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  line-height: 1.1; color: var(--navy); letter-spacing: -1px; margin-bottom: 16px;
}
.page-hero h1 .orange { color: var(--orange); }
.page-hero p {
  font-size: 17px; color: #4B5563; line-height: 1.65; max-width: 640px;
}
.page-hero .breadcrumb {
  font-size: 13px; color: var(--gray); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--gray); }
.page-hero .breadcrumb a:hover { color: var(--navy); }
.page-hero .breadcrumb span { margin: 0 6px; }

/* ─── Hero (home) ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(120deg, #fff 55%, rgba(244,81,30,0.05) 100%);
  padding: 64px 32px 72px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF7ED; border: 1px solid #FED7AA; color: #C2410C;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  padding: 6px 14px; border-radius: 20px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(34px, 4.5vw, 52px); font-weight: 900;
  line-height: 1.08; color: var(--navy); letter-spacing: -1.5px; margin-bottom: 8px;
}
.hero-h1 .orange-line { color: var(--orange); display: block; }
.hero-sub {
  font-size: 17px; color: #4B5563; line-height: 1.65;
  margin-top: 18px; max-width: 520px;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.stat-label {
  font-size: 10px; font-weight: 700; color: var(--orange);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 3px;
}

/* ─── Form Card ───────────────────────────────────────────────── */
.form-card {
  background: var(--navy); border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.25);
}
.form-card-header {
  padding: 24px 28px 18px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-card-header h2 { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.form-card-header p { color: #94A3B8; font-size: 13px; margin-top: 4px; }
.form-alert {
  margin: 16px 28px 0;
  background: rgba(244,81,30,0.12); border: 1px solid rgba(244,81,30,0.3);
  border-radius: 8px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #FDA57A; font-weight: 500;
}
.form-body { padding: 20px 28px 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: #CBD5E1; margin-bottom: 6px; letter-spacing: 0.2px;
}
.form-group input,
.form-group select {
  width: 100%; background: #fff; border: 1.5px solid #E2E8F0;
  border-radius: 8px; padding: 11px 14px; font-size: 14px;
  color: #111827; font-family: inherit; outline: none;
  transition: border-color 0.15s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--orange); }
.form-group input.error, .form-group select.error { border-color: #EF4444; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid #6B7280; pointer-events: none;
}
.form-group select { padding-right: 36px; }
.form-consent {
  font-size: 11px; color: #64748B; line-height: 1.55; margin-bottom: 16px;
}
.form-consent a { color: #94A3B8; text-decoration: underline; }
.form-consent label { display: flex; gap: 8px; cursor: pointer; align-items: flex-start; }
.form-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); }
.btn-submit {
  width: 100%; background: var(--orange); color: #fff; border: none;
  border-radius: 10px; padding: 15px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: background 0.15s, transform 0.1s; font-family: inherit;
}
.btn-submit:hover { background: var(--org2); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Page-level compact form (used on supporting pages) */
.page-form-section {
  background: var(--light); padding: 80px 32px;
}
.page-form-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.page-form-inner .section-label { margin-bottom: 12px; }
.page-form-inner .section-h2 { margin-bottom: 16px; }
.page-form-inner .section-sub { margin-bottom: 40px; }

/* ─── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}
.trust-bar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 32px; font-size: 14px; font-weight: 500; color: #374151;
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }

/* ─── Section Commons ─────────────────────────────────────────── */
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--orange); text-transform: uppercase; margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.8px; line-height: 1.15; max-width: 700px;
}
.section-sub {
  font-size: 17px; color: var(--gray); line-height: 1.7;
  margin-top: 16px; max-width: 620px;
}

/* ─── Cards Grid ──────────────────────────────────────────────── */
.why-section { background: var(--light); padding: 80px 32px; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--border);
}
.card-icon {
  width: 48px; height: 48px; background: #F1F5F9; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; color: #64748B; }
.card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* Steps (for How It Works) */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ─── Stats Banner ────────────────────────────────────────────── */
.stats-banner { background: linear-gradient(120deg, var(--navy) 0%, #122040 100%); padding: 64px 32px; }
.stats-banner-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.stats-banner h2 {
  font-size: clamp(24px,3vw,36px); font-weight: 800; color: #fff;
  letter-spacing: -0.5px; line-height: 1.2; max-width: 520px;
}
.stats-banner h2 .orange { color: var(--orange); }
.stats-banner p { font-size: 15px; color: #94A3B8; margin-top: 12px; max-width: 480px; }
.stats-banner-cta {
  flex-shrink: 0; background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 700; padding: 16px 28px;
  border-radius: 10px; white-space: nowrap; transition: background 0.15s;
  display: inline-block;
}
.stats-banner-cta:hover { background: var(--org2); }

/* ─── Testimonials ────────────────────────────────────────────── */
.testimonials { padding: 80px 32px; background: #fff; }
.testimonials .section-inner { text-align: center; }
.testimonials .section-h2 { margin: 0 auto; }
.testimonials .section-sub { margin: 16px auto 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; text-align: left; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card blockquote { font-size: 15px; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.reviewer-location { font-size: 12px; color: var(--gray); }
.savings-badge {
  display: inline-block; background: #DCFCE7; color: #15803D;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 4px;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 80px 32px; background: var(--light); }
.faq-section .section-inner { max-width: 760px; }
.faq-section .section-h2 { text-align: center; margin-bottom: 40px; max-width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit; transition: background 0.15s;
}
.faq-question:hover { background: #F8FAFC; }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px; border: 2px solid #CBD5E1;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, border-color 0.15s;
}
.faq-chevron svg { width: 10px; height: 10px; color: var(--gray); }
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--orange); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ─── Final CTA ───────────────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, #0F2040 100%); padding: 80px 32px; text-align: center; }
.final-cta h2 {
  font-size: clamp(26px,4vw,44px); font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.15; max-width: 700px; margin: 0 auto;
}
.final-cta h2 .orange { color: var(--orange); }
.final-cta p { font-size: 17px; color: #94A3B8; margin: 16px auto 0; max-width: 520px; line-height: 1.6; }
.btn-final {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; font-size: 16px; font-weight: 700;
  padding: 18px 36px; border-radius: 12px; margin-top: 36px;
  transition: background 0.15s, transform 0.1s;
}
.btn-final:hover { background: var(--org2); transform: translateY(-1px); }

/* ─── Content Pages ───────────────────────────────────────────── */
.content-section { padding: 72px 32px; }
.content-inner { max-width: 760px; margin: 0 auto; }
.content-inner h2 {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.4px; margin: 40px 0 14px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.content-inner h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-inner h3 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin: 24px 0 10px;
}
.content-inner p {
  font-size: 16px; color: #374151; line-height: 1.75; margin-bottom: 16px;
}
.content-inner ul, .content-inner ol {
  margin: 12px 0 20px 24px; color: #374151; font-size: 16px; line-height: 1.75;
}
.content-inner li { margin-bottom: 6px; }
.content-inner a { color: var(--orange); text-decoration: underline; }
.content-inner strong { font-weight: 700; color: var(--navy); }
.content-box {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 28px; margin: 24px 0;
}
.content-box p { margin-bottom: 0; }

/* City page stats box */
.city-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin: 40px 0;
}
.city-stat {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; text-align: center;
}
.city-stat-num { font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.city-stat-label { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

/* City grid (on florida.html) */
.cities-section { background: var(--light); padding: 80px 32px; }
.cities-section .section-h2 { max-width: 100%; }
.region-group { margin-top: 48px; }
.region-label {
  font-size: 13px; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.city-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px;
}
.city-link-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.city-link-card:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(244,81,30,0.12);
}
.city-link-card svg { flex-shrink: 0; color: var(--orange); }

/* ─── Thank You Page ──────────────────────────────────────────── */
.ty-section {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, #fff 0%, rgba(244,81,30,0.03) 100%);
}
.ty-card {
  max-width: 560px; text-align: center;
}
.ty-icon {
  width: 72px; height: 72px; background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.ty-card h1 {
  font-size: clamp(26px,4vw,38px); font-weight: 900; color: var(--navy);
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
}
.ty-card .orange { color: var(--orange); }
.ty-card p { font-size: 17px; color: #4B5563; line-height: 1.65; margin-bottom: 20px; }
.ty-steps { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; text-align: left; }
.ty-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
}
.ty-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ty-step p { font-size: 14px; color: #374151; margin-bottom: 0; }
.ty-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff;
  font-size: 18px; font-weight: 700;
  padding: 18px 32px; border-radius: 12px; margin-top: 8px;
  transition: background 0.15s;
}
.ty-call:hover { background: #122040; }

/* ─── Footer ──────────────────────────────────────────────────── */
footer { background: var(--navy2); padding: 48px 32px 32px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px 60px;
  align-items: start;
}
.footer-brand { font-size: 16px; font-weight: 700; color: #fff; }
.footer-brand .accent { color: var(--orange); }
.footer-tagline { font-size: 13px; color: #64748B; margin-top: 8px; max-width: 340px; line-height: 1.6; }
.footer-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: #94A3B8; text-transform: uppercase; margin-bottom: 12px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { font-size: 13px; color: #64748B; transition: color 0.15s; }
.footer-col-links a:hover { color: #94A3B8; }
.footer-bottom {
  max-width: 1160px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: #475569; line-height: 1.6; }
.footer-bottom a { color: #64748B; text-decoration: underline; }

/* ─── Mobile Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { max-width: 520px; }
  .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-banner-inner { flex-direction: column; text-align: center; }
  .stats-banner h2, .stats-banner p { max-width: 100%; }
  .city-stats { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 16px 48px; }
  .page-hero { padding: 40px 16px 48px; }
  .why-section, .testimonials, .faq-section, .stats-banner, .final-cta,
  .content-section, .cities-section, .page-form-section { padding-left: 16px; padding-right: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-body { padding: 16px 20px 20px; }
  .form-alert { margin: 0 20px; margin-top: 12px; }
  .form-card-header { padding: 20px 20px 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-item + .trust-item { border-left: none; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .city-stats { grid-template-columns: 1fr; }
  .footer-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Sticky Mobile CTA ───────────────────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--orange); color: #fff; text-align: center;
  font-size: 15px; font-weight: 700; padding: 16px; z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (max-width: 640px) { .sticky-cta { display: block; } }

/* ─── Legal Pages ─────────────────────────────────────────────── */
.legal-content { padding: 64px 32px 80px; }
.legal-content .content-inner { max-width: 820px; }
.legal-toc {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin-bottom: 40px;
}
.legal-toc p { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.legal-toc ol { margin-left: 20px; font-size: 13px; color: var(--gray); }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { color: var(--orange); }
.legal-content .content-inner h2 { font-size: 19px; }
