:root {
  --bg: #0A0A0F;
  --bg-2: #111118;
  --bg-card: #16161E;
  --fg: #F0EDE6;
  --fg-muted: #8A8693;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 230, 0.07);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* STICKY NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: rgba(240,237,230,0.05); }
.nav-link.active { color: var(--fg); font-weight: 600; }
.nav-actions { display: flex; align-items: center; flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover { color: var(--fg); background: rgba(240,237,230,0.05); }
.nav-mobile-link.active { color: var(--fg); font-weight: 600; }
.nav-mobile-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  position: relative;
  padding: 96px 48px 80px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.hero-left { flex: 1; max-width: 600px; }
.hero-right { flex-shrink: 0; width: 500px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CTA Buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: fit-content;
}
.proof-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
}
.proof-text {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

/* DEMO PANEL */
.demo-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.08);
}
.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.demo-dot.red { background: #FF5F57; }
.demo-dot.yellow { background: #FFBD2E; }
.demo-dot.green { background: #28CA41; }
.demo-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
}
.demo-body { padding: 20px; }

/* Step indicator pills */
.demo-steps-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: all 0.3s ease;
}
.step-pill.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.pill-icon { font-size: 13px; }

/* Demo cards */
.demo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.demo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.demo-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.demo-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.demo-badge.live { background: rgba(40,202,65,0.15); color: #28CA41; }
.demo-badge.gpt { background: var(--accent-dim); color: var(--accent); }
.demo-badge.schedule { background: rgba(96,165,250,0.12); color: #60A5FA; }

/* Prospect list */
.demo-list { padding: 4px 0; }
.demo-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: background 0.2s;
}
.demo-list-item:hover { background: var(--bg-card); }
.demo-list-item.found {
  animation: slideIn 0.5s ease forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.item-info { flex: 1; }
.item-name { display: block; font-size: 13px; font-weight: 600; color: var(--fg); }
.item-meta { display: block; font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.score-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.score-badge.high { background: rgba(40,202,65,0.15); color: #28CA41; }
.score-badge.med { background: var(--accent-dim); color: var(--accent); }

/* Progress bar */
.demo-progress-bar { }
.progress-label { font-size: 11px; color: var(--fg-muted); margin-bottom: 6px; }
.progress-track {
  height: 3px;
  background: var(--bg);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), #F5C842);
  border-radius: 2px;
  animation: progressLoad 2s ease-out forwards;
}
@keyframes progressLoad {
  from { width: 0% !important; }
  to { width: 72% !important; }
}

/* Email preview */
.demo-email-preview { padding: 14px; }
.email-to { font-size: 12px; color: var(--fg-muted); margin-bottom: 4px; }
.email-subject { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.email-body-snippet p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 6px; }
.email-context-hint {
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

/* Sequence timeline */
.demo-sequence-timeline { padding: 14px; }
.seq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}
.seq-item:not(.last)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: -8px;
  width: 1px;
  background: var(--border);
}
.seq-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.seq-item.sent .seq-dot { background: #28CA41; box-shadow: 0 0 8px rgba(40,202,65,0.4); }
.seq-item.queued .seq-dot { background: var(--bg); border: 2px solid var(--border); }
.seq-label { font-size: 12px; font-weight: 600; color: var(--fg); }
.seq-status { font-size: 11px; margin-top: 2px; }
.seq-item.sent .seq-status { color: #28CA41; }
.seq-item.queued .seq-status { color: var(--fg-muted); }

/* Reply indicator */
.demo-reply-indicator {
  margin-top: 10px;
}
.reply-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #28CA41;
  background: rgba(40,202,65,0.08);
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(40,202,65,0.15);
}
.reply-icon { font-size: 14px; }

/* Step cycling animation */
.demo-step-content {
  display: none;
  animation: fadeSlide 0.4s ease;
}
.demo-step-content.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Auto-cycle: rotate active step every 3s */
.demo-body {
  position: relative;
}
.demo-step-content {
  animation: stepIn 0.4s ease;
}
@keyframes stepIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-right: 48px;
  opacity: 0.5;
  pointer-events: none;
}
.grid-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 60%, var(--accent) 100%);
}
.grid-line:nth-child(2) { opacity: 0.6; }
.grid-line:nth-child(3) { opacity: 0.3; }

/* SECTION LABELS */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
}

/* WORKFLOW */
.workflow {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.workflow-header { margin-bottom: 64px; }
.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 60px 0 0;
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.features-header { margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  padding: 36px 32px;
  background: var(--bg-card);
  transition: background 0.2s;
}
.feature-card:hover { background: #1A1A22; }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-header { margin-bottom: 64px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.outcome {
  padding: 48px 36px;
  background: var(--bg-card);
}
.outcome-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 48px 96px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg-muted);
  letter-spacing: -0.5px;
}
.closing-statement strong {
  color: var(--accent);
  font-weight: 700;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.pricing-header { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
}
.plan {
  padding: 40px 36px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.plan-popular {
  border: 1px solid var(--accent);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 24px;
  vertical-align: super;
  letter-spacing: 0;
  margin-right: 2px;
}
.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  margin-top: 8px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}
.plan-cta:hover { opacity: 0.85; }
.plan-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s;
  margin-top: auto;
}
.plan-cta-outline:hover { border-color: var(--fg-muted); }

