/* ─── BOLT Marketing Site — Global Styles ───────────────────────── */

:root {
  /* Brand */
  --brand-muted:  #D07A57;
  --brand-action: #B8613E;
  --brand-dark:   #9E4F31;

  /* Sage */
  --sage:         #6B8F71;
  --sage-hover:   #5F8265;
  --sage-soft:    #EAF1EB;

  /* Text */
  --text-heading: #3C3C3C;
  --text-primary: #3C3C3C;
  --text-medium:  #475569;
  --text-label:   #64748B;
  --text-muted:   #94A3B8;

  /* Surface */
  --surface-app:      #F8F6F4;
  --surface-card:     #FFFFFF;
  --surface-selected: #F7ECE7;
  --surface-tint:     #F4E3DC;

  /* Border */
  --border-warm:   #E7DDD7;
  --border-default:#E2E8F0;
  --border-light:  #F1F5F9;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(60, 60, 60, 0.05);
  --shadow-md: 0 4px 12px rgba(60, 60, 60, 0.08);
  --shadow-lg: 0 12px 40px rgba(60, 60, 60, 0.10);
  --shadow-xl: 0 24px 60px rgba(158, 79, 49, 0.18);

  /* Type */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Layout */
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--surface-app);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }

img { max-width: 100%; display: block; }
a { color: var(--brand-action); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 244, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-warm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}
.nav-brand img {
  width: auto;
  height: 40px;
  border-radius: 0;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.footer-brand .nav-brand img { height: 48px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-heading); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-warm);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  color: var(--text-heading);
  cursor: pointer;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-action) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(158, 79, 49, 0.25);
}
.btn-primary:hover { color: #fff; box-shadow: 0 10px 24px rgba(158, 79, 49, 0.32); }

.btn-secondary {
  background: var(--surface-card);
  color: var(--text-heading);
  border-color: var(--border-warm);
}
.btn-secondary:hover { background: var(--surface-selected); border-color: var(--brand-muted); }

.btn-ghost {
  background: transparent;
  color: var(--text-heading);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--brand-dark); }

.btn-sage {
  background: var(--sage);
  color: #fff;
}
.btn-sage:hover { background: var(--sage-hover); color: #fff; }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ── Sections ──────────────────────────────────────────────────── */
section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-action);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-selected);
  border: 1px solid var(--border-warm);
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-medium);
  max-width: 680px;
  line-height: 1.6;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .lead { margin: 12px auto 0; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 680px;
  height: 680px;
  background: radial-gradient(closest-side, rgba(208, 122, 87, 0.22), rgba(208, 122, 87, 0));
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(107, 143, 113, 0.18), rgba(107, 143, 113, 0));
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--brand-muted), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin: 0 auto 36px; }
.hero-ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-meta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-label);
  box-shadow: var(--shadow-sm);
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.18);
}

/* ── App Preview (fake dashboard) ──────────────────────────────── */
.app-preview {
  margin: 64px auto 0;
  max-width: 1080px;
  border-radius: var(--r-xl);
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}
.app-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 236, 231, 0.4), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-warm);
  background: var(--surface-app);
}
.app-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.app-bar .d1 { background: #FF5F57; }
.app-bar .d2 { background: #FEBC2E; }
.app-bar .d3 { background: #28C840; }
.app-bar .title {
  margin-left: 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--text-label);
}
.app-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 440px;
}
.app-side {
  background: var(--surface-card);
  border-right: 1px solid var(--border-warm);
  padding: 20px 14px;
}
.app-side .brandrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  color: var(--text-heading);
  margin-bottom: 22px;
}
.app-side .brandrow .logo {
  width: 22px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, var(--brand-muted), var(--brand-dark));
}
.app-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.app-nav li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-medium);
  display: flex; align-items: center; gap: 8px;
}
.app-nav li.active { background: var(--surface-selected); color: var(--brand-dark); font-weight: 600; }
.app-nav li .sq { width: 14px; height: 14px; border-radius: 3px; background: var(--border-default); }
.app-nav li.active .sq { background: var(--brand-muted); }

