/* Fonts loaded via <link> in HTML for performance */

/* ============================================================
   COMPARE INTERNET BC — PREMIUM BRAND SYSTEM
   Primary:   #0B1F3A  (Deep Navy — trust, authority)
   CTA:       #00C48C  (Vivid Teal — action, conversion)
   Accent:    #0057FF  (Electric Blue — links, highlights)
   BG:        #F5F7FA  (Off-white — clean surface)
   Card:      #FFFFFF
   Text:      #0D1B2A  (Near-black)
   Muted:     #5B6B7C  (Secondary text)
   Border:    #DDE5EF
   ============================================================ */

:root {
  --navy:        #0B1F3A;
  --navy-700:    #122847;
  --navy-500:    #1E3F6B;
  --navy-100:    #E8EEF7;
  --navy-50:     #F0F4FA;
  --cta:         #00C48C;
  --cta-hover:   #00A876;
  --cta-light:   #E0FAF3;
  --blue:        #0057FF;
  --blue-light:  #EBF1FF;
  --amber:       #F59E0B;
  --amber-light: #FEF3C7;
  --red:         #EF4444;
  --bg:          #F5F7FA;
  --bg-alt:      #EEF2F8;
  --white:       #FFFFFF;
  --text:        #0D1B2A;
  --text-mid:    #3D4F62;
  --text-muted:  #5B6B7C;
  --text-faint:  #8FA0B4;
  --border:      #DDE5EF;
  --border-mid:  #C4D0DF;
  --shadow-sm:   0 1px 4px rgba(11,31,58,.06);
  --shadow:      0 4px 20px rgba(11,31,58,.10);
  --shadow-lg:   0 12px 40px rgba(11,31,58,.14);
  --serif:       'Syne', system-ui, sans-serif;
  --sans:        'Inter', system-ui, sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--serif); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(30px,5vw,56px); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(24px,3.5vw,40px); font-weight: 600; letter-spacing: -.015em; }
h3 { font-size: clamp(16px,2vw,20px); font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; }
p { color: var(--text-mid); font-weight: 400; }
a { color: var(--blue); text-decoration: none; }

/* ── NAV ── */
nav {
  background: var(--navy);
  height: 68px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo em { color: var(--cta); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 7px;
  transition: color .15s, background .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--cta); }
.nav-cta {
  background: var(--cta) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--cta-hover) !important; }
.nav-security {
  background: rgba(245,158,11,.15) !important;
  color: #F59E0B !important;
  border: 1px solid rgba(245,158,11,.3) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px; background: none; border: none;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  touch-action: manipulation;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.mobile-nav {
  display: none;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--navy-700);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 5vw 16px;
  z-index: 299;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,.8);
  font-size: 16px; font-weight: 500;
  padding: 14px 0; min-height: 48px; display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none; touch-action: manipulation;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── LAYOUT ── */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 5vw 90px; }
.wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 5vw 90px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 70px 5vw 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -140px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,140,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: 5%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1060px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,196,140,.15);
  border: 1px solid rgba(0,196,140,.25);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 20px;
}
.hero h1 { color: #fff; max-width: 700px; margin-bottom: 18px; }
.hero h1 em { color: var(--cta); font-style: normal; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.65);
  max-width: 560px; font-weight: 400; line-height: 1.7;
  margin-bottom: 32px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 0; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 30px; padding: 5px 13px;
  font-size: 12px; font-weight: 500;
}
.pill-cta { background: rgba(0,196,140,.15); border: 1px solid rgba(0,196,140,.3); color: var(--cta); }
.pill-white { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.pill-amber { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3); color: #F59E0B; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: all .18s; white-space: nowrap; letter-spacing: .01em;
  touch-action: manipulation; min-height: 48px; -webkit-tap-highlight-color: transparent;
}
.btn-cta { background: var(--cta); color: var(--navy); }
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,196,140,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-500); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border-mid); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy-50); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── LEAD FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.form-card-title { font-size: 20px; font-weight: 700; font-family: var(--serif); color: var(--navy); margin-bottom: 4px; }
.form-card-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 11px; }
.field label { font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: .03em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 13px;
  font-size: 16px; font-family: var(--sans);
  color: var(--text); background: var(--white);
  outline: none; transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(0,196,140,.14);
}
.field input::placeholder { color: var(--text-faint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-postal input { font-size: 18px; font-weight: 600; letter-spacing: .1em; text-align: center; padding: 14px; }
.form-submit {
  width: 100%; background: var(--cta); color: var(--navy);
  border: none; border-radius: var(--radius); padding: 16px 14px;
  font-size: 16px; font-weight: 700; font-family: var(--sans);
  cursor: pointer; margin-top: 6px; min-height: 52px;
  transition: background .18s, transform .12s, box-shadow .18s;
  letter-spacing: .01em; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.form-submit:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,196,140,.35); }
.form-submit:active { transform: scale(.99); }
.form-privacy {
  text-align: center; font-size: 11.5px; color: var(--text-faint);
  margin-top: 9px; line-height: 1.5;
}
.security-checkbox {
  display: flex; align-items: center; gap: 9px;
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius); padding: 10px 13px;
  margin-bottom: 11px; cursor: pointer;
}
.security-checkbox input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--amber); flex-shrink: 0; }
.security-checkbox span { font-size: 13px; font-weight: 600; color: #92400E; }

/* ── SECTION LABELS ── */
.eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cta); margin-bottom: 10px;
}
.section-intro { font-size: 17px; color: var(--text-mid); max-width: 580px; font-weight: 400; line-height: 1.75; margin-bottom: 36px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: var(--border-mid); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cta-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--cta); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.blue { background: var(--blue-light); }
.card-icon.blue svg { stroke: var(--blue); }
.card-icon.amber { background: var(--amber-light); }
.card-icon.amber svg { stroke: var(--amber); }
.card h3 { font-size: 16px; margin-bottom: 7px; }
.card p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }
.card-featured { border: 2px solid var(--cta); }

/* ── STATS ── */
.stats-band { background: var(--navy); border-radius: var(--radius-xl); padding: 36px 32px; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.stat-item { text-align: center; padding: 10px 16px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--cta); display: block; line-height: 1; margin-bottom: 7px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 400; line-height: 1.4; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table thead { background: var(--navy); }
.data-table th {
  text-align: left; padding: 13px 16px;
  color: rgba(255,255,255,.65); font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.data-table th:first-child { border-radius: 10px 0 0 0; }
.data-table th:last-child { border-radius: 0 10px 0 0; }
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid); font-weight: 400; vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--navy-50); }
.data-table td:first-child { font-weight: 600; color: var(--navy); }
.badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; margin-left: 6px; }
.badge-green { background: var(--cta-light); color: var(--cta-hover); }
.badge-amber { background: var(--amber-light); color: #92400E; }
.badge-blue { background: var(--blue-light); color: var(--blue); }

/* ── REVIEW CARDS ── */
.review { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; }
.stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 11px; display: block; }
.review-body { font-size: 14px; color: var(--text-mid); font-style: italic; line-height: 1.7; margin-bottom: 13px; font-weight: 400; }
.review-meta { font-size: 12px; color: var(--text-faint); display: flex; align-items: center; gap: 7px; }
.review-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cta); flex-shrink: 0; }
.review-saving { font-size: 11px; font-weight: 700; background: var(--cta-light); color: var(--cta-hover); padding: 2px 8px; border-radius: 20px; }

/* ── HIGHLIGHT / ALERT BOXES ── */
.box-cta {
  background: var(--cta-light);
  border: 1px solid rgba(0,196,140,.25);
  border-radius: var(--radius-lg); padding: 20px 22px;
  font-size: 15px; color: var(--cta-hover); line-height: 1.7;
}
.box-amber {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 15px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
.box-navy {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg); padding: 20px 22px;
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-500) 100%);
  border-radius: var(--radius-xl); padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,140,.12) 0%, transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(22px,3vw,32px); margin-bottom: 9px; }
.cta-band p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 420px; font-weight: 400; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 2; }

