/* ════════════════════════════════════════════════════════════
   VENTU · DESIGN SYSTEM v24
   ════════════════════════════════════════════════════════════ */

:root {
  /* Palette — Light Editorial · Cream + Purple + Mint */
  --bg:           #faf6ff;
  --bg-soft:      #f4eefb;
  --bg-elevated:  #ffffff;
  --line:         #ebe2f5;
  --line-soft:    #f4eefb;
  --line-bright:  #d8cae8;

  --fg:           #1a0f25;
  --fg-soft:      #2e1f3f;
  --fg-muted:     #6a5a7a;
  --fg-subtle:    #9a8aa8;

  --brand:        #7C24EC;
  --brand-deep:   #5a14b5;
  --brand-bg:     rgba(124, 36, 236, 0.06);
  --brand-line:   rgba(124, 36, 236, 0.22);

  --accent:       #00b873;
  --accent-bg:    rgba(0, 184, 115, 0.08);
  --accent-line:  rgba(0, 184, 115, 0.25);

  /* Typography */
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  /* Spacing */
  --container: 1280px;
  --gutter:    24px;

  /* Motion */
  --ease:      cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 36, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 36, 236, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 70%);
}

main, header, footer { position: relative; z-index: 1; }

/* ────────── TYPOGRAPHY UTILITIES ────────── */

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}

a { color: inherit; text-decoration: none; }

/* ────────── CONTAINER ────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 255, 0.78);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}
.brand-mark::before {
  content: 'V';
}
/* When brand-mark is an actual img (real logo), override placeholder styles */
img.brand-mark {
  width: auto;
  height: 28px;
  border-radius: 0;
  background: none;
  display: inline-block;
}
img.brand-mark::before {
  content: none;
}
/* Hide the "ventu" text span when using real logo */
.brand:has(img.brand-mark) > span:not(.brand-mark) {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--fg); }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
}
.lang-btn {
  padding: 6px 10px;
  background: transparent;
  color: var(--fg-muted);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.05em;
  transition: all 0.2s var(--ease);
}
.lang-btn.active {
  background: var(--brand-bg);
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-bright);
}
.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--brand);
}
.btn-large {
  padding: 14px 22px;
  font-size: 15px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 36, 236, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner.hero-2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 960px) {
  .hero-inner.hero-2col {
    grid-template-columns: 1fr;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--brand-line);
  background: var(--brand-bg);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-muted);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta-item::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ────────── PHONE MOCKUP ────────── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124, 36, 236, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #2a1f3a 0%, #1a0f25 100%);
  border-radius: 44px;
  border: 1px solid #3a2a4a;
  padding: 12px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(40, 0, 80, 0.18),
    0 0 0 1px rgba(124, 36, 236, 0.08),
    inset 0 0 60px rgba(124, 36, 236, 0.04);
  z-index: 2;
}
.phone-screen {
  background: #ffffff;
  border-radius: 32px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Notch */
.phone::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}

.phone-status {
  padding: 18px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg);
  font-weight: 600;
}
.phone-status .dots {
  display: inline-flex;
  gap: 3px;
}
.phone-status .dots span {
  width: 3px; height: 3px;
  background: var(--fg);
  border-radius: 50%;
}

.phone-app-header {
  padding: 30px 18px 14px;
  border-bottom: 1px solid #ebe2f5;
}
.phone-app-header .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-app-header .label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-out infinite;
}
.phone-app-header .title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.phone-search {
  background: #f6f0fc;
  border: 1px solid #ebe2f5;
  border-radius: 100px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #9a8aa8;
}
.phone-search::before {
  content: '⌕';
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

/* ORDER META under app header title */
.phone-order-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ORDER TIMELINE */
.phone-timeline {
  flex: 1;
  padding: 14px 16px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.tl-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 10px 0;
  position: relative;
}
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 22px;
  bottom: -2px;
  width: 2px;
  background: #ebe2f5;
}
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.tl-pending .tl-dot {
  background: #fff;
  border: 2px dashed #c8b8d6;
}
.tl-pending .tl-title,
.tl-pending .tl-time {
  color: #9a8aa8;
}
.tl-active .tl-dot {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(124, 36, 236, 0.18);
  animation: pulse 2s ease-out infinite;
}
.tl-active .tl-title {
  color: var(--brand);
  font-weight: 700;
}
.tl-done .tl-dot {
  background: var(--accent);
}
.tl-done .tl-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: translate(-55%, -65%) rotate(45deg);
}
.tl-body {
  min-width: 0;
}
.tl-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.tl-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 1px;
  line-height: 1.25;
}
.tl-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.3;
}

