/* ═══════════════════════════════════════════════════════════════
   Camarero Landing — stylesheet
   Colores basados en la paleta real del producto
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --terracotta:       #C8856C;
  --terracotta-dark:  #B06E55;
  --terracotta-light: #DBAA94;
  --terracotta-pale:  #F5E8E3;
  --sage:             #8B9E7E;
  --sage-light:       #EEF2EC;
  --cream:            #FAF7F2;
  --cream-dark:       #EDE5D8;
  --charcoal:         #2D2D2D;
  --charcoal-lt:      #4A4A4A;
  --warm-gray:        #8A8278;
  --warm-white:       #FEFCF9;
  --border:           #EDE5D8;
  --white:            #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --container: 1160px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(45,45,45,.06), 0 1px 2px rgba(45,45,45,.04);
  --shadow:    0 4px 16px rgba(45,45,45,.10), 0 2px 4px rgba(45,45,45,.06);
  --shadow-lg: 0 8px 32px rgba(45,45,45,.14), 0 4px 12px rgba(45,45,45,.08);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ol, ul { list-style: none; }

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

/* ── Typography helpers ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.light { color: var(--terracotta-light); background: rgba(200,133,108,.15); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
.section-title.light { color: var(--white); }
.section-title-sm {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-desc {
  font-size: 17px;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.65); }
.section-header { text-align: center; margin-bottom: 56px; }

/* ── Buttons & CTAs ────────────────────────────────────────── */
.btn-ghost {
  font-size: 14px; font-weight: 500;
  color: var(--charcoal-lt); padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.btn-ghost:hover { color: var(--charcoal); background: var(--cream); }

.btn-primary {
  font-size: 14px; font-weight: 600;
  color: var(--white); background: var(--terracotta);
  padding: 9px 18px; border-radius: var(--r-sm);
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--white); background: var(--terracotta);
  padding: 13px 24px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(200,133,108,.3);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.cta-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,133,108,.4);
}
.cta-primary.large { font-size: 16px; padding: 15px 28px; border-radius: 12px; }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--charcoal); background: var(--white);
  padding: 13px 24px; border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s, transform .15s;
}
.cta-secondary:hover { border-color: var(--terracotta-light); background: var(--cream); transform: translateY(-1px); }

.cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  padding: 13px 24px; border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.cta-outline:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); }
.cta-outline.large { font-size: 16px; padding: 15px 28px; border-radius: 12px; }

.mt-lg { margin-top: 32px; }

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,252,249,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 2px 14px rgba(45,45,45,.08); }

.nav {
  display: flex; align-items: center; height: 64px; gap: 8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--charcoal);
  margin-right: auto;
}
.logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--warm-gray);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--cream); }

.nav-mobile-ctas { display: none; }

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

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r-sm);
  transition: background .15s;
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 75% 15%, rgba(200,133,108,.09) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 15% 85%, rgba(139,158,126,.07) 0%, transparent 60%);
}
.hero-container {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  min-height: 580px;
}
.hero-content { padding-bottom: 88px; }

.hero-badge {
  display: inline-block; margin-bottom: 24px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--terracotta); background: var(--terracotta-pale);
  border: 1px solid rgba(200,133,108,.2);
  padding: 5px 14px; border-radius: 100px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 20px;
  letter-spacing: -.025em;
}
.hero-title em { font-style: normal; color: var(--terracotta); }
.hero-subtitle {
  font-size: 18px; line-height: 1.65;
  color: var(--warm-gray); margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--warm-gray); }

/* Hero visual area */
.hero-visual {
  position: relative; height: 540px;
  display: flex; align-items: flex-end;
}

