/* ==========================================================================
   [BUSINESS_NAME] — Shared stylesheet
   Design system for: index, appliance-repair-colorado-springs, privacy,
   terms, tcpa-compliance.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #002147;
  --navy-90:     #002147e6;
  --slate:       #4A4A4A;
  --slate-soft:  #6B7280;
  --light:       #F5F7FA;
  --line:        #E5E9F0;
  --white:       #FFFFFF;
  --accent:      #2F80ED;
  --accent-soft: #EAF1FE;
  --success:     #1F8A5B;
  --success-soft:#E7F4EE;

  --shadow-sm: 0 1px 2px rgba(0,33,71,0.04), 0 1px 3px rgba(0,33,71,0.04);
  --shadow-md: 0 4px 16px rgba(0,33,71,0.06), 0 1px 3px rgba(0,33,71,0.04);
  --shadow-lg: 0 12px 32px rgba(0,33,71,0.08);

  --radius:    10px;
  --radius-lg: 14px;
  --max:       1180px;
  --max-text:  720px;

  --t-fast: 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-med:  280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
/* Defensive default — without this, SVGs without explicit dimensions can render
   at the spec default of 300×150 if more specific rules don't apply yet. */
svg { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

::selection { background: var(--navy); color: var(--white); }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 28px; }

section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 720px;
  margin-bottom: 14px;
}
.section-lede {
  font-size: 17px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 0 56px;
}
.sec-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: var(--slate-soft);
  font-size: 12px;
  margin-right: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 10px;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #00132a; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--white); color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-1px); }

.btn-call {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--navy); color: var(--white);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.btn-call:hover { background: #00132a; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-call .ic {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-call .ic svg { width: 20px; height: 20px; }
.btn-call .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Navigation ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
/* Reserve space for the fixed nav so content doesn't slide under it */
body { padding-top: 72px; }
header.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.94);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); font-weight: 600; letter-spacing: -0.01em;
  font-size: 17px;
}
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--navy);
  position: relative; flex-shrink: 0;
}
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--accent); }
.brand-mark::before { left: 6px; bottom: 6px; width: 3px; height: 8px; }
.brand-mark::after  { left: 12px; bottom: 6px; width: 3px; height: 14px; box-shadow: 6px 0 0 var(--white); }

nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
nav a {
  color: var(--slate);
  font-size: 14.5px; font-weight: 500;
  transition: color var(--t-fast);
}
nav a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: #00132a; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 18px 28px 24px; gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero (homepage style) ---------- */
.hero {
  padding: 120px 0 96px;
  background:
    radial-gradient(1200px 480px at 80% -10%, rgba(47,128,237,0.07), transparent 60%),
    linear-gradient(to bottom, var(--white) 0%, var(--light) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.06; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--navy) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--slate); max-width: 640px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.credibility {
  margin-top: 44px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px; color: var(--navy);
}
.credibility .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.credibility .sep { width: 1px; height: 12px; background: var(--line); }
@media (max-width: 560px) {
  .credibility { display: flex; flex-wrap: wrap; gap: 8px 14px; border-radius: 12px; }
  .credibility .sep { display: none; }
}

/* ---------- Hero (landing-page style) ---------- */
.hero-landing {
  padding: 80px 0 72px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--light) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero-landing::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-landing-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-landing h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-landing .lede {
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 620px;
  margin: 0 0 32px;
}
.hero-landing .city-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 22px;
}
.hero-landing .city-tag svg { width: 14px; height: 14px; }
.hero-disclosure {
  margin-top: 18px;
  font-size: 13px;
  color: var(--slate-soft);
  max-width: 520px;
  line-height: 1.55;
}

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  position: relative;
}
.card:hover {
  border-color: #cdd6e4;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15px; margin: 0; }

/* ---------- Standards section ---------- */
.standards {
  background: var(--light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.standards-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.standards-box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 100%);
}
@media (max-width: 720px) { .standards-box { padding: 32px 24px; } }

.standards-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.standards-head .badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.standards-head .badge svg { width: 22px; height: 22px; }
.standards-head h3 { font-size: 22px; }

.std-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
@media (max-width: 720px) { .std-list { grid-template-columns: 1fr; } }
.std-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--slate);
  font-size: 15px;
  padding: 6px 0;
}
.std-list .mark {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.std-list .mark svg { width: 11px; height: 11px; }
.std-list .neg .mark { background: #FEE9E9; color: #C0392B; }

/* ---------- Verticals ---------- */
.vertical-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.vertical-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.vertical-card .icon { color: var(--navy); background: var(--light); }
.vertical-card .examples {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--slate-soft);
  line-height: 1.7;
}
.vertical-card .examples-label {
  display: block;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.verticals-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--slate-soft);
  text-align: center;
  font-style: italic;
}

