/* ==========================================================================
   Norte Leads LLC — Global Stylesheet
   Design system: Navy + white, single accent (signal green), Manrope only.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy: #1e264c;
  --navy-deep: #0f1428;
  --navy-mid: #2a3466;
  --navy-line: #2f386a;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --off-white-2: #eef0f6;
  --border: #e2e5ee;
  --text: #0f1428;
  --text-mid: #4a5169;
  --text-mute: #7b8299;

  --accent: #22C55E;        /* signal green — verified / delivered */
  --accent-deep: #16a34a;
  --accent-soft: #dcfce7;

  --danger: #ef4444;
  --amber: #f59e0b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 40, 0.06);
  --shadow: 0 8px 30px rgba(15, 20, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 20, 40, 0.14);

  --container: 1200px;
  --container-narrow: 900px;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

button { font-family: inherit; cursor: pointer; }

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

/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy-deep { background: var(--navy-deep); color: var(--white); }
.bg-off { background: var(--off-white); }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--text);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-navy-deep h1, .bg-navy-deep h2, .bg-navy-deep h3, .bg-navy-deep h4 { color: var(--white); }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--text-mid); }
.bg-navy p, .bg-navy-deep p { color: rgba(255, 255, 255, 0.78); }

.lede { font-size: 1.18rem; line-height: 1.55; color: var(--text-mid); }
.bg-navy .lede, .bg-navy-deep .lede { color: rgba(255, 255, 255, 0.82); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.bg-navy .eyebrow, .bg-navy-deep .eyebrow { color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn-primary-invert { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-primary-invert:hover { background: var(--off-white); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: var(--off-white); }

.bg-navy .btn-ghost, .bg-navy-deep .btn-ghost,
.cta-band .btn-ghost, .site-footer .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}
.bg-navy .btn-ghost:hover, .bg-navy-deep .btn-ghost:hover,
.cta-band .btn-ghost:hover, .site-footer .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-lg { padding: 17px 28px; font-size: 1.02rem; }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 6. Navigation (white header, navy logo) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav-menu a:hover { color: var(--navy); text-decoration: none; }
.nav-menu a.active {
  color: var(--navy);
}
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  color: var(--navy);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-menu-cta { display: none; }

@media (max-width: 900px) {
  .nav { height: 64px; gap: 10px; }
  .nav-logo img { height: 26px; }
  .nav-menu { display: none; }
  /* Keep the primary Get Leads pill visible on mobile too, next to hamburger */
  .nav-cta { gap: 8px; }
  .nav-cta .btn-sm { padding: 9px 14px; font-size: 0.85rem; min-height: 40px; }
  .nav-toggle { display: inline-flex; }

  .nav.open .nav-menu {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 20px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open .nav-menu a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--off-white-2);
    color: var(--text);
    font-size: 1rem;
  }
  .nav.open .nav-menu a.active::after { display: none; }
  .nav.open .nav-menu li:last-child a { border-bottom: none; }
}

@media (max-width: 400px) {
  .nav { gap: 6px; }
  .nav-logo img { height: 22px; }
  .nav-cta .btn-sm { padding: 8px 10px; font-size: 0.8rem; }
}

/* ---------- 7. Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle radial glow — one moment, not decoration everywhere */
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0 48px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tag .dot { animation: none; }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  letter-spacing: -0.038em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero right card — the "boldness moment" */
.hero-card {
  background: linear-gradient(180deg, #1a2148 0%, #151b3a 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--navy-line);
}
.hero-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-card-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-card-live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-value {
  font-family: var(--font);
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.metric-check {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ---------- 8. Trust strip (below hero) ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.trust-strip-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { color: var(--accent-deep); }
@media (max-width: 700px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- 9. Two-column feature ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}
.two-col img { border-radius: var(--radius-lg); }

/* ---------- 10. Problem list (institutional angle) ---------- */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.problem-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.problem-list li:first-child { border-top: none; padding-top: 0; }
.problem-list li strong { color: var(--white); display: block; margin-bottom: 4px; }
.problem-list li p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 0.98rem; }
.problem-x {
  color: var(--danger);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
  padding-top: 2px;
}

/* ---------- 11. Verification stack (4 layers) ---------- */
.verify-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .verify-stack { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .verify-stack { grid-template-columns: 1fr; } }

.verify-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.verify-card:hover { border-color: var(--navy); }
.verify-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.verify-card h4 { margin: 0 0 8px; font-size: 1.05rem; }
.verify-card p { margin: 0; font-size: 0.94rem; color: var(--text-mid); }

/* ---------- 12. How-it-works timeline ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step p { margin: 0; }

/* ---------- 13. Metric row (large stats section) ---------- */
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 900px) { .metric-band { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .metric-band { grid-template-columns: 1fr; } }

.metric-band .metric-value { font-size: 2.6rem; }
.metric-band .metric-label { font-size: 0.9rem; }

/* ---------- 14. Verticals grid ---------- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .verticals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .verticals-grid { grid-template-columns: 1fr; } }

.vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vertical-card.live { border-color: var(--accent); border-width: 1.5px; }
.vertical-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.vertical-status.live { color: var(--accent-deep); }
.vertical-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.vertical-card h3 { margin: 0; font-size: 1.15rem; }
.vertical-card p { margin: 0; font-size: 0.94rem; color: var(--text-mid); }

/* ---------- 15. CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 16. Form ---------- */
.form-section {
  background: var(--off-white);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
@media (max-width: 500px) { .form-card { padding: 24px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.form-field .required { color: var(--danger); }
.form-field .hint { font-size: 0.78rem; color: var(--text-mute); font-weight: 400; margin-top: -2px; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 38, 76, 0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f1428' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.honeypot { position: absolute; left: -9999px; visibility: hidden; }

.form-consent {
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 20px;
}
.form-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.form-submit { width: 100%; padding: 16px 22px; font-size: 1.02rem; }

/* Info column beside form */
.form-info h2 { margin-bottom: 16px; }
.form-info .lede { margin-bottom: 24px; }
.form-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.form-info ul li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text);
}
.form-info ul li svg { color: var(--accent-deep); margin-top: 2px; }

/* ---------- 17. FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-mute);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 14px 0 0;
  color: var(--text-mid);
  font-size: 0.98rem;
}

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 32px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; max-width: 300px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.62); }

/* ---------- 19. Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin-left: auto;
  background: var(--navy-deep);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  line-height: 1.5;
  z-index: 50;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p { color: rgba(255, 255, 255, 0.82); margin: 0 0 14px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-actions button.primary { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---------- 20. Legal pages ---------- */
.legal-page {
  padding: 72px 0 96px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-page h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-page .updated { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 8px; }
.legal-page p, .legal-page li { font-size: 1rem; line-height: 1.65; color: var(--text-mid); }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page ul li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); }

/* ---------- 21. Success / thank-you page ---------- */
.status-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 72px 24px;
}
.status-page .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.status-page h1 { font-size: 2.2rem; margin-bottom: 12px; }
.status-page p { color: var(--text-mid); max-width: 520px; margin: 0 auto 24px; }

/* ---------- 22. Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* ---------- 23. Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--navy); color: var(--white);
  padding: 10px 14px; border-radius: var(--radius);
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- 24. Focus ring ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, details:focus-visible summary {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 25. Legal pages (privacy, terms) ---------- */
.legal {
  padding: 64px 0 96px;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.legal h3 {
  font-size: 1.08rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
.legal ul, .legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal ul li, .legal ol li {
  margin-bottom: 6px;
}
.legal strong { color: var(--text); font-weight: 700; }
.legal a { color: var(--navy); text-decoration: underline; }
.legal a:hover { color: var(--deep); }
.legal a[id] {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

/* ---------- 26. Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-info p {
  color: var(--text-mid);
  margin-bottom: 8px;
}
.contact-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }
.muted-note {
  color: var(--text-mute);
  font-size: 0.9rem;
}
.check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .x-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-mid);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.x-list li::before {
  content: "×";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--text-mute);
  font-size: 1.3rem;
  font-weight: 700;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- 27. Thank you page ---------- */
.thank-you {
  padding: 80px 0 96px;
  background: var(--surface);
  min-height: 60vh;
}
.thank-you-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thank-you-icon svg { width: 100%; height: 100%; }
.thank-you-card h1 {
  font-size: 2rem;
  margin: 8px 0 16px;
}
.thank-you-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.thank-you-what-next {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.thank-you-what-next h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}
.ordered-list {
  padding-left: 20px;
  margin: 0;
}
.ordered-list li {
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ordered-list li strong { color: var(--text); }
.thank-you-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 28. 404 page ---------- */
.not-found {
  padding: 80px 0 96px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.not-found-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.not-found-code {
  display: inline-block;
  font-family: var(--font);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.not-found h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.not-found-links {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
}
.not-found-links p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.not-found-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.not-found-links a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.not-found-links a:hover { text-decoration: underline; }

/* ---------- 29. Responsive overrides for new pages ---------- */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .thank-you-card { padding: 32px 24px; }
  .thank-you-card h1 { font-size: 1.6rem; }
  .not-found-code { font-size: 4rem; }
  .not-found h1 { font-size: 1.5rem; }
  .legal h2 { font-size: 1.2rem; }
}

/* ============================================================
   30. MOBILE OPTIMIZATION PASS
   Reinforces touch targets, typography, form UX, section rhythm
   on phones. Runs on top of individual component media queries.
   ============================================================ */

/* Prevent iOS from auto-zooming when focusing an input — requires
   input font-size ≥ 16px on iOS. */
@media (max-width: 900px) {
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="url"], input[type="number"], input[type="password"],
  input[type="search"], select, textarea {
    font-size: 16px;
  }
}

/* Container edge padding: room to breathe on phones */
@media (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 380px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Typography: scale headings down on smaller viewports so they
   don't overflow the line at ~380px width */
@media (max-width: 600px) {
  body { font-size: 16px; line-height: 1.55; }
  h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); line-height: 1.15; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; }
  .hero-sub, .page-sub, .lede {
    font-size: 1rem;
    line-height: 1.55;
  }
  .eyebrow { font-size: 0.75rem; }
}

/* Section padding: tighten vertical rhythm on phones */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .section-alt { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .page-hero { padding: 48px 0 24px; }
  .cta-band { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
}

/* Buttons: enforce ≥44px tap-target height and full-width by
   default on very small screens for the primary CTA row */
@media (max-width: 600px) {
  .btn { min-height: 44px; padding: 12px 20px; font-size: 0.95rem; }
  .btn-lg { min-height: 52px; padding: 15px 24px; font-size: 1rem; }
  .btn-sm { min-height: 40px; padding: 10px 14px; font-size: 0.88rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .not-found-actions .btn,
  .thank-you-actions .btn { width: 100%; justify-content: center; }
  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band .btn-row .btn { width: 100%; justify-content: center; text-align: center; }
}

/* Form fields: bigger tap targets, cleaner spacing on phones */
@media (max-width: 600px) {
  .form-card { padding: 20px; }
  .form-field label { font-size: 0.9rem; }
  .form-field input, .form-field select, .form-field textarea {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }
  .form-submit { min-height: 52px; }
  .form-title { font-size: 1.4rem; }
  .form-sub { font-size: 0.92rem; }
}

/* Hero card: right-column callout stacks under hero copy neatly */
@media (max-width: 900px) {
  .hero-card { padding: 24px; }
  .hero-card-head { flex-wrap: wrap; gap: 8px; }
}

/* Pricing cards: tighter internal padding on phones */
@media (max-width: 600px) {
  .pricing-card { padding: 24px 20px; }
  .pricing-card.featured::before {
    left: 16px;
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  .pricing-price { font-size: 1.6rem; }
  .pricing-list li { font-size: 0.9rem; }
}

/* Verify-stack + steps: single column, tighter gap */
@media (max-width: 600px) {
  .verify-card, .step {
    padding: 20px;
  }
  .verify-num, .step-tag { font-size: 0.75rem; }
}

/* Contact page: stack info + form cleanly, no wide gutter */
@media (max-width: 600px) {
  .contact-grid { gap: 24px; }
  .contact-link { font-size: 1rem; word-break: break-word; }
}

/* Legal pages: less scary line lengths on phone */
@media (max-width: 600px) {
  .legal { padding: 32px 0 64px; }
  .legal p, .legal li { font-size: 0.94rem; line-height: 1.6; }
  .legal h2 { font-size: 1.15rem; margin-top: 32px; }
  .legal h3 { font-size: 1rem; margin-top: 20px; }
}

/* Footer: tighter, more readable on phone */
@media (max-width: 600px) {
  .site-footer { padding: 40px 0 24px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
    font-size: 0.82rem;
  }
  .footer-col h5 { font-size: 0.85rem; }
  .footer-col li a { font-size: 0.92rem; }
}

/* Cookie banner: bottom-of-viewport sheet on phones,
   full width, larger tap targets */
@media (max-width: 600px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: none;
  }
  .cookie-banner p { font-size: 0.9rem; }
  .cookie-actions {
    display: flex;
    gap: 8px;
  }
  .cookie-actions button {
    flex: 1;
    min-height: 44px;
    font-size: 0.9rem;
  }
}

/* Hero card mobile shrink */
@media (max-width: 600px) {
  .hero-card-title { font-size: 0.9rem; }
  .hero-card-live { font-size: 0.72rem; }
}

/* Thank-you card: fit content, no huge padding on phone */
@media (max-width: 600px) {
  .thank-you { padding: 40px 0 64px; }
  .thank-you-card { padding: 28px 20px; }
  .thank-you-icon { width: 56px; height: 56px; margin-bottom: 16px; }
  .thank-you-card h1 { font-size: 1.5rem; }
  .thank-you-what-next { padding: 20px; }
}

/* Improve tap-focus visibility on iOS Safari */
a, button, input, select, textarea, summary {
  -webkit-tap-highlight-color: rgba(30, 38, 76, 0.12);
}

/* Prevent horizontal scroll on any layout overflow */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe, svg { max-width: 100%; height: auto; }

/* Improve scroll behavior + prevent iOS rubber-band jump */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }


/* ---------- 31. Our Guarantees pillars ---------- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.guarantee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.guarantee-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 38, 76, 0.06);
  border-radius: var(--radius);
}
.guarantee-icon svg {
  width: 26px;
  height: 26px;
}
.guarantee-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.guarantee-card p {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .guarantees-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .guarantee-card { padding: 24px 20px; }
  .guarantee-icon { width: 42px; height: 42px; margin-bottom: 16px; }
  .guarantee-icon svg { width: 22px; height: 22px; }
}
