/* ═══════════════════════════════════════════════
   DispatchPro — Landing Page CSS
   Font: Plus Jakarta Sans
═══════════════════════════════════════════════ */

:root {
  --navy:    #0b1730;
  --navy2:   #0f2044;
  --blue:    #1d6bff;
  --blue2:   #2f86ff;
  --text:    #0b1220;
  --muted:   #52607a;
  --muted2:  #8a9ab8;
  --border:  rgba(13,28,62,.10);
  --border2: rgba(13,28,62,.07);
  --bg:      #ffffff;
  --bg2:     #f7f9fc;
  --radius:  16px;
  --radius2: 12px;
  --container: 1120px;
  --shadow:  0 4px 24px rgba(13,28,62,.09);
  --shadow2: 0 12px 48px rgba(13,28,62,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.skip-link {
  position: absolute; left: 10px; top: 10px;
  padding: 10px 12px; background: var(--navy); color: #fff;
  border-radius: 10px; transform: translateY(-160%);
  transition: transform .2s; z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(29,107,255,.3); outline-offset: 2px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

/* ── Reveal on scroll ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Eyebrow / section labels ──────────────────── */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 800;
  color: var(--navy); letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--muted); font-weight: 500;
  max-width: 540px; margin-inline: auto; line-height: 1.65;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,23,48,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 8px 32px rgba(0,0,0,.2); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0; gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0bd2ff);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name {
  font-size: 18px; font-weight: 800; color: #fff;
  letter-spacing: -.02em;
}

.nav-desktop { display: flex; gap: 4px; align-items: center; }
.nav-desktop .nav-link {
  color: rgba(255,255,255,.78); font-weight: 600; font-size: 14px;
  padding: 7px 12px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-desktop .nav-link:hover {
  color: #fff; background: rgba(255,255,255,.08); text-decoration: none;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  color: rgba(255,255,255,.82); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s;
}
.btn-login:hover { color: #fff; text-decoration: none; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 99px;
}

/* ── Mobile overlay + drawer ─────────────────── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(3px);
  z-index: 9998;
}
.mob-overlay.is-open { display: block; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: #0b1730;
  z-index: 9999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 48px rgba(0,0,0,.4);
}
.mob-drawer.is-open { transform: translateX(0); }

.mob-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mob-brand { display: flex; align-items: center; gap: 9px; }
.mob-brand .brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #1d6bff, #0bd2ff);
  display: flex; align-items: center; justify-content: center;
}
.mob-brand .brand-name { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -.02em; }

.mob-close {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.mob-close:hover { background: rgba(255,255,255,.14); }

.mob-links {
  flex: 1; display: flex; flex-direction: column;
  padding: 10px 12px; overflow-y: auto;
  gap: 2px;
}
.mob-link {
  display: flex; align-items: center;
  padding: 13px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.8);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.mob-link:hover { background: rgba(255,255,255,.07); color: #fff; text-decoration: none; }

.mob-actions {
  padding: 16px 20px 36px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.mob-login {
  display: block; text-align: center;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6);
  padding: 10px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.mob-login:hover { color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }
.mob-cta { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; font-family: inherit; font-weight: 700; font-size: 14px;
  border-radius: var(--radius2); border: none; padding: 11px 20px;
  transition: all .18s; white-space: nowrap;
}
.btn-lg { font-size: 15px; padding: 14px 26px; border-radius: 14px; }
.btn-wide { width: 100%; }

.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 18px rgba(29,107,255,.28);
}
.btn-primary:hover {
  background: #1558e0; box-shadow: 0 6px 24px rgba(29,107,255,.38);
  transform: translateY(-1px); text-decoration: none; color: #fff;
}

.btn-outline {
  background: #fff; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: #f0f6ff; text-decoration: none;
}

.btn-dark {
  background: var(--navy); color: #fff;
  border: 1.5px solid rgba(255,255,255,.12);
}
.btn-dark:hover {
  background: #142650; text-decoration: none; color: #fff;
}

.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(13,28,62,.2); color: var(--text); text-decoration: none;
}

.btn-ghost-hero {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.14); color: #fff; text-decoration: none;
}

.btn-header-cta {
  background: var(--blue); color: #fff;
  padding: 9px 16px; font-size: 13px;
  box-shadow: 0 2px 10px rgba(29,107,255,.25);
}
.btn-header-cta:hover {
  background: #1558e0; text-decoration: none; color: #fff;
}

.btn-sm { padding: 10px 16px; font-size: 13px; }

.btn-loading { opacity: .7; pointer-events: none; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d2b5a 100%);
  padding: 96px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-bg.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,23,48,.88) 0%, rgba(11,23,48,.72) 50%, rgba(11,23,48,.82) 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 680px;
}

.hero-eyebrow { margin-bottom: 20px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.88);
}

.hero-title {
  font-size: clamp(38px, 6vw, 58px); font-weight: 900;
  color: #fff; letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,.72);
  font-weight: 500; line-height: 1.65; margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-proof {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; overflow: hidden;
  width: 100%;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 12px;
  flex: 1;
}
.proof-item strong {
  font-size: 18px; font-weight: 800; color: #fff; line-height: 1.2;
}
.proof-item span {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55);
  text-align: center; line-height: 1.3;
}
.proof-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════ */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 20px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 24px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  white-space: nowrap;
}
.trust-badge svg { flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-inner { gap: 0; justify-content: flex-start; }
  .trust-badge { padding: 8px 16px; font-size: 12px; }
  .trust-sep { display: none; }
}

/* ════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════ */
.features-section { padding: 96px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-3px);
}
.feat-card-large {
  grid-column: span 1;
  background: linear-gradient(135deg, #EEF5FF, #f7f9ff);
  border-color: #d0e2ff;
}
.feat-card-accent {
  background: linear-gradient(135deg, #ffffff, #9bb5ff);
  border-color: rgba(255,255,255,.1);
}
.feat-card-accent h3, .feat-card-accent p { color: #fff; }
.feat-card-accent h3 { color: #fff; }
.feat-card-accent p { color: rgba(255,255,255,.72); }
.feat-card-accent .feat-icon { color: #4d8fff; }

.feat-icon {
  width: 44px; height: 44px;
  background: #EEF5FF; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 16px;
}
.feat-card-large .feat-icon { background: #d9eaff; }
.feat-card-accent .feat-icon { background: rgba(255,255,255,.1); color: #4d8fff; }

.feat-card h3 {
  font-size: 16px; font-weight: 800; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.feat-card p {
  font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 500;
}
.feat-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px;
}
.feat-tags span {
  font-size: 11px; font-weight: 700; color: var(--blue);
  background: #EEF5FF; border-radius: 99px; padding: 3px 10px;
}
.feat-badge {
  font-size: 10px; font-weight: 700; background: rgba(255,255,255,.15);
  color: #153bff;
  border-radius: 99px; padding: 2px 8px;
  vertical-align: middle; margin-left: 6px;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.how-section { padding: 96px 0; background: var(--bg2); }

.how-grid {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  gap: 0; align-items: start; margin-bottom: 48px;
}

/* Column card */
.how-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,28,62,.06);
}

/* Column header */
.how-col-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px 20px;
  border-bottom: 1px solid var(--border2);
}
.how-col-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-col-icon--bad  { background: #fff1f1; color: #e53e3e; }
.how-col-icon--good { background: #f0fdf4; color: #16a34a; }

.how-col-label {
  font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.2;
}
.how-col-sub {
  font-size: 12px; font-weight: 600; color: var(--muted2); margin-top: 2px;
}

/* List */
.how-list { list-style: none; display: flex; flex-direction: column; padding: 8px 0; }
.how-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5;
  border-bottom: 1px solid var(--border2);
  transition: background .15s;
}
.how-list li:last-child { border-bottom: none; }
.how-list li:hover { background: #f9fafb; }

/* Icon circles */
.how-icon-wrap {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.how-icon-wrap--bad  { background: #fff1f1; color: #e53e3e; }
.how-icon-wrap--good { background: #f0fdf4; color: #16a34a; }

/* Divider column */
.how-divider-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; padding-top: 80px;
}
.how-divider-line {
  width: 1px; height: 60px; background: var(--border);
}
.how-divider-arrow {
  width: 32px; height: 32px; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(29,107,255,.15));
}

.how-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; border-top: 1px solid var(--border); padding-top: 40px;
}
.how-stat {
  text-align: center; padding: 24px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.how-stat strong {
  display: block; font-size: 26px; font-weight: 900;
  color: var(--navy); letter-spacing: -.02em; margin-bottom: 4px;
}
.how-stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════ */
.pricing-section { padding: 96px 0; }

.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.billing-toggle {
  display: flex; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 12px; padding: 4px; gap: 2px;
}
.bill-btn {
  padding: 9px 20px; border-radius: 9px; font-size: 14px;
  font-weight: 700; border: none; background: transparent;
  color: var(--muted); transition: all .18s; display: flex;
  align-items: center; gap: 8px;
}
.bill-btn.is-active {
  background: #fff; color: var(--navy);
  box-shadow: 0 2px 8px rgba(13,28,62,.1);
}
.bill-note {
  font-size: 11px; font-weight: 700; background: #dcfce7;
  color: #15803d; border-radius: 99px; padding: 2px 8px;
}

.price-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; align-items: stretch; margin-bottom: 32px;
}

.price-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s; position: relative;
}
.price-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow2);
}

.price-card-pro {
  background: linear-gradient(180deg, #0d2446, #0a1a33);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.price-card-pro:hover { box-shadow: 0 28px 72px rgba(0,0,0,.35); }

.plan-popular-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 99px;
  box-shadow: 0 4px 12px rgba(29,107,255,.3); z-index: 2;
}

.plan-img { width: 100%; line-height: 0; border-bottom: 1px solid var(--border2); }
.price-card-pro .plan-img { border-bottom-color: rgba(255,255,255,.07); }
.plan-img svg { width: 100%; display: block; height: auto; }

.plan-body {
  flex: 1; display: flex; flex-direction: column; padding: 22px 22px 0;
}
.plan-tier {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted2); margin-bottom: 6px;
}
.price-card-pro .plan-tier { color: rgba(255,255,255,.5); }

.plan-price {
  display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px;
}
.plan-amt {
  font-size: 36px; font-weight: 900; color: var(--navy);
  letter-spacing: -.03em; line-height: 1;
}
.price-card-pro .plan-amt { color: #fff; }
.plan-per { font-size: 14px; font-weight: 700; color: var(--muted2); }
.price-card-pro .plan-per { color: rgba(255,255,255,.5); }

.plan-tagline {
  font-size: 13px; color: var(--muted); font-weight: 600;
  line-height: 1.5; margin-bottom: 18px;
}
.price-card-pro .plan-tagline { color: rgba(255,255,255,.55); }

.plan-list {
  list-style: none; margin-bottom: 16px;
  display: flex; flex-direction: column;
}
.plan-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-top: 1px solid var(--border2);
  font-size: 13px; font-weight: 600; color: var(--text);
}
.plan-list li:first-child { border-top: none; }
.plan-list li::before {
  content: '✓'; font-weight: 900; font-size: 11px;
  color: var(--blue); flex-shrink: 0;
}
.price-card-pro .plan-list li {
  border-top-color: rgba(255,255,255,.08); color: rgba(255,255,255,.88);
}
.price-card-pro .plan-list li::before { color: #7ab4ff; }

.custom-controls {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; margin-bottom: 14px;
}
.ctrl-field label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); margin-bottom: 4px;
}
.ctrl-field input {
  width: 100%; padding: 8px 10px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: inherit; color: var(--navy);
  background: var(--bg2);
}

.plan-cta {
  margin-top: auto; padding: 16px 0 20px;
  border-top: 1px solid var(--border2);
}
.price-card-pro .plan-cta { border-top-color: rgba(255,255,255,.1); }

.plan-billed {
  text-align: center; font-size: 12px; font-weight: 700;
  color: var(--muted2); margin-top: 10px;
}
.price-card-pro .plan-billed { color: rgba(255,255,255,.45); }

.compare-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--border2);
}
.compare-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--muted);
}