/* ─ Phone mockup (consumer) */
.mockup-phone {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  width: 190px;
  background: var(--charcoal);
  border-radius: 28px; padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04);
}
.mockup-phone-inner {
  background: var(--cream); border-radius: 20px;
  overflow: hidden; min-height: 380px;
  display: flex; flex-direction: column;
}
.mock-topbar {
  background: var(--terracotta); padding: 12px 12px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-restaurant-name { font-size: 10px; font-weight: 700; color: var(--white); }
.mock-table-badge {
  font-size: 9px; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,.2); padding: 2px 8px; border-radius: 100px;
}
.mock-search-bar {
  margin: 8px 10px 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px;
  font-size: 9px; color: var(--warm-gray);
}
.mock-chips { display: flex; gap: 5px; padding: 0 10px 8px; flex-wrap: wrap; }
.mock-chip {
  font-size: 8px; font-weight: 600;
  padding: 4px 8px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--charcoal-lt);
}
.mock-chip.active {
  background: var(--terracotta-pale); border-color: var(--terracotta-light);
  color: var(--terracotta);
}
.mock-dish-list { padding: 0 10px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-dish {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 9px;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-dish.featured { border-color: var(--terracotta-light); }
.mock-dish-name { font-size: 9px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.mock-dish-cat  { font-size: 8px; color: var(--warm-gray); }
.mock-dish-price { font-size: 9px; font-weight: 700; color: var(--terracotta); white-space: nowrap; }
.mock-waiter-btn {
  margin: 6px 10px 10px;
  background: var(--terracotta); color: var(--white);
  font-size: 9px; font-weight: 600; text-align: center;
  padding: 8px; border-radius: 8px;
}

/* ─ Desktop mockup (business) */
.mockup-desktop {
  position: absolute; right: 0; bottom: 0;
  width: calc(100% - 130px);
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mockup-bar {
  background: #F0F0F0; padding: 9px 12px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid #E0E0E0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.url-bar {
  flex: 1; margin-left: 8px; padding: 3px 10px;
  background: var(--white); border: 1px solid #E0E0E0;
  border-radius: 6px; font-size: 10px;
  color: var(--warm-gray); text-align: center;
}
.mockup-body { display: flex; height: 268px; }
.mock-sidebar {
  width: 120px; background: #1E293B; padding: 14px 0;
  flex-shrink: 0;
}
.mock-sidebar-logo {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  margin: 0 14px 18px;
}
.mock-nav-item {
  padding: 7px 14px; font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,.45); cursor: default;
}
.mock-nav-item.active { color: var(--white); background: rgba(255,255,255,.09); }
.mock-panel { flex: 1; padding: 14px; background: #F8FAFC; }
.mock-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-panel-title { font-size: 13px; font-weight: 800; color: var(--charcoal); }
.mock-status-badge {
  font-size: 9px; font-weight: 600;
  background: #DCFCE7; color: #166534;
  padding: 3px 9px; border-radius: 100px;
}
.mock-stats-row { display: flex; gap: 8px; margin-bottom: 12px; }
.mock-stat {
  flex: 1; background: var(--white); border-radius: 8px;
  padding: 10px 8px; border-top: 2.5px solid;
  text-align: center; box-shadow: var(--shadow-sm);
}
.mock-stat.orange { border-color: #F59E0B; }
.mock-stat.green  { border-color: #22C55E; }
.mock-stat.blue   { border-color: #3B82F6; }
.mock-stat-val  { font-size: 18px; font-weight: 800; color: var(--charcoal); }
.mock-stat-lbl  { font-size: 8px; color: var(--warm-gray); margin-top: 2px; }
.mock-quick-actions { display: flex; gap: 7px; }
.mock-qa-btn {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px; font-size: 9px; font-weight: 600;
  text-align: center; color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--charcoal-lt);
  padding: 8px 24px;
}
.trust-item svg { color: var(--terracotta); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.section-dark-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(200,133,108,.08) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 20% 50%, rgba(139,158,126,.06) 0%, transparent 60%);
}

/* ── Pillars ───────────────────────────────────────────────── */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pillar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.pillar:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--terracotta-pale); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar h3 { font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.pillar p  { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }

/* ── Split layout ──────────────────────────────────────────── */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
/* Visual comes first visually on .split-reverse */
.split-reverse .split-visual { order: -1; }

.split-desc { font-size: 16px; color: var(--warm-gray); line-height: 1.7; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.feature-list strong { font-size: 15px; font-weight: 600; color: var(--charcoal); display: block; margin-bottom: 3px; }
.feature-list p { font-size: 14px; color: var(--warm-gray); line-height: 1.6; margin: 0; }

/* ── Phone showcase (for clientes section) ─────────────────── */
.phone-showcase { display: flex; justify-content: center; }
.phone-screen {
  width: 290px;
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 0 10px var(--charcoal), var(--shadow-lg);
  display: flex; flex-direction: column;
}
.ps-topbar {
  background: var(--terracotta); padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ps-brand { display: flex; align-items: center; gap: 8px; }
.ps-logo {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.9); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
}
.ps-brand span { font-size: 13px; font-weight: 700; color: var(--white); }
.ps-table {
  font-size: 11px; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,.2); padding: 3px 10px; border-radius: 100px;
}
.ps-welcome { padding: 14px 14px 8px; font-size: 13px; color: var(--charcoal); }
.ps-welcome strong { font-weight: 700; }
.ps-chips { padding: 0 14px 12px; display: flex; gap: 7px; flex-wrap: wrap; }
.ps-chip {
  font-size: 11px; font-weight: 500; padding: 5px 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; color: var(--charcoal-lt);
}
.ps-chip.active {
  background: var(--terracotta-pale); border-color: var(--terracotta-light);
  color: var(--terracotta);
}
.ps-section-lbl { padding: 0 14px 8px; font-size: 11px; font-weight: 700; color: var(--charcoal); }
.ps-card {
  margin: 0 14px 8px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.ps-card-name { font-size: 12px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.ps-card-meta { display: flex; gap: 5px; margin-bottom: 5px; }
.ps-tag {
  font-size: 9px; background: var(--cream-dark); color: var(--warm-gray);
  padding: 2px 6px; border-radius: 4px;
}
.ps-tag-new { background: var(--terracotta-pale); color: var(--terracotta); }
.ps-card-price { font-size: 12px; font-weight: 700; color: var(--terracotta); }
.ps-add {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--terracotta); color: var(--white);
  font-size: 20px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; cursor: default;
}
.ps-actions { display: flex; gap: 7px; padding: 6px 14px 14px; }
.ps-action-btn {
  flex: 1; background: var(--sage-light); color: #6F8163;
  border-radius: 8px; padding: 9px; font-size: 11px; font-weight: 600;
  text-align: center; cursor: default;
}
.ps-action-btn.secondary { background: var(--cream-dark); color: var(--warm-gray); }

/* ── Dashboard showcase (for restaurantes section) ─────────── */
.dashboard-showcase {
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; height: 370px;
  border: 1px solid var(--border);
}
.ds-sidebar {
  width: 160px; background: #1E293B; padding: 20px 0;
  display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.ds-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  margin: 0 16px 20px;
}
.ds-nav { display: flex; flex-direction: column; }
.ds-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.45); cursor: default;
  border-right: 2px solid transparent;
  transition: background .15s;
}
.ds-nav-item.active {
  color: var(--white); background: rgba(255,255,255,.08);
  border-right-color: var(--terracotta);
}
.ds-main { flex: 1; padding: 20px; background: #F8FAFC; overflow: hidden; }
.ds-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.ds-title { font-size: 16px; font-weight: 800; color: var(--charcoal); }
.ds-badge {
  font-size: 11px; font-weight: 600;
  background: #DCFCE7; color: #166534;
  padding: 4px 10px; border-radius: 100px;
}
.ds-stats { display: flex; gap: 10px; margin-bottom: 16px; }
.ds-stat {
  flex: 1; background: var(--white); border-radius: 10px;
  padding: 14px 12px; border-top: 3px solid;
  box-shadow: var(--shadow-sm);
}
.ds-stat.amber { border-color: #F59E0B; }
.ds-stat.green { border-color: #22C55E; }
.ds-stat.blue  { border-color: #3B82F6; }
.ds-stat-val { font-size: 26px; font-weight: 800; color: var(--charcoal); }
.ds-stat-lbl { font-size: 10px; color: var(--warm-gray); margin-top: 2px; }
.ds-section-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--warm-gray);
  margin-bottom: 10px;
}
.ds-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ds-action-btn {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px; font-size: 11px;
  font-weight: 600; color: var(--charcoal);
  box-shadow: var(--shadow-sm); cursor: default;
}

/* ── Steps (how it works) ──────────────────────────────────── */
.steps {
  display: flex; align-items: flex-start;
  position: relative; z-index: 1;
}
.step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 28px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}
.step-body h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-body p  { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.step-connector {
  width: 56px; height: 1px;
  background: rgba(255,255,255,.12);
  margin-top: 28px; flex-shrink: 0;
}

/* ── Benefits ──────────────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-icon { font-size: 28px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.benefit-card p  { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 20px 24px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--charcoal);
  transition: background .15s;
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] { color: var(--terracotta); }
.faq-chevron {
  flex-shrink: 0; color: var(--warm-gray);
  transition: transform .25s;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--terracotta); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a.open { max-height: 240px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

/* ── Final CTA section ─────────────────────────────────────── */
.cta-final { background: var(--cream); }
.cta-block {
  position: relative; border-radius: 20px;
  background: var(--charcoal); overflow: hidden;
}
.cta-block-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(200,133,108,.14) 0%, transparent 55%);
}
.cta-block-content {
  position: relative; padding: 72px 64px; text-align: center;
}
.cta-block-content h2 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 800;
  color: var(--white); margin-bottom: 16px; letter-spacing: -.01em;
}
.cta-block-content p {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.65;
}
.cta-pair {
  display: flex; align-items: center;
  justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 64px 0 32px; }
.footer-top {
  display: flex; gap: 64px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: rgba(255,255,255,.45); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 13px; color: rgba(255,255,255,.3);
}
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.25); }

/* ── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile nav btn styles ─────────────────────────────────── */
.btn-ghost-mobile, .btn-primary-mobile {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600;
}
.btn-ghost-mobile { color: var(--charcoal); border: 1.5px solid var(--border); }
.btn-primary-mobile { background: var(--terracotta); color: var(--white); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto; gap: 48px;
  }
  .hero-content { padding-bottom: 0; }
  .hero-subtitle { max-width: 100%; }
  .hero-visual { height: 360px; }
  .mockup-phone { width: 155px; }
  .mockup-desktop { width: calc(100% - 108px); }
  .mockup-body { height: 210px; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse .split-visual { order: 0; }

  .dashboard-showcase { height: 300px; }
  .ds-sidebar { width: 130px; }

  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 1px; height: 28px; margin-top: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Mobile nav */
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-mobile-ctas {
    display: flex; flex-direction: column;
    margin-top: 12px; gap: 8px;
  }

  /* Trust bar */
  .trust-sep { display: none; }
  .trust-items { flex-direction: column; align-items: flex-start; padding: 0 8px; }

  /* Hero */
  .hero { padding-top: 48px; }
  .hero-title { font-size: 32px; }
  .hero-visual { height: 300px; }
  .mockup-body { height: 170px; }
  .mockup-desktop { width: calc(100% - 90px); }
  .mockup-phone { width: 130px; }
  .mock-sidebar { width: 90px; }
  .mock-nav-item { font-size: 9px; padding: 6px 10px; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* Phone showcase */
  .phone-screen { width: 250px; }

  /* Dashboard showcase */
  .dashboard-showcase { height: auto; min-height: 280px; flex-direction: column; }
  .ds-sidebar { width: 100%; flex-direction: row; align-items: center; padding: 10px 16px; gap: 0; }
  .ds-logo { margin: 0 12px 0 0; }
  .ds-nav { flex-direction: row; flex: 1; gap: 0; }
  .ds-nav-item { padding: 6px 10px; font-size: 10px; border-right: none; border-bottom: 2px solid transparent; }
  .ds-nav-item.active { border-bottom-color: var(--terracotta); border-right-color: transparent; background: rgba(255,255,255,.06); }

  /* CTA block */
  .cta-block-content { padding: 48px 24px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-primary, .cta-secondary { justify-content: center; }
  .cta-pair { flex-direction: column; }
  .cta-primary.large, .cta-outline.large { width: 100%; justify-content: center; }
  .phone-screen { width: 220px; }
  .hero-visual { height: 260px; }
}