/* PRICING TESTIMONIALS */
.pricing-testimonials { margin-bottom: 64px; }
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-card {
  padding: 32px 28px;
  background: var(--bg-card);
}
.testimonial-quote {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-attr {
  font-size: 12px;
  color: var(--fg-muted);
}
.testimonial-attr strong { color: var(--fg); }

/* ROI BLOCK */
.roi-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 40px 36px;
  margin-bottom: 72px;
}
.roi-header { margin-bottom: 28px; }
.roi-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.roi-table { width: 100%; }
.roi-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.roi-row-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 16px;
}
.roi-row-head > div:not(:first-child) { text-align: center; }
.roi-label { font-size: 14px; color: var(--fg-muted); }
.roi-val { font-size: 14px; font-weight: 600; text-align: center; }
.roi-val-neg { color: var(--fg-muted); }
.roi-val-pos { color: var(--accent); }
.roi-result {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 2px solid var(--accent);
  border-bottom: none;
}
.roi-result .roi-label { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--fg); }
.roi-result .roi-val-pos { font-size: 16px; }

/* FAQ */
.faq { padding: 0 48px 96px; border-top: 1px solid var(--border); }
.faq-header { margin-bottom: 48px; padding-top: 64px; }
.faq-list { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 48px 40px;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 12px;
  color: #5a5768;
}

/* Nav column */
.footer-nav-col { min-width: 120px; }
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 2px 0;
}
.footer-link:hover { color: var(--fg); }
.footer-link.active { color: var(--fg); }

/* Social + legal column */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--accent); }
.footer-social-link svg { flex-shrink: 0; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-legal-link {
  font-size: 12px;
  color: #5a5768;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--fg-muted); }
.footer-legal-sep { font-size: 12px; color: #3a3747; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-footer { padding: 40px 24px 32px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-social { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* SOCIAL PROOF */
.social-proof {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}
.logo-strip-label {
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
}
.logo-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.logo-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a5768;
  letter-spacing: -0.3px;
  padding: 0 20px;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--fg-muted); }
.logo-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

/* Metrics */
.proof-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.proof-metric {
  text-align: center;
  padding: 0 56px;
}
.proof-metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.proof-metric-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 200px;
}
.proof-metric-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* Testimonials — lighter dark bg */
.testimonials {
  padding: 64px 0;
  background: #1a1a2e;
  margin: 0 -48px;
  padding-left: 48px;
  padding-right: 48px;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials .testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,237,230,0.07);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.testimonials .testimonial-card {
  padding: 36px 32px;
  background: #1e1e30;
}
.testimonials .testimonial-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonials .testimonial-attr {
  font-size: 12px;
  color: var(--fg-muted);
}
.testimonials .testimonial-attr strong { color: var(--fg); }

/* Press strip */
.press-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 48px;
}
.press-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.press-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.press-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5a5768;
  padding: 0 12px;
  transition: color 0.2s;
}
.press-item:hover { color: var(--fg-muted); }
.press-sep {
  font-size: 12px;
  color: #3a3747;
}

/* RESPONSIVE */
/* STICKY MOBILE CTA */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sticky-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  flex: 1;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
body { padding-bottom: 68px; }

@media (max-width: 900px) {
  .social-proof { padding: 48px 24px; }
  .logo-strip { flex-direction: column; gap: 16px; }
  .logo-sep { display: none; }
  .logo-item { padding: 4px 12px; }
  .proof-metrics { flex-direction: column; gap: 32px; }
  .proof-metric { padding: 0; }
  .proof-metric-divider { width: 48px; height: 1px; }
  .testimonials { margin: 0 -24px; padding: 48px 24px; }
  .testimonials .testimonial-strip { grid-template-columns: 1fr; }
  .press-strip { flex-direction: column; gap: 12px; }
  .nav-inner { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-grid-accent { display: none; }
  .workflow { padding: 64px 24px; }
  .workflow-steps { flex-direction: column; }
  .step-connector { width: 24px; height: 1px; margin: 0; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px 64px; }
    .pricing { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-testimonials { margin-bottom: 48px; }
  .testimonial-strip { grid-template-columns: 1fr; }
  .roi-block { padding: 28px 24px; }
  .roi-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .roi-row-head > div:not(:first-child) { font-size: 10px; }
  .faq { padding: 0 24px 80px; }
  .faq-header { padding-top: 48px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .sticky-cta-bar { display: flex; }
}

@media (max-width: 600px) {
  .hero-headline { letter-spacing: -1px; }
  .nav-tagline { display: none; }
}