/* ============================================================
   LeadGate Design System
   Philosophy: Stripe meets local business.
   Navy precision, clean whites, ember accent. No gradients.
   ============================================================ */

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #0f1923;
  line-height: 1.6;
}

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design tokens ───────────────────────────────────────── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #122040;
  --navy-light:  #1e3a5f;
  --navy-muted:  #2d4d70;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --border:      #e4eaf2;
  --border-dark: #cdd6e3;

  --ember:       #e85d04;
  --ember-dark:  #c44d00;
  --ember-light: #ff7a2e;
  --ember-bg:    #fff4ed;

  --text-primary:   #0f1923;
  --text-secondary: #4a6080;
  --text-muted:     #7a93ad;
  --text-on-dark:   #e8eef5;
  --text-on-dark-muted: rgba(232, 238, 245, 0.6);

  --green:  #16a34a;
  --green-bg: #f0fdf4;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.05);
  --shadow-md:  0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.06);
  --shadow-lg:  0 12px 40px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);
  --shadow-card:0 2px 8px rgba(10,22,40,0.07), 0 0 0 1px rgba(10,22,40,0.05);

  --max-w: 1120px;
  --nav-h: 64px;
}

/* ── Typography scale ────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-primary); }

h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
h4 { font-size: 16px; letter-spacing: -0.01em; }

p { color: var(--text-secondary); line-height: 1.7; }

a { color: var(--ember); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 600; color: var(--text-primary); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; opacity: 0.9; }
.nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--ember);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-back:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }

@media (max-width: 768px) { .nav-links { display: none; } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232,93,4,0.35);
}
.btn-primary:hover { background: var(--ember-dark); box-shadow: 0 4px 14px rgba(232,93,4,0.4); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover { border-color: var(--navy-muted); background: var(--off-white); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--off-white); color: var(--text-primary); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 11px; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 7px; }

/* ── Hero (dark) ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,93,4,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(30,58,95,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.3);
  color: var(--ember-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--ember-light); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note::before { content: '✓'; color: rgba(255,255,255,0.4); }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-bar-inner {
  display: flex;
  divide-x: var(--border);
}
.stat-item {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--ember); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; line-height: 1.4; }
@media (max-width: 600px) {
  .stats-bar-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Section headers ─────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.section-head { margin-bottom: 16px; }
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}
.section-sub.centered { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }
.text-center h2, .text-center h3 { margin-left: auto; margin-right: auto; }
.text-center .section-sub { margin: 0 auto; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
  transform: translateY(-2px);
}

/* Industry selector grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-decoration: none;
  transition: all 0.18s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.industry-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}
.industry-card:hover::before { transform: scaleX(1); }

.industry-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.industry-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.industry-fee {
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
}
.industry-arrow {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.15s;
}
.industry-card:hover .industry-arrow { transform: translateX(3px); color: var(--ember); }

/* ── How it works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 1px;
  background: var(--border-dark);
  z-index: 0;
}
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } .steps-grid::before { display: none; } }

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  max-width: 760px;
  margin: 48px auto 0;
  position: relative;
  overflow: hidden;
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(232,93,4,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pricing-main {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
@media (max-width: 580px) { .pricing-features { grid-template-columns: 1fr; } }
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pricing-waive {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--ember); }
.faq-q .faq-icon {
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-style: normal;
}
.faq-item.open .faq-q { color: var(--ember); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--ember); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}
.faq-item.open .faq-a { display: block; }

/* ── Demo section ────────────────────────────────────────── */
.demo-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .demo-inner { grid-template-columns: 1fr; gap: 40px; } }

.demo-copy h2 { margin-bottom: 16px; }
.demo-copy p  { margin-bottom: 24px; }
.demo-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.demo-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.demo-step-icon {
  width: 32px; height: 32px;
  background: var(--ember-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.demo-step-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
.demo-step-text p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.demo-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-phone {
  width: 300px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(10,22,40,0.08);
  overflow: hidden;
}
.demo-phone-bar {
  background: var(--navy);
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
}
.demo-phone-avatar { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.demo-phone-info h5 { color: #fff; font-size: 12px; font-weight: 700; margin: 0; }
.demo-phone-info p  { color: rgba(255,255,255,0.55); font-size: 10px; margin: 0; display: flex; align-items: center; gap: 4px; }
.demo-phone-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }
.demo-phone-body { padding: 16px; min-height: 240px; display: flex; flex-direction: column; gap: 10px; }
.demo-chat-bubble { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: 12px; line-height: 1.5; }
.demo-chat-bubble.bot { background: #f2f5fa; color: #1a2a3a; border-bottom-left-radius: 3px; align-self: flex-start; }
.demo-chat-bubble.user { background: var(--navy); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
.demo-phone-cta { padding: 14px 16px; border-top: 1px solid var(--border); text-align: center; }
.demo-phone-cta-btn {
  width: 100%;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}
.demo-phone-cta-btn:hover { opacity: 0.9; }

/* ── Vertical stat cards ─────────────────────────────────── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) { .stat-cards { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.stat-card-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-num span { color: var(--ember); }
.stat-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.stat-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 560px; margin: 0 auto 16px; }
.cta-band p  { color: var(--text-on-dark-muted); font-size: 17px; max-width: 440px; margin: 0 auto 36px; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #07101c;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Utility ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.bg-off   { background: var(--off-white); }
.bg-navy  { background: var(--navy); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.chip.ember { background: var(--ember-bg); border-color: rgba(232,93,4,0.2); color: var(--ember); }
.chip.green { background: var(--green-bg); border-color: rgba(22,163,74,0.2); color: var(--green); }

.highlight { color: var(--ember); }

/* Vertical hero overrides */
.hero-vertical .hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Pain point list */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.pain-list li::before {
  content: '→';
  color: var(--ember);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Trust logos placeholder */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-sep { color: var(--border-dark); }

/* Responsive typography */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-amount { font-size: 44px; }
}