/* ---------- Compliance (dark) ---------- */
.compliance {
  background: var(--navy);
  color: var(--white);
  position: relative; overflow: hidden;
}
.compliance::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.compliance .wrap { position: relative; z-index: 1; }
.compliance .eyebrow { color: #6CA6FF; }
.compliance .eyebrow::before { background: #6CA6FF; }
.compliance h2 { color: var(--white); }
.compliance .section-lede { color: rgba(255,255,255,0.82); }
.compliance-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(6px);
}
.compliance-card h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.compliance-card h4 .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(108,166,255,0.16);
  color: #6CA6FF;
  display: inline-flex; align-items: center; justify-content: center;
}
.compliance-card h4 .ic svg { width: 14px; height: 14px; }
.compliance-card p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.65;
}

/* ---------- About / Bio ---------- */
.about { background: var(--light); border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about p { font-size: 17px; color: var(--slate); line-height: 1.7; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.stat-row:last-child { border-bottom: 0; }
.stat-row .label {
  color: var(--slate-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-row .value { color: var(--navy); font-weight: 500; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(47,128,237,0.07), transparent 60%),
    var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (max-width: 720px) { .contact-card { padding: 40px 24px; } }
.contact-card h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.contact-card p { max-width: 520px; margin: 0 auto 28px; color: var(--slate); }
.contact-email {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--navy); color: var(--white);
  border-radius: 10px;
  font-size: 16px; font-weight: 500;
  transition: background var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-sm);
}
.contact-email:hover { background: #00132a; transform: translateY(-1px); }

/* ==========================================================================
   LANDING-PAGE-SPECIFIC SECTIONS (appliance-repair page)
   ========================================================================== */

/* Service grid */
.services { background: var(--white); }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-card p { color: var(--slate-soft); font-size: 14.5px; margin: 0; }

.grid-3-tight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .grid-3-tight { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3-tight { grid-template-columns: 1fr; } }

/* How it works */
.howitworks { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 15px; margin: 0; }

/* Local area */
.local-area { background: var(--white); }
.area-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--light);
}
@media (max-width: 720px) { .area-box { padding: 28px 22px; } }
.area-box h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.area-box p { color: var(--slate); margin: 0; max-width: 720px; }
.area-pills {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

/* FAQ */
.faq { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--navy); }
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--navy);
  font-weight: 500;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--slate-soft);
  border-bottom: 2px solid var(--slate-soft);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

/* Trust block (consumer-facing variant) */
.trust-block { background: var(--white); }
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.trust-card::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--success);
}
@media (max-width: 720px) { .trust-card { padding: 28px 22px; } }
.trust-card h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 14px; }
.trust-card p { color: var(--slate); margin: 0; font-size: 16px; }
.trust-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #001936 100%);
  color: var(--white);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.final-cta .btn-call { background: var(--white); color: var(--navy); }
.final-cta .btn-call:hover { background: #f1f5fb; transform: translateY(-1px); }
.final-cta .btn-call .ic { background: rgba(0,33,71,0.10); color: var(--navy); }
.final-cta .disclosure {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}

/* ==========================================================================
   LEGAL PAGES (privacy, terms, tcpa)
   ========================================================================== */
.legal-hero {
  padding: 80px 0 48px;
  background: var(--light);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 12px;
}
.legal-hero .meta {
  color: var(--slate-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.legal {
  padding: 64px 0 96px;
  background: var(--white);
}
.legal-content {
  max-width: var(--max-text);
  margin: 0 auto;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.legal-content h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 14px;
  scroll-margin-top: 96px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 14px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content a:hover { color: var(--navy); }
.legal-disclaimer {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 36px;
}
.legal-disclaimer strong { color: var(--navy); }

/* ---------- Footer ---------- */
footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
}
.foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a {
  font-size: 13.5px;
  color: var(--slate-soft);
  transition: color var(--t-fast);
}
.foot-links a:hover { color: var(--navy); }
.foot-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--slate-soft);
}
.foot-disclaimer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--slate-soft);
  line-height: 1.65;
  max-width: 880px;
}

/* ---------- Sticky mobile call button (landing pages only) ---------- */
.sticky-call {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(0,33,71,0.2);
  align-items: center; justify-content: center; gap: 10px;
  transition: transform var(--t-fast);
}
.sticky-call:active { transform: translateY(1px); }
.sticky-call svg { width: 18px; height: 18px; }
body.has-call-cta .sticky-call { display: inline-flex; }
@media (min-width: 720px) {
  body.has-call-cta .sticky-call { display: none; }
}
@media (max-width: 720px) {
  body.has-call-cta { padding-bottom: 80px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