/* ── MULTI-STEP FORM ── */
.steps-bar { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.step-seg { flex: 1; height: 3px; background: var(--border); border-radius: 2px; transition: background .35s; }
.step-seg.done { background: var(--cta); }
.step-seg.active { background: var(--cta); }
.steps-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-faint); margin-top: 5px; margin-bottom: 20px; }
.step-panel { display: none; animation: stepIn .25s ease; }
.step-panel.active { display: block; }
@keyframes stepIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.step-q { font-size: 17px; font-weight: 600; color: var(--navy); font-family: var(--serif); margin-bottom: 16px; line-height: 1.35; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.opt-btn {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 14px; cursor: pointer; background: var(--white);
  font-family: var(--sans); transition: .15s;
  display: flex; align-items: flex-start; gap: 10px; text-align: left;
}
.opt-btn:hover { border-color: var(--cta); background: var(--cta-light); }
.opt-btn.selected { border-color: var(--cta); background: var(--cta-light); }
.opt-btn.featured { border-color: var(--amber); background: var(--amber-light); }
.opt-btn.featured:hover { border-color: #D97706; }
.opt-icon2 { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.opt-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.opt-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.back-btn {
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 9px 18px;
  font-size: 13px; color: var(--text-muted); cursor: pointer;
  font-family: var(--sans); margin-top: 10px;
  transition: border-color .15s, color .15s;
}
.back-btn:hover { border-color: var(--navy); color: var(--navy); }
.success-wrap { text-align: center; padding: 10px 0; }
.success-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--cta-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 30px; height: 30px; stroke: var(--cta); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.next-steps-box { background: var(--navy-50); border-radius: var(--radius-lg); padding: 20px; margin-top: 24px; text-align: left; }
.next-step-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 11px; }
.ns-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.ns-text { font-size: 13px; color: var(--text-mid); font-weight: 400; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 52px 5vw 28px;
  margin-top: 0;
}
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 400; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px;
  font-family: var(--sans);
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.6);
  text-decoration: none; margin-bottom: 9px; font-weight: 400;
  transition: color .15s;
}
.footer-col a:hover { color: var(--cta); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px;
}
.footer-phone { color: var(--cta) !important; font-weight: 600 !important; font-size: 14px !important; }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.g-hero { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }

/* ── UTILS ── */
.mt1{margin-top:8px} .mt2{margin-top:16px} .mt3{margin-top:24px} .mt4{margin-top:32px} .mt5{margin-top:40px} .mt6{margin-top:52px} .mt8{margin-top:72px}
.mb2{margin-bottom:16px} .mb4{margin-bottom:32px}
.center{text-align:center}
.divider{height:1px;background:var(--border);margin:32px 0}
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: .03em;
}
.tag-cta { background: var(--cta-light); color: var(--cta-hover); }
.tag-amber { background: var(--amber-light); color: #92400E; }
.tag-navy { background: var(--navy-100); color: var(--navy-500); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-mid); line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cta-light);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300C48C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.urgency-strip {
  background: linear-gradient(90deg, #7C2D12, #92400E);
  border-radius: var(--radius); padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: #FDE68A;
  margin-bottom: 14px;
}

/* ── SECTION ALTERNATION ── */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--cta); }
.section-dark p { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ── */
@media(max-width:860px){
  .g-hero{grid-template-columns:1fr;}
  .g3{grid-template-columns:1fr 1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .cta-band{flex-direction:column;align-items:flex-start;padding:32px 24px;}
}
@media(max-width:640px){
  .nav-links{display:none;}
  .hamburger{display:flex;}
  .g2,.g3,.g4{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:1fr;}
  .stat-item+.stat-item{border-left:none;border-top:1px solid rgba(255,255,255,.1);}
  .option-grid{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  .form-card{padding:22px 16px;}
  .hero{padding:44px 5vw 48px;}
  .section{padding:48px 0;}
}


/* ── CRO ADDITIONS ── */
body { padding-bottom: 62px; }
.trust-bar-strip { background: #0B1F3A; }
.sticky-bar-outer { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; }
.form-card { position: relative; }
.form-cta-above { text-align: center; font-size: 15px; font-weight: 700; color: #0B1F3A; margin-bottom: 14px; }
.hero-urgency { background: linear-gradient(90deg,#7C2D12,#9A3412); padding: 9px 5vw; text-align: center; }
/* Pulse animation on CTA buttons */
@keyframes ctaPulse { 0%,100%{box-shadow:0 6px 20px rgba(0,196,140,.35);} 50%{box-shadow:0 8px 32px rgba(0,196,140,.6);} }
.btn-cta { animation: ctaPulse 3s ease-in-out infinite; }
.btn-cta:hover { animation: none; }
/* Better mobile form */
@media(max-width:640px){
  .field input, .field select, .field textarea { font-size: 16px !important; }
  .form-submit { font-size: 16px !important; padding: 15px !important; }
}
/* City card hover */
.city-card { cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; }
.city-card:hover { border-color: #00C48C !important; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,196,140,.2); }


/* ── PERFORMANCE & CRO ADDITIONS v4 ── */

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 18px;
  z-index: 9998;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover, .wa-float:focus { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.6); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.5);} 50%{box-shadow:0 4px 28px rgba(37,211,102,.8);} }
.wa-float { animation: waPulse 3s ease-in-out infinite; }
.wa-float:hover { animation: none; }

/* Security badges on form */
.form-security-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
}
.sec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-faint); font-weight: 500;
}
.sec-badge svg { width: 13px; height: 13px; stroke: var(--cta); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Trust bar inline */
.trust-bar-inline {
  background: #0B1F3A;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 10px 5vw;
}
.trust-bar-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px 24px;
}
.trust-item {
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 7px;
}
.trust-check { color: #00C48C; font-size: 15px; font-weight: 700; }
.trust-sep { color: rgba(255,255,255,.15); font-size: 18px; }
@media(max-width:640px){
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 10px 18px; }
  .trust-item { font-size: 12px; }
}

/* Form card trust footer */
.form-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  background: #f0faf6;
  border: 1px solid rgba(0,196,140,.2);
  border-radius: var(--radius); padding: 8px 12px; margin-top: 10px;
  font-size: 12px; color: #0F7C5E; font-weight: 500; line-height: 1.5;
  text-align: center;
}

/* Sticky bar improvement */
#sticky-call-bar {
  font-family: var(--sans) !important;
}

