@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #B94A48;
  --brand-dark: #9E3D3C;
  --brand-light: #F9EDED;
  --surface: #FFFFFF;
  --surface-cream: #FAF7F2;
  --surface-panel: #F1EEE8;
  --ink: #2F2F2F;
  --ink-muted: #6F6A64;
  --ink-faint: #A09A93;
  --line: #E0D9D0;
  --line-light: #EDE8E0;
  --success: #4F8A67;
  --success-bg: #ECFDF5;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 1px 2px rgba(47, 47, 47, 0.04), 0 12px 32px -16px rgba(185, 74, 72, 0.22);
  --shadow-card: 0 1px 2px rgba(47, 47, 47, 0.05), 0 4px 16px -6px rgba(47, 47, 47, 0.08);
  --shadow-lift: 0 20px 48px -20px rgba(47, 47, 47, 0.22);
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

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

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.27s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.33s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.39s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.51s; }
.reveal-stagger.in-view > *:nth-child(10) { transition-delay: 0.57s; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled { border-color: var(--line-light); box-shadow: 0 1px 0 rgba(47,47,47,0.02), 0 8px 24px -18px rgba(47,47,47,0.25); }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark img { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 8px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-lift); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--line-light);
  background: #fff;
}
.mobile-panel a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.98rem;
}
.mobile-panel a:last-child { border-bottom: none; }
.mobile-panel.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(185, 74, 72, 0.12), transparent 60%),
    radial-gradient(700px 380px at 5% 10%, rgba(220, 164, 163, 0.20), transparent 55%),
    var(--surface-cream);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border: 1px solid #ECD3D2;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--brand);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 20px;
}
h1 .accent {
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero p.lede {
  font-size: 1.18rem;
  color: var(--ink-muted);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink-faint); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 0.88rem;
}
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ---------- Hero mockup card ---------- */
.mockup-wrap { position: relative; animation: float-y 6s ease-in-out infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-light);
  background: var(--surface-panel);
}
.mockup-bar span { width: 9px; height: 9px; border-radius: 999px; background: var(--line); }
.mockup-body { padding: 22px; display: grid; gap: 16px; }
.mockup-row { display: flex; gap: 14px; }
.mockup-stat {
  flex: 1;
  background: var(--surface-cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mockup-stat .num { font-size: 1.5rem; font-weight: 700; color: var(--brand-dark); }
.mockup-stat .lbl { font-size: 0.78rem; color: var(--ink-muted); margin-top: 2px; }
.mockup-list { border: 1px solid var(--line-light); border-radius: var(--radius-sm); overflow: hidden; }
.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.86rem;
}
.mockup-list-item:last-child { border-bottom: none; }
.mockup-avatar { width: 28px; height: 28px; border-radius: 999px; background: var(--brand-light); flex-shrink: 0; }
.mockup-bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 64px; }
.mockup-bar-chart i {
  flex: 1;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  transform-origin: bottom;
  animation: bar-grow 0.9s var(--ease) backwards;
}
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.pill-approved {
  margin-left: auto;
  background: var(--success-bg);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  box-shadow: var(--shadow-lift);
  font-size: 0.8rem;
  font-weight: 600;
  animation: float-y 5s ease-in-out infinite;
}
.float-chip.chip-1 { top: -18px; right: -18px; animation-delay: 0.4s; }
.float-chip.chip-2 { bottom: 26px; left: -34px; animation-delay: 1.1s; }
.float-chip .chip-icon {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center;
}
.float-chip .chip-icon svg { width: 13px; height: 13px; }

/* ---------- Section shared ---------- */
section { padding: 108px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin: 0 0 40px; }
.section-head .eyebrow { margin-bottom: 16px; }
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-head p { color: var(--ink-muted); font-size: 1.08rem; margin: 0; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; color: #fff; }
.stat-num {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #F2CFCE;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.88rem; color: #B7B2AC; margin-top: 6px; }

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--surface-cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.08rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature-card p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; }

/* ---------- Feature deep-dive (zig-zag) ---------- */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.deep-dive + .deep-dive { margin-top: 120px; }
.deep-dive.reverse .dd-copy { order: 2; }
.deep-dive.reverse .dd-visual { order: 1; }
.dd-copy h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -0.015em; margin: 0 0 16px; }
.dd-copy p.dd-desc { color: var(--ink-muted); font-size: 1.03rem; margin: 0 0 22px; }
.dd-bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.dd-bullets li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.dd-bullets svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.dd-visual {
  background: var(--surface-cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.dd-visual-inner {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 22px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* deep-dive specific visuals */
.dd-attendance-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1px solid var(--line-light); border-radius: 10px;
  font-size: 0.88rem;
}
.dd-attendance-row .dd-avatar { width: 26px; height: 26px; border-radius: 999px; background: var(--brand-light); flex-shrink: 0; }
.dd-check {
  margin-left: auto; width: 24px; height: 24px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center;
}
.dd-check svg { width: 14px; height: 14px; }

.dd-ai-card {
  border: 1px solid var(--line-light); border-radius: 12px; padding: 16px;
  background: var(--surface-cream);
}
.dd-ai-card .dd-ai-label { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-dark); margin-bottom: 8px; }
.dd-ai-card p { font-size: 0.88rem; color: var(--ink-muted); margin: 0 0 12px; }
.dd-ai-actions { display: flex; gap: 8px; }
.dd-ai-actions span {
  font-size: 0.78rem; font-weight: 600; padding: 6px 12px; border-radius: 999px;
}
.dd-ai-actions .a-approve { background: var(--success-bg); color: var(--success); }
.dd-ai-actions .a-edit { background: var(--surface-panel); color: var(--ink-muted); }

.dd-invoice { border: 1px solid var(--line-light); border-radius: 12px; padding: 16px; font-size: 0.86rem; }
.dd-invoice-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-light); color: var(--ink-muted); }
.dd-invoice-row:last-child { border-bottom: none; font-weight: 700; color: var(--ink); }