/* CATALOG */
.phone-catalog {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-section-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.cat-section-title .badge {
  font-family: var(--font-mono);
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cat-card {
  background: #fff;
  border: 1px solid #ebe2f5;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideIn 0.5s var(--ease-out) forwards;
}
.cat-card:nth-child(1) { animation-delay: 0.4s; }
.cat-card:nth-child(2) { animation-delay: 0.55s; }
.cat-card:nth-child(3) { animation-delay: 0.7s; }
.cat-card:nth-child(4) { animation-delay: 0.85s; }

.cat-img {
  width: 100%;
  height: 64px;
  background: linear-gradient(135deg, #f4eefb 0%, #ebe2f5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand);
  position: relative;
}
.cat-img.green { background: linear-gradient(135deg, #e8faf3 0%, #d4f5e7 100%); color: var(--accent); }
.cat-img.violet { background: linear-gradient(135deg, #f4eefb 0%, #e3d3f5 100%); color: var(--brand); }
.cat-img.cream { background: linear-gradient(135deg, #fff7e8 0%, #faedd2 100%); color: #c89818; }
.cat-img.cool { background: linear-gradient(135deg, #eaf2fc 0%, #d6e4f5 100%); color: #4a6fa8; }

.cat-stock {
  position: absolute;
  top: 6px; right: 6px;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  background: rgba(0, 184, 115, 0.95);
  color: white;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
}

.cat-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.cat-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
}
.cat-eta {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.cat-eta::before {
  content: '⚡';
  font-size: 8px;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.phone-input-bar {
  padding: 10px 12px 18px;
  border-top: 1px solid #ebe2f5;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fafafa;
}
.phone-tab {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 8px;
  color: #9a8aa8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px;
  border-radius: 6px;
  font-weight: 600;
}
.phone-tab.active {
  background: var(--brand);
  color: white;
}

/* Floating cards next to phone */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  z-index: 3;
  box-shadow: 0 12px 40px rgba(40, 0, 80, 0.12);
  opacity: 0;
  animation: floatIn 0.8s var(--ease-out) forwards;
}
.floating-card .fc-label {
  color: var(--fg-subtle);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.floating-card .fc-value {
  color: var(--fg);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.floating-card .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.fc-1 { top: 80px; left: -40px; animation-delay: 0.6s; }
.fc-2 { bottom: 100px; right: -50px; animation-delay: 1.4s; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ════════════════════════════════════════════════════════════
   LOGO STRIP
   ════════════════════════════════════════════════════════════ */
.logos {
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.logos-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.logos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  text-align: center;
}
.logos-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.logo-item {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.logo-item:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-header {
  max-width: 720px;
  margin-bottom: 80px;
}
.section-h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  font-weight: 400;
  max-width: 600px;
}

/* ════════════════════════════════════════════════════════════
   THE MOMENT (30-second quote)
   ════════════════════════════════════════════════════════════ */
.moment {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
}
.flow-step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.flow-step:last-child { border-right: none; }

.flow-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 16px;
}
.flow-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.flow-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.flow-detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  white-space: pre-wrap;
}

/* ════════════════════════════════════════════════════════════
   PILLARS (3 capabilities)
   ════════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.pillar {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  border-color: var(--brand-line);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brand);
  font-weight: 500;
}
.pillar-title {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--fg);
}
.pillar-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* ════════════════════════════════════════════════════════════
   FLOW COMPARE · diagrama "sin Ventu" vs "con Ventu"
   ════════════════════════════════════════════════════════════ */
.flow-compare {
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
}
.flow-compare-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  padding: 28px 32px;
  gap: 24px;
}
.flow-compare-old {
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.015);
}
.flow-compare-new {
  background: linear-gradient(90deg, rgba(124, 36, 236, 0.025) 0%, rgba(0, 184, 115, 0.04) 100%);
}
.flow-compare-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.fc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.fc-eyebrow-new {
  color: var(--brand);
}
.fc-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.flow-compare-track {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.fc-node {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-node-old {
  background: white;
  border: 1px dashed #d4c8e0;
  color: #7a6a8a;
}
.fc-node-new {
  background: white;
  border: 1px solid var(--brand-line);
  color: var(--fg);
  box-shadow: 0 1px 2px rgba(124, 36, 236, 0.04);
}
.fc-node-new svg {
  color: var(--accent);
  flex-shrink: 0;
}
.fc-link {
  flex: 0 0 24px;
  height: 1px;
  background: #d4c8e0;
  position: relative;
}
.fc-link::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid #d4c8e0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.fc-link-new {
  background: var(--brand);
}
.fc-link-new::after {
  border-left-color: var(--brand);
}

@media (max-width: 900px) {
  .flow-compare-row {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .flow-compare-track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .fc-node {
    flex: 1 1 auto;
    white-space: normal;
    padding: 12px 14px;
  }
  .fc-link {
    flex: 0 0 16px;
    width: 1px;
    height: 16px;
    margin: 0 auto;
    background: #d4c8e0;
  }
  .fc-link::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%);
    border-top: 5px solid #d4c8e0;
    border-bottom: none;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .fc-link-new {
    background: var(--brand);
  }
  .fc-link-new::after {
    border-top-color: var(--brand);
    border-left-color: transparent;
  }
}

/* ════════════════════════════════════════════════════════════
   COMPARISON
   ════════════════════════════════════════════════════════════ */
.compare {
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
}
.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--bg);
}
.compare-cell {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--fg-soft);
  border-right: 1px solid var(--line);
}
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 500;
}
.compare-cell.label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.compare-cell.them {
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(200, 60, 60, 0.5);
}
.compare-cell.us {
  color: var(--accent);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   NETWORK PARTICIPANTS (suppliers + carriers)
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
}
.faq-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.faq-header p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--brand); }
.faq-q .toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--fg-muted);
  font-size: 16px;
  transition: all 0.2s var(--ease);
}
.faq-q .toggle::before {
  content: '+';
  display: block;
  line-height: 1;
}
.faq-item.open .faq-q .toggle {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 720px;
}

@media (max-width: 700px) {
  .faq-q { font-size: 15px; padding: 20px 0; }
}

/* ════════════════════════════════════════════════════════════
   3-CTAs BANNER (Pass · Driver · Merchant)
   ════════════════════════════════════════════════════════════ */
.three-ctas {
  padding: 60px 0 100px;
  background: var(--bg);
}
.three-ctas-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.three-ctas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.three-ctas-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
.cta-card {
  position: relative;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-card:hover {
  transform: translateY(-3px);
}
.cta-card.pass {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  box-shadow: 0 12px 40px rgba(124, 36, 236, 0.20);
}
.cta-card.pass:hover {
  box-shadow: 0 16px 48px rgba(124, 36, 236, 0.30);
}
.cta-card.driver {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--fg);
}
.cta-card.driver:hover {
  border-color: var(--brand-line);
}
.cta-card.merchant {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--fg);
}
.cta-card.merchant:hover {
  border-color: var(--brand-line);
}

.cta-card .cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.cta-card.pass .cta-eyebrow { color: rgba(255,255,255,0.85); }
.cta-card.driver .cta-eyebrow,
.cta-card.merchant .cta-eyebrow { color: var(--brand); }

.cta-card h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 4px;
}
.cta-card p {
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.cta-card.pass p { color: rgba(255,255,255,0.85); }
.cta-card.driver p,
.cta-card.merchant p { color: var(--fg-muted); }

.cta-card .cta-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.cta-card.pass .cta-btn {
  background: white;
  color: var(--brand);
}
.cta-card.driver .cta-btn,
.cta-card.merchant .cta-btn {
  background: var(--brand);
  color: white;
}

.cta-card .cta-deal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.cta-card.pass .cta-deal {
  background: var(--accent);
  color: white;
  align-self: flex-start;
}
.cta-card.driver .cta-deal,
.cta-card.merchant .cta-deal {
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  align-self: flex-start;
}

@media (max-width: 900px) {
  .three-ctas-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   B2B PERKS GRID
   ════════════════════════════════════════════════════════════ */
.perks-section {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.perks-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.perks-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.perks-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.perks-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.perks-header p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.perk {
  background: var(--bg-elevated);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perk-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.perk-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
}
.perk-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
}

@media (max-width: 800px) {
  .perks-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   GET STARTED — 3 steps
   ════════════════════════════════════════════════════════════ */
.get-started {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(124, 36, 236, 0.05) 0%, transparent 70%),
    var(--bg);
}
.get-started-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.get-started-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.get-started-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.get-started-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.get-started-header p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-line) 20%, var(--brand-line) 80%, transparent 100%);
  z-index: 0;
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}
.step:hover {
  border-color: var(--brand-line);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(40, 0, 80, 0.06);
}
.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(124, 36, 236, 0.25);
}
.step-title {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.25;
}
.step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.step-time {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-grid::before { display: none; }
}