/* Plan section labels */
.plan-section-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted2); margin: 14px 0 6px;
}
.price-card-pro .plan-section-lbl { color: rgba(255,255,255,.4); }
.plan-section-lbl--new { color: #534AB7; }
.price-card-pro .plan-section-lbl--new { color: #a9d3ff; }
.plan-list--new li::before { color: #7F77DD !important; }
.price-card-pro .plan-list--new li::before { color: #a9d3ff !important; }

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-section { padding: 96px 0; background: var(--bg2); }
.faq { max-width: 720px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  padding: 20px 0; font-size: 15px; font-weight: 700;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--muted2); flex-shrink: 0; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 20px; font-size: 14px; color: var(--muted);
  font-weight: 500; line-height: 1.7;
}

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-left .eyebrow { margin-bottom: 8px; }
.contact-desc {
  font-size: 15px; color: var(--muted); font-weight: 500;
  line-height: 1.7; margin-bottom: 28px;
}
.contact-meta { display: flex; flex-direction: column; gap: 12px; }
.contact-meta-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.contact-meta-item svg { flex-shrink: 0; margin-top: 1px; }

.contact-form {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.field input, .field textarea, .field select {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--bg);
  transition: border-color .15s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue);
}
.field input[aria-invalid="true"] { border-color: #ef4444; }
.field textarea { resize: vertical; min-height: 100px; }
.field-help { font-size: 12px; color: var(--muted2); font-weight: 500; }
.opt { color: var(--muted2); font-weight: 600; }

.field.checkbox {
  flex-direction: row; align-items: flex-start; gap: 10px;
}
.field.checkbox input { width: auto; margin-top: 2px; flex-shrink: 0; }
.field.checkbox label { font-size: 13px; font-weight: 600; color: var(--muted); }
.field.checkbox a { color: var(--blue); }

.form-note { font-size: 13px; font-weight: 600; color: var(--muted); min-height: 18px; }
.hp { display: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-top {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-brand-wrap { display: flex; align-items: center; gap: 10px; }
.footer-brand-wrap .brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0bd2ff);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-wrap .brand-name { color: #fff; font-size: 17px; font-weight: 800; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center; padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11,23,48,.72); backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 24px 18px; border-bottom: 1px solid var(--border2);
  position: sticky; top: 0; background: #fff; z-index: 10;
}
.modal-head h2 {
  font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.modal-steps {
  display: flex; align-items: center; gap: 8px;
}
.modal-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--muted2);
}
.modal-step.is-active { color: var(--blue); }
.modal-step.is-done { color: #16a34a; }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.modal-step.is-active .step-num {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.modal-step.is-done .step-num {
  background: #f0fdf4; color: #16a34a; border-color: #bbf7d0;
}
.modal-step-line { width: 24px; height: 1.5px; background: var(--border); }
.step-lbl { font-size: 12px; }
.icon-btn {
  background: none; border: none; font-size: 24px;
  color: var(--muted2); padding: 4px; line-height: 1;
  border-radius: 8px; transition: color .15s;
}
.icon-btn:hover { color: var(--text); }

.modal-step-panel { padding: 22px 24px; }
.modal-step-intro { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }

.plan-confirm-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-bottom: 18px;
}
.plan-confirm-card {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 14px; cursor: pointer; transition: border-color .15s;
}
.plan-confirm-card:hover { border-color: var(--blue); }
.plan-confirm-card.is-selected { border-color: var(--blue); background: #f0f6ff; }
.pcc-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pcc-price { font-size: 14px; font-weight: 900; color: var(--blue); margin-bottom: 8px; }
.pcc-features { list-style: none; font-size: 11px; color: var(--muted); display: flex; flex-direction: column; gap: 2px; }
.pcc-features li::before { content: '· '; }

/* Promo code */
.promo-code-row { margin: 0 0 12px; }
.promo-code-field {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden;
}
.promo-code-field input {
  flex: 1; padding: 10px 14px; border: none; outline: none;
  font-size: 14px; font-family: inherit; letter-spacing: .06em;
  background: #fff; min-width: 0;
}
.promo-code-field:focus-within { border-color: var(--blue); }
.promo-code-field .btn-sm {
  border-radius: 0; border: none; border-left: 1.5px solid var(--border);
  padding: 10px 18px; font-size: 13px; flex-shrink: 0;
}
.promo-note { margin-top: 6px; font-size: 13px; min-height: 18px; font-weight: 600; }
.promo-summary {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 12px 16px; margin: 8px 0;
}
.promo-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 3px 0; color: var(--text);
}
.promo-total-row {
  border-top: 1px solid #bbf7d0; margin-top: 6px; padding-top: 8px; font-size: 15px;
}

.modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
  flex-wrap: wrap; margin-top: 18px;
}
.back-btn {
  background: none; border: none; font-size: 13px; font-weight: 700;
  color: var(--muted); padding: 0 0 14px; cursor: pointer;
}
.back-btn:hover { color: var(--blue); }
.modal-form { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 14px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 0; }
  .how-divider-col { display: none; }
  .how-col { border-radius: 0; border-left: none; border-right: none; }
  .how-col-before { border-radius: 16px 16px 0 0; border: 1px solid var(--border); }
  .how-col-after  { border-radius: 0 0 16px 16px; border: 1px solid var(--border); border-top: none; }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .btn-login { display: none; }
  .btn-header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 60px; }

  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .proof-divider { display: none; }
  .proof-item { padding: 16px 12px; }

  .price-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-stats { grid-template-columns: 1fr; }
  .plan-confirm-cards { grid-template-columns: 1fr; }
  .compare-strip { gap: 16px; }
}

@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .proof-divider { display: none; }
  .proof-item { padding: 14px 8px; }
  .proof-item strong { font-size: 16px; }
  .proof-item span { font-size: 10px; }

  .custom-controls { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }

  .how-list li { padding: 11px 16px; font-size: 13px; }
  .how-col-head { padding: 18px 16px; }
}
