/* AM Services America — Main Stylesheet */
/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #1e3a8a;
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --sky:         #0ea5e9;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --green:       #16a34a;
  --red:         #dc2626;
  --dark:        #0f172a;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --surface:     #f8fafc;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .2s ease;
  --max-w:       1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { color: var(--text); line-height: 1.7; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-amber { color: var(--amber); }
.text-green { color: var(--green); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.8); }
.section--navy { background: var(--navy); }
.section--surface { background: var(--surface); }
.section--blue-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section--dark .section-header .badge { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section-header p { font-size: 1.125rem; color: var(--muted); max-width: 600px; margin: 1rem auto 0; }
.section--dark .section-header p { color: rgba(255,255,255,.7); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
}
.btn-amber {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn--sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn--full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none !important;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none !important;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: #eff6ff;
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .btn { padding: .55rem 1.25rem; font-size: .875rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
  color: var(--text);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); background: #eff6ff; }
.mobile-menu .mobile-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
body.nav-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7.5rem 0 5rem;
  background: linear-gradient(150deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(59,130,246,.2) 0%, transparent 70%),
    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.03'%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");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.95);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}
.hero h1 .highlight {
  position: relative;
  color: var(--amber);
}
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-search {
  background: var(--white);
  border-radius: var(--radius);
  padding: .5rem;
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
  border-radius: var(--radius-sm);
}
.hero-search-input::placeholder { color: var(--muted); }
.hero-search-zip {
  width: 140px;
  border: none;
  border-left: 1px solid var(--border);
  outline: none;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
}
.hero-search-zip::placeholder { color: var(--muted); }
.hero-search .btn { flex-shrink: 0; }
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--amber); flex-shrink: 0; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 340px;
}
.hero-card h4 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.hero-card p { color: rgba(255,255,255,.75); font-size: .85rem; }
.hero-card .stat-row {
  display: flex;
  gap: 1.5rem;
  margin-top: .75rem;
}
.hero-card .stat { text-align: center; }
.hero-card .stat-num { font-size: 1.5rem; font-weight: 800; color: var(--amber); display: block; }
.hero-card .stat-label { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--blue);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37,99,235,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { color: var(--sky); }
.trust-item-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); }
.trust-item-text span { font-size: .75rem; color: rgba(255,255,255,.6); }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-block {
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-block .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-block .label { font-size: .875rem; color: var(--muted); margin-top: .35rem; font-weight: 500; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none !important;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--text);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.service-card h4 { font-size: .95rem; font-weight: 600; color: var(--dark); }
.service-card p { font-size: .8rem; color: var(--muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--sky));
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.step h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { color: var(--blue); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.feature-card p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
  opacity: .2;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--amber);
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; }
.author-location { font-size: .8rem; color: var(--muted); }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: #f0fdf4;
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-top: .35rem;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cta-panel--blue { background: var(--navy); color: var(--white); }
.cta-panel--blue h2, .cta-panel--blue h3 { color: var(--white); }
.cta-panel--blue p { color: rgba(255,255,255,.8); }
.cta-panel--amber { background: var(--amber); color: var(--dark); }
.cta-panel--amber h2, .cta-panel--amber h3 { color: var(--dark); }
.cta-panel p { font-size: 1rem; line-height: 1.7; }
.cta-list { display: flex; flex-direction: column; gap: .5rem; }
.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
}
.cta-list li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
.cta-panel--blue .cta-list li::before { color: var(--sky); }
.cta-panel--amber .cta-list li::before { color: var(--dark); }
.banner-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.banner-cta h2 { color: var(--white); margin-bottom: .75rem; }
.banner-cta p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.1rem; }
.banner-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   COMMERCIAL CARDS
   ============================================================ */
.commercial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.commercial-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-2px); }
.commercial-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.commercial-card h3 { font-size: 1.15rem; }
.commercial-card p { font-size: .9rem; color: var(--muted); flex: 1; }
.commercial-card .learn-more {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ============================================================
   PROVIDER SECTION
   ============================================================ */
.provider-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.provider-benefit .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.provider-benefit h4 { color: var(--white); font-size: 1rem; margin-bottom: .25rem; }
.provider-benefit p { color: rgba(255,255,255,.7); font-size: .875rem; }

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
}
.coverage-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.coverage-item:hover { border-color: var(--blue); color: var(--blue); }
.coverage-item::before { content: '📍'; font-size: .875rem; }