/* ---------- Trust / values band ---------- */
.band { background: var(--surface-panel); }
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.band-item { text-align: center; padding: 0 8px; }
.band-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand);
}
.band-icon svg { width: 24px; height: 24px; }
.band-item h3 { font-size: 1rem; margin: 0 0 8px; }
.band-item p { font-size: 0.88rem; color: var(--ink-muted); margin: 0; }

/* ---------- How it works (journey) ---------- */
.journey { position: relative; }
.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.journey-step { position: relative; text-align: center; }
.journey-num {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.journey-step h3 { font-size: 1.1rem; margin: 0 0 10px; }
.journey-step p { color: var(--ink-muted); font-size: 0.93rem; margin: 0; max-width: 30ch; margin-inline: auto; }

/* ---------- AI approval strip ---------- */
.approval-section .wrap { max-width: 920px; }
.approval-card {
  background: var(--surface-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.approval-card::before {
  content: "";
  position: absolute;
  top: 61px; left: 18%; right: 18%;
  height: 2px;
  background: var(--line);
}
.approval-step { text-align: center; position: relative; }
.approval-step .step-num {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.approval-step h4 { margin: 0 0 8px; font-size: 0.98rem; }
.approval-step p { margin: 0; font-size: 0.86rem; color: var(--ink-muted); }

/* ---------- WhatsApp spotlight ---------- */
.wa-section .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.wa-panel {
  background: linear-gradient(160deg, #F7FBF8, #ECFDF5);
  border: 1px solid #D3F0DF;
  border-radius: var(--radius-lg);
  padding: 26px;
}
.wa-chat { display: flex; flex-direction: column; gap: 10px; }
.wa-bubble {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  font-size: 0.86rem;
  max-width: 78%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.wa-bubble.out { align-self: flex-end; background: var(--success-bg); border-color: #C9F0DA; border-radius: 14px 14px 4px 14px; }
.wa-panel.in-view .wa-bubble { opacity: 1; transform: translateY(0); }
.wa-panel.in-view .wa-bubble:nth-child(1) { transition-delay: 0.1s; }
.wa-panel.in-view .wa-bubble:nth-child(2) { transition-delay: 0.5s; }
.wa-panel.in-view .wa-bubble:nth-child(3) { transition-delay: 0.9s; }
.wa-panel.in-view .wa-bubble:nth-child(4) { transition-delay: 1.3s; }
.wa-bubble .wa-time { display: block; font-size: 0.7rem; color: var(--ink-faint); margin-top: 4px; }
.wa-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.wa-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-muted); font-size: 0.95rem; }
.wa-list svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-section .wrap { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--surface-cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 26px; height: 26px; border-radius: 999px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--brand);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer { padding: 0 24px 22px; color: var(--ink-muted); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 68px 48px;
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(255,255,255,0.12), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 30px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-band .btn-primary:hover { background: #F5EAEA; }
.cta-band .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #E8E4DF; padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #B7B2AC; font-size: 0.9rem; max-width: 34ch; margin: 0 0 18px; }
.footer-brand address { font-style: normal; color: #9A958E; font-size: 0.84rem; line-height: 1.6; }
footer h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 16px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
footer a { color: #B7B2AC; text-decoration: none; font-size: 0.92rem; transition: color 0.15s ease; }
footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8A857E;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; text-align: left; }
  .hero .mockup-wrap { max-width: 520px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .deep-dive { grid-template-columns: 1fr; gap: 32px; }
  .deep-dive + .deep-dive { margin-top: 72px; }
  .deep-dive.reverse .dd-copy { order: 1; }
  .deep-dive.reverse .dd-visual { order: 2; }
  .journey-track { grid-template-columns: 1fr; gap: 40px; }
  .journey-track::before { display: none; }
  .wa-section .wrap { grid-template-columns: 1fr; }
  .wa-section .wa-panel { order: -1; }
  .approval-card { grid-template-columns: 1fr; }
  .approval-card::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 68px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; margin: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wrap { padding: 0 18px; }
  .float-chip { display: none; }
}