.app-main { padding: 22px; }
.app-main h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-label);
  margin-bottom: 14px;
}
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.kpi {
  padding: 14px;
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  background: var(--surface-card);
}
.kpi .label { font-size: 11px; color: var(--text-label); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi .value { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--text-heading); margin-top: 4px; }
.kpi .delta { font-size: 11px; margin-top: 4px; color: var(--sage); font-weight: 600; }
.kpi .delta.down { color: #DC2626; }

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.stage {
  background: var(--surface-app);
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  padding: 12px;
}
.stage .h {
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.stage .h .d { width: 8px; height: 8px; border-radius: 50%; }
.stage .card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 12px;
}
.stage .card .n { color: var(--text-heading); font-weight: 600; }
.stage .card .s { color: var(--text-label); font-size: 11px; margin-top: 2px; }

.stage.prequal .h .d { background: #F97316; }
.stage.processing .h .d { background: #EAB308; }
.stage.underwriting .h .d { background: #22C55E; }
.stage.closing .h .d { background: #3B82F6; }
.stage.funded .h .d { background: #16A34A; }

/* ── Feature grid ──────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-muted);
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--surface-selected);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature p { color: var(--text-medium); font-size: 15px; }

/* Feature variants for color pop */
.feature.sage .icon { background: var(--sage-soft); color: var(--sage); }
.feature.blue .icon { background: #EFF6FF; color: #1D4ED8; }
.feature.amber .icon { background: #FFF7ED; color: #C2410C; }
.feature.purple .icon { background: #F5F3FF; color: #6D28D9; }
.feature.teal .icon { background: #E0F7FA; color: #0E7490; }

/* ── Split (image + text) ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split ul { list-style: none; margin-top: 20px; }
.split ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 15px;
}
.split ul li .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mock {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-warm);
  background: var(--surface-card);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.mock h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 12px;
}
.row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.row:last-child { border-bottom: none; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-muted), var(--brand-dark));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.avatar.sage { background: linear-gradient(135deg, #8BAA8E, var(--sage-hover)); }
.avatar.blue { background: linear-gradient(135deg, #60A5FA, #1D4ED8); }
.avatar.purple { background: linear-gradient(135deg, #A78BFA, #6D28D9); }
.row .name { flex: 1; font-weight: 600; color: var(--text-heading); }
.row .tag {
  font-size: 11px; padding: 3px 8px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.04em;
}
.tag.green { background: #F0FDF4; color: #15803D; }
.tag.amber { background: #FEFCE8; color: #A16207; }
.tag.orange { background: var(--surface-selected); color: var(--brand-action); }
.tag.blue { background: #EFF6FF; color: #1D4ED8; }

/* Messages mock */
.msg-mock { background: var(--surface-app); border-radius: var(--r-lg); padding: 18px; }
.bubble {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 16px;
  margin-bottom: 6px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}
.bubble.them { background: #fff; color: var(--text-heading); border: 1px solid var(--border-warm); border-bottom-left-radius: 6px; }
.bubble.me { background: linear-gradient(135deg, var(--brand-muted), var(--brand-dark)); color: #fff; border-bottom-right-radius: 6px; margin-left: auto; display: block; text-align: left; width: fit-content; }
.msg-mock .meta { font-size: 11px; color: var(--text-label); margin: 4px 2px 10px; font-family: var(--font-heading); }

/* ── Stats row ─────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .stat .n {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}
.stats .stat .l {
  margin-top: 8px;
  color: var(--text-label);
  font-size: 14px;
}

/* ── Pricing ───────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.plan.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--brand-action), var(--brand-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.plan .desc { color: var(--text-label); font-size: 14px; margin-bottom: 18px; min-height: 42px; }
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.plan .price .amt {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}
.plan .price .per { color: var(--text-label); font-size: 14px; }
.plan ul { list-style: none; margin-bottom: 28px; flex: 1; }
.plan ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 14px;
  border-top: 1px solid var(--border-light);
}
.plan ul li:first-child { border-top: none; }
.plan ul li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-soft); color: var(--sage);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--brand-muted); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand-action);
  transition: transform 0.15s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 12px; color: var(--text-medium); font-size: 15px; }

/* ── CTA band ──────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #3C3C3C 0%, #2A2A2A 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(208, 122, 87, 0.35), transparent);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(107, 143, 113, 0.28), transparent);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin: 12px auto 28px; max-width: 560px; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--border-warm);
  margin-top: 80px;
  background: var(--surface-card);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-label);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul a {
  color: var(--text-medium);
  font-size: 14px;
}
.footer-grid ul a:hover { color: var(--brand-dark); }
.footer-brand { max-width: 280px; color: var(--text-label); font-size: 14px; }
.footer-brand .nav-brand { margin-bottom: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--text-label);
  font-size: 13px;
}
.footer-bottom .soc { display: flex; gap: 16px; }
.footer-bottom .soc a { color: var(--text-label); }
.footer-bottom .soc a:hover { color: var(--brand-dark); }

/* ── Page header (sub-pages) ──────────────────────────────────── */
.page-head {
  padding: 96px 0 48px;
  text-align: center;
}
.page-head h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }

/* ── Contact form ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.form {
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 6px;
  font-weight: 700;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--r-sm);
  background: #FAFAFA;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-heading);
  outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-muted);
  box-shadow: 0 0 0 3px rgba(208, 122, 87, 0.2);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.contact-info .info-card {
  background: var(--surface-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-info .info-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-label);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-info .info-card p { color: var(--text-heading); font-size: 16px; font-weight: 500; }
.contact-info .info-card small { color: var(--text-label); display: block; margin-top: 2px; font-size: 13px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .features, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .plan.featured { transform: none; }
}
@media (max-width: 680px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 48px; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--surface-card);
    border-bottom: 1px solid var(--border-warm);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 10px;
  }
  .features, .pricing-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