/* ============================================================
   PROCESS STEPS (vertical)
   ============================================================ */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.process-step-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 4px;
}
.process-step:last-child .process-step-line { display: none; }
.process-step-content { padding-top: .5rem; }
.process-step-content h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step-content p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  font-weight: 600;
  font-size: .975rem;
  color: var(--dark);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--dark);
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-control::placeholder { color: #adb5bd; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-blue { background: #eff6ff; color: var(--blue); }
.badge-green { background: #f0fdf4; color: var(--green); }
.badge-amber { background: #fffbeb; color: var(--amber-dark); }
.badge-dark { background: var(--surface); color: var(--muted); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 6.5rem 0 4rem;
  background: linear-gradient(150deg, var(--dark) 0%, var(--navy) 100%);
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 650px; margin: 0 auto 1.5rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   CARD VARIANTS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.card--highlight { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.08); }
.card--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }

/* ============================================================
   VERIFICATION CHECKLIST
   ============================================================ */
.verify-list { display: flex; flex-direction: column; gap: 1rem; }
.verify-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
}
.verify-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.verify-item h4 { font-size: .95rem; color: var(--dark); margin-bottom: .1rem; }
.verify-item p { font-size: .825rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none !important;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--sky); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  text-decoration: none !important;
}
.footer-contact a:hover { color: var(--white); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  text-decoration: none !important;
  font-size: .9rem;
}
.social-link:hover { background: var(--blue); color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none !important;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none !important; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-trust-bar {
  background: rgba(255,255,255,.05);
  padding: 1.25rem 0;
  margin-bottom: 0;
}
.footer-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.footer-trust-item svg { color: var(--green); }

/* ============================================================
   NOTICE / ALERT
   ============================================================ */
.notice {
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.notice-blue { background: #eff6ff; border-left: 3px solid var(--blue); color: var(--navy); }
.notice-green { background: #f0fdf4; border-left: 3px solid var(--green); color: #166534; }
.notice-amber { background: #fffbeb; border-left: 3px solid var(--amber); color: #92400e; }

/* ============================================================
   TABS
   ============================================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
}
.tab-btn {
  padding: .875rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--blue); border-bottom-color: var(--blue); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: 100px; }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.aspect-ratio-16-9 { aspect-ratio: 16/9; }
.bg-blue-light { background: #eff6ff; }
.fw-800 { font-weight: 800; }
.fs-sm { font-size: .875rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */
/* Commercial page */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.industry-card-header {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}
.industry-card-header h3 { color: var(--white); font-size: 1.15rem; }
.industry-card-header p { color: rgba(255,255,255,.8); font-size: .85rem; margin-top: .35rem; }
.industry-card-body { padding: 1.75rem; }
.industry-card-body ul { display: flex; flex-direction: column; gap: .5rem; }
.industry-card-body li {
  font-size: .875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}
.industry-card-body li:last-child { border-bottom: none; }
.industry-card-body li::before { content: '→'; color: var(--blue); flex-shrink: 0; font-weight: 700; }
.industry-card-footer {
  padding: 1rem 1.75rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Legal pages */
.legal-content { max-width: 820px; margin: 0 auto; padding: 4rem 1.25rem; }
.legal-content h1 { margin-bottom: .5rem; }
.legal-content .last-updated { color: var(--muted); font-size: .875rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 .75rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1.5rem; }
.legal-content p, .legal-content li { font-size: .975rem; line-height: 1.8; color: var(--text); }
.legal-content ul { margin: .75rem 0 .75rem 1.5rem; list-style: disc; display: flex; flex-direction: column; gap: .4rem; }
.legal-content .contact-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 6rem 0 4rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn:not(.btn-mobile-cta) { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .steps, .cta-split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .trust-bar-inner { gap: 1.25rem; }
  .trust-divider { display: none; }
  .steps::before { display: none; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4.5rem 0; }
  .cta-panel { padding: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { flex-direction: column; }
  .hero-search-zip { border-left: none; border-top: 1px solid var(--border); width: 100%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section--sm { padding: 2.5rem 0; }
  .btn--lg { padding: .875rem 1.5rem; font-size: .95rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: .6rem; }
}