/* Pulsing CTA arrow */
@keyframes arrowBounce { 0%,100%{transform:translateX(0);} 50%{transform:translateX(4px);} }
.btn-cta .arrow { display:inline-block; animation: arrowBounce 1.5s ease infinite; }

/* Remove double body padding - let sticky handle it */
body { padding-bottom: 70px; }

/* Mobile: single column hero */
@media(max-width:860px){
  .g-hero { display: flex; flex-direction: column; gap: 32px; }
  .form-card { max-width: 100%; }
}

/* Ensure all inner pages have good spacing */
@media(max-width:640px){
  .hero { padding: 36px 5vw 40px; }
  .hero h1 { font-size: clamp(24px, 8vw, 36px); }
  .hero-sub { font-size: 16px; }
  .hero-eyebrow { font-size: 11px; }
  .wrap { padding: 0 4vw 70px; }
  h2 { font-size: clamp(20px, 6vw, 30px); }
  .cta-band { padding: 24px 18px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .field-row { grid-template-columns: 1fr !important; }
}

/* Card hover on mobile - no transform (feels wrong on touch) */
@media(hover:none){
  .card:hover, .city-card:hover { transform: none; box-shadow: none; }
}

/* Improve review cards */
.review { position: relative; }
.review::before {
  content: '"';
  position: absolute; top: -8px; left: 14px;
  font-size: 56px; color: var(--cta-light);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}

/* Step progress bar - bigger dots on mobile */
@media(max-width:640px){
  .steps-bar { height: 5px; gap: 3px; }
  .step-seg { height: 5px; border-radius: 3px; }
}


/* city card alignment fix */
.city-card{
  display:block;
  text-decoration:none;
  text-align:center;
}
.city-card h4{
  margin-bottom:6px !important;
}
.city-card p{
  margin:0 !important;
}


/* Mobile lead form fixes */
input[name="postal"], #ms-postal {
  text-transform: uppercase;
  ime-mode: inactive;
}
input, select, textarea {
  font-size: 16px;
}

/* Security badges */
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.sec-badge svg {
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  overflow: visible;
}

@media (max-width: 768px){
  .field-row {
    grid-template-columns: 1fr !important;
  }
}