/* ════════════════════════════════════════════════════════════
   INDUSTRY SWITCHER (Tabs interactivos)
   ════════════════════════════════════════════════════════════ */
.industry-tabs {
  margin-top: 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 100px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.industry-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.industry-tab:hover {
  color: var(--fg);
  background: var(--bg-soft);
}
.industry-tab.active {
  background: var(--brand);
  color: white;
}
.industry-tab .num {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.6;
}
.industry-tab.active .num { opacity: 0.8; }

.industry-content {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  min-height: 460px;
}

.industry-pane {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  animation: fadeInUp 0.5s var(--ease-out);
}
.industry-pane.active {
  display: grid;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.industry-text .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}
.industry-text .title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--fg);
  line-height: 1.15;
}
.industry-text .body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.industry-text .perks {
  list-style: none;
  margin-bottom: 24px;
}
.industry-text .perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.industry-text .perks li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.industry-text .examples {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.industry-text .examples span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--fg-muted);
  border: 1px solid var(--line);
}

.industry-mock {
  position: relative;
}
.industry-mock .who-mockup {
  height: 380px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(40, 0, 80, 0.10);
}

@media (max-width: 900px) {
  .industry-content,
  .industry-pane.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .industry-mock .who-mockup { height: 280px; }
  .industry-text .title { font-size: 24px; }
  .industry-tabs { gap: 4px; padding: 6px; max-width: 100%; }
  .industry-tab { padding: 8px 14px; font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════
   COST IMPACT MOCKUP (Por qué importa)
   ════════════════════════════════════════════════════════════ */
.cost-impact {
  margin: 32px auto 48px;
  max-width: 920px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.cost-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 36, 236, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 36, 236, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cost-impact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.cost-impact-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cost-impact-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.cost-impact-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 600;
}

.cost-bars {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cost-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}
.cost-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg);
  font-weight: 600;
}
.cost-label small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.cost-bar-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cost-bar {
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.cost-bar.them {
  background: linear-gradient(90deg, #fce8e0 0%, #f9d6cd 100%);
  color: #c54a26;
  border: 1px solid #f5c0b0;
  width: 100%;
  justify-content: flex-end;
}
.cost-bar.us {
  background: linear-gradient(90deg, #e0f5ec 0%, #c5edd9 100%);
  color: #1a7a4a;
  border: 1px solid #aae0c8;
  justify-content: flex-end;
}
.cost-bar-tag {
  position: absolute;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}

.cost-summary {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.cost-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cost-stat .num {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cost-stat .num.bad { color: #c54a26; }
.cost-stat .num.good { color: var(--accent); }
.cost-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.cost-arrow {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 700px) {
  .cost-impact { padding: 20px; }
  .cost-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cost-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cost-arrow { transform: rotate(90deg); }
}

/* ════════════════════════════════════════════════════════════
   WHO USES IT — with industry mockups
   ════════════════════════════════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.who-card {
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.who-mockup {
  background: linear-gradient(180deg, #f6f0fc 0%, #ebe2f5 100%);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  position: relative;
  height: 220px;
  overflow: hidden;
}
.who-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 36, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 36, 236, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Mini-screen common */
.who-screen {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(40, 0, 80, 0.06);
  padding: 12px;
  position: relative;
  z-index: 2;
}

.who-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.who-screen-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.who-screen-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-bg);
  border: 1px solid var(--brand-line);
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 600;
}

.who-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--fg);
}
.who-row:last-child { border-bottom: none; }
.who-row .left { display: flex; align-items: center; gap: 6px; }
.who-row .ico {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.who-row .ico.green { background: var(--accent-bg); color: var(--accent); }
.who-row .ico.violet { background: var(--brand-bg); color: var(--brand); }
.who-row .ico.cool { background: #eaf2fc; color: #4a6fa8; }
.who-row .right {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.who-row .right.success {
  color: var(--accent);
  font-weight: 700;
}

.who-content {
  padding: 28px 30px;
  flex: 1;
}
.who-content .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 600;
}
.who-content .title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--fg);
  line-height: 1.2;
}
.who-content .body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.who-content .examples {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.who-content .examples span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--fg-muted);
  border: 1px solid var(--line);
}

/* Specific industry mockups */
/* 01 OFICINAS — multi-sede dashboard */
.who-mockup.offices .who-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.who-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.who-site {
  padding: 8px;
  background: var(--bg-soft);
  border-radius: 6px;
  text-align: center;
}
.who-site .site-name {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}
.who-site .site-num {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}
.who-site.active {
  background: var(--brand-bg);
  border: 1px solid var(--brand-line);
}
.who-site.active .site-name { color: var(--brand); }

/* 02 TÉCNICOS — work order with tools list */
.who-mockup.technical .who-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.work-order {
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-order .order-id {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.work-order .order-time {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  font-weight: 600;
}

/* 03 OFICINAS / FACILITIES — recurring orders */
.who-mockup.facilities .who-schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 04 PROYECTOS / OBRA — multi-SKU progress grid */
.who-mockup.projects .who-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sku-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.sku-cell {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-muted);
  font-weight: 600;
}
.sku-cell.active {
  background: var(--brand-bg);
  border-color: var(--brand);
  color: var(--brand);
}
.sku-cell.delivered {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 800px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* Hero offer pill */
.hero-offer {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-offer .offer-tag {
  font-size: 8px;
  color: var(--accent);
  animation: pulse 2s ease-out infinite;
}
.hero-offer strong {
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   MACBOOK MOCKUP (PRODUCT SECTION)
   ════════════════════════════════════════════════════════════ */
.macbook-wrap {
  margin-top: 64px;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1800px;
}
.macbook-wrap::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  background: radial-gradient(ellipse, rgba(124, 36, 236, 0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.macbook {
  width: 100%;
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.macbook-screen-wrap {
  background: linear-gradient(180deg, #1a1118 0%, #0d0710 100%);
  border-radius: 12px 12px 4px 4px;
  padding: 18px 18px 22px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(40, 0, 80, 0.18),
    0 0 0 1px rgba(124, 36, 236, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.macbook-camera {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: #2a1a2a;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.6);
}

.macbook-screen {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  height: 600px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

/* Browser chrome */
.mb-chrome {
  background: #f6f0fc;
  border-bottom: 1px solid #ebe2f5;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mb-chrome .dots {
  display: flex;
  gap: 6px;
}
.mb-chrome .dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.mb-chrome .dots span:nth-child(1) { background: #ff5f57; }
.mb-chrome .dots span:nth-child(2) { background: #febc2e; }
.mb-chrome .dots span:nth-child(3) { background: #28c840; }
.mb-chrome .url {
  flex: 1;
  background: white;
  border: 1px solid #ebe2f5;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #6a5a7a;
}

/* App body */
.mb-app {
  display: grid;
  grid-template-columns: 1fr 320px;
  flex: 1;
  background: #faf8fc;
  overflow: hidden;
}

.mb-catalog {
  padding: 18px 22px;
  overflow: hidden;
}
.mb-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mb-cat-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mb-cat-title::before {
  content: '⚡';
  color: var(--accent);
  font-size: 12px;
}
.mb-cat-search {
  background: white;
  border: 1px solid #ebe2f5;
  border-radius: 100px;
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #9a8aa8;
  width: 200px;
}

.mb-cat-filter {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.mb-filter-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: white;
  border: 1px solid #ebe2f5;
  padding: 4px 9px;
  border-radius: 100px;
  color: #6a5a7a;
  font-weight: 600;
}
.mb-filter-chip.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.mb-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mb-product {
  background: white;
  border: 1px solid #ebe2f5;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.mb-product.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(124, 36, 236, 0.1);
}
.mb-product-img {
  height: 56px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mb-product-img svg {
  width: 32px;
  height: 32px;
}
.mb-product-img.green { background: linear-gradient(135deg, #e8faf3 0%, #d4f5e7 100%); color: var(--accent); }
.mb-product-img.violet { background: linear-gradient(135deg, #f4eefb 0%, #e3d3f5 100%); color: var(--brand); }
.mb-product-img.cream { background: linear-gradient(135deg, #fff7e8 0%, #faedd2 100%); color: #c89818; }
.mb-product-img.cool { background: linear-gradient(135deg, #eaf2fc 0%, #d6e4f5 100%); color: #4a6fa8; }
.mb-product-img.coral { background: linear-gradient(135deg, #fdeae6 0%, #f9d6cd 100%); color: #d65a3a; }
.mb-product-img.mint { background: linear-gradient(135deg, #e0f5ec 0%, #c5edd9 100%); color: #2a9d6e; }
.mb-product-img.amber { background: linear-gradient(135deg, #fff4e0 0%, #ffe6c0 100%); color: #b87a18; }
.mb-product-img.slate { background: linear-gradient(135deg, #eef0f4 0%, #d8dde6 100%); color: #4a5568; }
.mb-product-img.rose { background: linear-gradient(135deg, #fae0ec 0%, #f5c8da 100%); color: #c14070; }

.mb-product-name {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mb-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
}
.mb-product-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand);
  font-weight: 700;
}
.mb-product-eta {
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.mb-stock-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0, 184, 115, 0.95);
  color: white;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.06em;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Right: Checkout sidebar */
.mb-checkout {
  background: white;
  border-left: 1px solid #ebe2f5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mb-checkout-header {
  padding: 14px 18px;
  border-bottom: 1px solid #ebe2f5;
}
.mb-checkout-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.mb-checkout-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mb-checkout-count {
  background: var(--brand-bg);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid var(--brand-line);
}

.mb-checkout-items {
  flex: 1;
  padding: 12px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mb-line {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mb-line .thumb {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mb-line .info {
  flex: 1;
  min-width: 0;
}
.mb-line .name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mb-line .qty {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #9a8aa8;
  letter-spacing: 0.04em;
}
.mb-line .price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg);
  font-weight: 700;
}

.mb-checkout-totals {
  padding: 12px 18px;
  border-top: 1px solid #ebe2f5;
  background: #faf8fc;
}
.mb-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6a5a7a;
  padding: 3px 0;
}
.mb-total-row.grand {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg);
  font-weight: 700;
  padding-top: 8px;
  margin-top: 6px;
  border-top: 1px solid #ebe2f5;
}
.mb-total-row .eta-mini {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 600;
}

/* Payment options */
.mb-payments {
  padding: 12px 18px 16px;
}
.mb-pay-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #9a8aa8;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.mb-pay-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.mb-pay-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #faf8fc;
  border: 1px solid #ebe2f5;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg);
}
.mb-pay-option.selected {
  background: var(--brand-bg);
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 600;
}
.mb-pay-option .radio {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid #c8b8d8;
  flex-shrink: 0;
  position: relative;
}
.mb-pay-option.selected .radio {
  border-color: var(--brand);
}
.mb-pay-option.selected .radio::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--brand);
  border-radius: 50%;
}
.mb-pay-option .icon {
  font-size: 14px;
  flex-shrink: 0;
}
.mb-pay-option .text {
  flex: 1;
  line-height: 1.2;
}
.mb-pay-option .text small {
  display: block;
  font-size: 9px;
  color: #9a8aa8;
  font-weight: 400;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.mb-pay-option.selected .text small {
  color: var(--brand);
  opacity: 0.7;
}

.mb-checkout-cta {
  width: 100%;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.macbook-base {
  position: relative;
  height: 14px;
  background:
    linear-gradient(180deg, #d8dade 0%, #b3b6bb 60%, #888a90 100%);
  border-radius: 0 0 14px 14px;
  margin: 0 -16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 24px rgba(40, 0, 80, 0.12);
}
.macbook-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 6px;
  background: linear-gradient(180deg, #6b6e74 0%, #888a90 100%);
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.macbook-base::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  border-radius: 50%;
  filter: blur(1px);
}

@media (max-width: 960px) {
  .mb-app {
    grid-template-columns: 1fr;
  }
  .mb-checkout {
    border-left: none;
    border-top: 1px solid #ebe2f5;
  }
  .macbook-screen { height: auto; }
  .mb-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: hide laptop chassis, show as a clean phone-like card */
@media (max-width: 700px) {
  .macbook-wrap {
    margin-top: 32px;
    perspective: none;
  }
  .macbook-wrap::before {
    display: none;
  }
  .macbook {
    max-width: 100%;
  }
  .macbook-screen-wrap {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 16px;
  }
  .macbook-camera { display: none; }
  .macbook-base { display: none; }
  .macbook-screen {
    border-radius: 16px;
    box-shadow:
      0 12px 40px rgba(40, 0, 80, 0.10),
      0 0 0 1px rgba(124, 36, 236, 0.08);
  }
  .mb-chrome {
    border-radius: 16px 16px 0 0;
  }
  .mb-chrome .url {
    font-size: 9px;
    padding: 4px 8px;
  }
  .mb-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .mb-catalog { padding: 14px 14px; }
  .mb-cat-search { width: 110px; font-size: 10px; }
  .mb-cat-title { font-size: 12px; }
}

@media (max-width: 420px) {
  .mb-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mb-product { padding: 6px; }
  .mb-cat-search { display: none; }
}

/* ════════════════════════════════════════════════════════════
   VALUE PROPOSITION (3 columns, Instacart-style)
   ════════════════════════════════════════════════════════════ */
.valueprop {
  padding: 100px 0;
  background: var(--bg);
}
.valueprop-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.valueprop-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.valueprop-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.valueprop-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.valueprop-header p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.valueprop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vp-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.vp-illus {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 4px;
  position: relative;
}
.vp-illus::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 36, 236, 0.18);
}
.vp-illus svg {
  width: 44px; height: 44px;
}
.vp-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
}
.vp-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 320px;
}

@media (max-width: 800px) {
  .valueprop-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════════════════════════════
   STATS BAR (Instacart-style "largest marketplace")
   ════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 184, 115, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.stats-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  color: white;
}
.stats-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}
.stats-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: #c5edd9;
}
.stats-header p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: white;
  display: block;
}
.stat-num em {
  font-style: normal;
  color: #c5edd9;
}
.stat-lbl {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  font-weight: 400;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 32px; margin-bottom: 8px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding: 24px 0; }
  .stat:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   CONNECTED NETWORK SECTION
   ════════════════════════════════════════════════════════════ */
.connected {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.connected::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(124, 36, 236, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.connected-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.connected-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.connected-header .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.connected-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.connected-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.connected-header p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  font-weight: 400;
}

/* DIAGRAM */
.diagram {
  position: relative;
  margin: 0 auto 72px;
  max-width: 1000px;
  height: 480px;
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  padding: 32px;
}
.diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 36, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 36, 236, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.diagram-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.diagram-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.diagram-node .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  white-space: nowrap;
}
.diagram-node .stack {
  display: flex;
  gap: 6px;
}
.diagram-node .stack .item {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  box-shadow: 0 2px 6px rgba(40, 0, 80, 0.04);
}
.diagram-node .stack .item.green {
  color: var(--accent);
  border-color: var(--accent-line);
}

/* Position the 3 outer nodes — triangle layout */
.diagram-node.suppliers { top: 50px; left: 50%; transform: translateX(-50%); align-items: center; }
.diagram-node.clients   { top: 50%; right: 60px; transform: translateY(-50%); align-items: flex-end; }
.diagram-node.carriers  { top: 50%; left: 60px; transform: translateY(-50%); align-items: flex-start; }

/* Center: VENTU hub */
.diagram-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 220px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: white;
  box-shadow:
    0 20px 50px rgba(124, 36, 236, 0.25),
    0 0 0 6px rgba(124, 36, 236, 0.06),
    0 0 0 12px rgba(124, 36, 236, 0.03);
}
.diagram-hub .hub-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.diagram-hub .hub-name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.diagram-hub .hub-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.diagram-hub .hub-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-out infinite;
}

/* Animated dots flowing along lines */
@keyframes flow {
  0% { stroke-dashoffset: 24; }
  100% { stroke-dashoffset: 0; }
}
.flow-line {
  stroke-dasharray: 4 4;
  animation: flow 1.5s linear infinite;
}

/* Flow tag (qué fluye en cada línea) */
.flow-label {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px 8px;
  white-space: nowrap;
}
.flow-label.tl { top: 130px; left: 30%; }
.flow-label.tr { top: 130px; right: 30%; }
.flow-label.bl { bottom: 130px; left: 30%; }
.flow-label.br { bottom: 130px; right: 30%; }

/* 4 VALUE CARDS BELOW DIAGRAM */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elevated);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  border-color: var(--brand-line);
  transform: translateY(-2px);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}
.value-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.2;
}
.value-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}

@media (max-width: 960px) {
  .diagram { height: 380px; padding: 20px; }
  .diagram-node.suppliers { top: 14px; left: 50%; transform: translateX(-50%); }
  .diagram-node.clients   { top: 50%; right: 8px; transform: translateY(-50%); }
  .diagram-node.carriers  { top: 50%; left: 8px; transform: translateY(-50%); }
  .diagram-node .stack .item { width: 28px; height: 28px; font-size: 11px; }
  .diagram-hub { width: 160px; padding: 18px; }
  .diagram-hub .hub-name { font-size: 18px; }
  .flow-label { font-size: 8px; padding: 2px 6px; }
  .value-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .connected { padding: 80px 0; }
  .diagram { height: 340px; }
  .value-grid { grid-template-columns: 1fr; }
  .flow-label { display: none; }
}

/* ════════════════════════════════════════════════════════════
   DRIVER SECTION (Ventu B2B Delivery — at the bottom)
   ════════════════════════════════════════════════════════════ */
.driver-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.driver-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.driver-copy .eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}

.driver-h2 {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.driver-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}

.driver-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: 28px;
}

.driver-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.driver-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.driver-bullets li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* DRIVER PHONE MOCKUP with map */
.driver-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.driver-phone-wrap::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0, 184, 115, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.driver-phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #2a1f3a 0%, #1a0f25 100%);
  border-radius: 44px;
  border: 1px solid #3a2a4a;
  padding: 12px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(40, 0, 80, 0.18),
    0 0 0 1px rgba(0, 184, 115, 0.08);
  z-index: 2;
}
.driver-phone::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.driver-phone-screen {
  background: #fff;
  border-radius: 32px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.driver-status {
  padding: 18px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg);
  font-weight: 600;
}
.driver-status .dots {
  display: inline-flex;
  gap: 3px;
}
.driver-status .dots span {
  width: 3px; height: 3px;
  background: var(--fg);
  border-radius: 50%;
}

.driver-app-header {
  padding: 28px 18px 14px;
  border-bottom: 1px solid #ebe2f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.driver-app-header .left .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.driver-app-header .left .label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-out infinite;
}
.driver-app-header .left .title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.025em;
}
.driver-app-header .stops-counter {
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* MAP */
.driver-map {
  flex: 1;
  background: linear-gradient(135deg, #f8f4fb 0%, #f4eefb 100%);
  position: relative;
  overflow: hidden;
}
.driver-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 36, 236, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 36, 236, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-pin .marker {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-bottom: 4px;
}
.map-pin .label {
  background: white;
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--fg);
  font-size: 7px;
  white-space: nowrap;
}

.map-pin.origin .marker {
  background: var(--brand);
  width: 28px; height: 28px;
}
.map-pin.origin .label {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.map-pin.delivery .marker {
  background: var(--accent);
  font-size: 10px;
}

.map-pin.origin { top: 12%; left: 35%; }
.map-pin.d1 { top: 38%; left: 12%; }
.map-pin.d2 { top: 56%; left: 62%; }
.map-pin.d3 { top: 78%; left: 28%; }

.driver-map-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid #ebe2f5;
  padding: 12px 16px;
  z-index: 4;
}
.driver-map-overlay .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.driver-map-overlay .next {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #9a8aa8;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.driver-map-overlay .target {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.driver-map-overlay .eta {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}
.driver-map-overlay .distance {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  display: flex;
  gap: 12px;
  letter-spacing: 0.04em;
}
.driver-map-overlay .distance span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.driver-map-overlay .distance span::before {
  content: '·';
  color: var(--accent);
  font-weight: 700;
}

.driver-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .driver-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .driver-phone-wrap { min-height: 540px; }
  .driver-phone { transform: scale(0.85); }
}
.net-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.net-card .net-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.net-card .net-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--fg);
}
.net-card .net-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.net-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brand);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap 0.2s var(--ease);
}
.net-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════════ */
.cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(124, 36, 236, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 184, 115, 0.05) 0%, transparent 50%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-h2 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 24px;
}
.cta-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.cta-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.cta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  .phone-wrap { min-height: 540px; }
  .phone { transform: scale(0.85); }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .flow-step:last-child { border-bottom: none; }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .network {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .floating-card { display: none; }
  /* Nav: simplify CTA on tablet */
  .nav .btn-primary {
    padding: 9px 14px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .hero { padding: 120px 0 80px; }
  .section { padding: 80px 0; }
  .moment { padding: 80px 0; }
  .cta { padding: 100px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .phone { transform: scale(0.75); }
  .phone-wrap { min-height: 480px; }
  /* Nav: hide CTA button on mobile (already big CTAs in hero) */
  .nav-inner { gap: 12px; }
  .nav-links {
    gap: 8px;
  }
  .nav .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }
  /* On very small screens, hide the nav CTA button entirely (still visible in hero) */
  .nav .btn-primary {
    display: none;
  }
  img.brand-mark { height: 24px; }
}

/* ────────── i18n hidden state ────────── */
[data-lang]:not(.lang-active) { display: none; }