/* ============================================================
   Opirex AI — Landing
   Sistema de diseño: paleta verde corporativa + Manrope
   ============================================================ */

:root {
  /* Paleta verde Opirex */
  --green-900: #0E2A1F;
  --green-700: #14513A;
  --green-500: #1F8A5B;
  --green-300: #57B585;
  --green-100: #E6F1EA;
  --green-50:  #F2F8F4;

  /* Neutros */
  --ink-900: #0A140F;
  --ink-700: #1F2A24;
  --ink-500: #5C6661;
  --ink-400: #8A9189;
  --ink-200: #DBE0DC;
  --ink-100: #ECEFED;
  --ink-50:  #F6F8F6;
  --paper:   #FFFFFF;

  --font-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-py: 120px;
  --container-max: 1200px;
  --gutter: 24px;

  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(14,42,31,.04), 0 1px 1px rgba(14,42,31,.02);
  --shadow-2: 0 2px 8px rgba(14,42,31,.05), 0 1px 2px rgba(14,42,31,.04);
  --shadow-3: 0 12px 32px rgba(14,42,31,.08), 0 2px 6px rgba(14,42,31,.04);
  --shadow-hover: 0 18px 40px rgba(14,42,31,.10), 0 4px 10px rgba(14,42,31,.05);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--green-500); }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--green-900);
  letter-spacing: -0.022em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.h-display {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.h-section {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
p { margin: 0; text-wrap: pretty; }
.lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
}
.muted { color: var(--ink-500); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 16px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: 1200px; }

section {
  padding: var(--section-py) 0;
  position: relative;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .12s, box-shadow .18s, color .18s;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-900); color: var(--paper); }
.btn-primary:hover { background: var(--green-700); color: var(--paper); box-shadow: 0 8px 24px rgba(14,42,31,.18); }
.btn-secondary { background: transparent; color: var(--green-900); border-color: var(--ink-200); }
.btn-secondary:hover { border-color: var(--green-900); background: var(--ink-50); }
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  padding: 0 4px;
  height: auto;
  border: none;
  font-weight: 600;
  position: relative;
}
.btn-ghost::after { content: '→'; display: inline-block; margin-left: 4px; transition: transform .18s; }
.btn-ghost:hover::after { transform: translateX(3px); }
.btn-sm { height: 38px; padding: 0 14px; font-size: 13.5px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn:focus-visible { outline: 2px solid var(--green-500); outline-offset: 2px; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--green-100);
  color: var(--green-700);
  letter-spacing: -0.005em;
}
.badge-dark { background: var(--green-900); color: var(--paper); }
.badge-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31,138,91,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,138,91,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(31,138,91,.04); }
}

/* Section header */
.sec-header { margin-bottom: 56px; max-width: 720px; }
.sec-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-header p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ink-700);
  line-height: 1.55;
}

/* Skip link */
.skip {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-900);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--r-md);
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
  transition: top .15s;
}
.skip:focus { top: 16px; color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow .25s, border-color .25s;
  background: #ffffff;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-100);
  box-shadow: 0 1px 0 rgba(14,42,31,.02), 0 8px 24px rgba(14,42,31,.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hdr-logo { display: inline-flex; align-items: center; }
.hdr-logo img { height: 44px; width: auto; display: block; }
.hdr-nav { display: flex; align-items: center; gap: 32px; }
.hdr-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: color .15s;
}
.hdr-nav a:hover { color: var(--green-900); }
.hdr-cta { display: flex; align-items: center; gap: 12px; }
.hdr-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.hdr-burger i,
.hdr-burger i::before,
.hdr-burger i::after {
  content: '';
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--green-900);
  position: relative;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hdr-burger i::before { position: absolute; left: 0; top: -6px; }
.hdr-burger i::after  { position: absolute; left: 0; top: 6px; }
.hdr-burger[aria-expanded="true"] i { background: transparent; }
.hdr-burger[aria-expanded="true"] i::before { transform: translateY(6px) rotate(45deg); }
.hdr-burger[aria-expanded="true"] i::after  { transform: translateY(-6px) rotate(-45deg); }

.hdr-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--paper);
  padding: 24px var(--gutter) 32px;
  border-bottom: 1px solid var(--ink-100);
  box-shadow: 0 8px 24px rgba(14,42,31,.06);
  transform: translateY(-110%);
  transition: transform .25s cubic-bezier(.3,.7,.4,1);
  pointer-events: none;
  z-index: 99;
}
.hdr-mobile.open {
  transform: translateY(0);
  pointer-events: auto;
}
.hdr-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.hdr-mobile nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-900);
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-100);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(72px + 32px);
  padding-bottom: 48px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(31,138,91,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(31,138,91,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-copy .lead { margin-top: 20px; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-phone-wrap {
  position: relative;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-phone-wrap .wa-frame { width: 340px; }
.hero-cal-float {
  position: absolute;
  right: -10px;
  bottom: 30px;
  transform: rotate(2deg);
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(-10px) rotate(0deg); }
}
.hero-ping {
  position: absolute;
  left: -40px;
  top: 80px;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 16px 12px 38px;
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  z-index: 3;
  transform: rotate(-2deg);
  animation: heroFloat2 7s ease-in-out infinite;
}
@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(8px) rotate(-3deg); }
}
.ping-dot {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31,138,91,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.ping-text strong {
  display: block;
  font-size: 14px;
  color: var(--green-900);
  font-weight: 700;
  line-height: 1.15;
}
.ping-text span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}

/* Cred strip */
.cred-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
  flex-wrap: wrap;
}
.cred-item strong {
  display: block;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}
.cred-item span {
  display: block;
  color: var(--ink-500);
  font-size: 12.5px;
  margin-top: 2px;
}
.cred-sep {
  width: 1px;
  height: 28px;
  background: var(--ink-200);
}

/* ============================================================
   WHATSAPP MOCKUP
   ============================================================ */
.wa-frame {
  width: 320px;
  background: #0E2A1F;
  border-radius: 36px;
  padding: 9px;
  box-shadow: 0 24px 64px rgba(14,42,31,.18), 0 4px 12px rgba(14,42,31,.08);
  position: relative;
}
.wa-frame.compact { width: 280px; border-radius: 30px; padding: 7px; }
.wa-screen {
  background: #ECE5DD;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/19;
}
.wa-frame.compact .wa-screen { border-radius: 23px; }
.wa-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0E2A1F;
  border-radius: 14px;
  z-index: 5;
}
.wa-hd {
  background: #075E54;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 38px 14px 10px;
  position: relative;
  z-index: 1;
}
.wa-back { font-size: 14px; opacity: .7; }
.wa-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
}
.wa-name { font-size: 14px; font-weight: 600; line-height: 1.1; }
.wa-status { font-size: 11px; opacity: .8; line-height: 1.1; margin-top: 1px; display: flex; align-items: center; gap: 4px; }
.wa-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1FE08B;
}
.wa-body {
  height: calc(100% - 130px);
  overflow-y: auto;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, #E5DDD5 0%, #ECE5DD 100%);
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,.02) 0%, transparent 50%);
  scrollbar-width: none;
}
.wa-body::-webkit-scrollbar { display: none; }
.wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #F0F0F0;
}
.wa-input-field {
  flex: 1;
  height: 32px;
  background: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  color: var(--ink-500);
}
.wa-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #075E54;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.wa-bubble {
  max-width: 80%;
  padding: 7px 11px 6px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
  color: #1A201D;
  position: relative;
  animation: waPop .3s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
  word-break: break-word;
}
@keyframes waPop {
  from { opacity: 0; transform: translateY(6px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.wa-them { background: white; align-self: flex-start; border-top-left-radius: 4px; }
.wa-us { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 4px; }
.wa-time {
  font-size: 9px;
  color: var(--ink-500);
  margin-left: 6px;
  float: right;
  position: relative;
  top: 3px;
  left: 2px;
}
.wa-check::after {
  content: '✓✓';
  color: #34B7F1;
  font-size: 10px;
  margin-left: 2px;
}
.wa-typing {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 3px;
  animation: waPop .3s;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
}
.wa-typing i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-400);
  animation: waDot 1.2s infinite;
}
.wa-typing i:nth-child(2) { animation-delay: .2s; }
.wa-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes waDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}
.wa-slot-card {
  background: white;
  border-radius: 10px;
  padding: 8px;
  align-self: flex-end;
  max-width: 85%;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
  animation: waPop .3s;
}
.wa-slot-card h5 {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-700);
  margin: 0 0 6px;
}
.wa-slot-row {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}
.wa-slot-row:last-child { margin-bottom: 0; }
.wa-slot {
  flex: 1;
  background: var(--green-100);
  color: var(--green-700);
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
}
.wa-slot.chosen {
  background: var(--green-700);
  color: white;
}
.wa-conf {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  align-self: flex-end;
  max-width: 90%;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
  animation: waPop .3s;
}
.wa-conf-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 4px;
}
.wa-conf-body { font-size: 12px; line-height: 1.4; color: var(--ink-700); }
.wa-conf-body strong { color: var(--ink-900); }

/* Calendar card */
.cal-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 18px;
  width: 230px;
  box-shadow: var(--shadow-3);
}
.cal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-month { font-size: 13px; font-weight: 700; color: var(--green-900); }
.cal-nav { display: flex; gap: 4px; color: var(--ink-400); font-size: 14px; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
}
.cal-dow {
  color: var(--ink-400);
  text-align: center;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 0;
  text-transform: uppercase;
}
.cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.cal-d.dim { color: var(--ink-200); }
.cal-d.today { background: var(--green-100); color: var(--green-700); font-weight: 700; }
.cal-d.booked {
  background: var(--green-700);
  color: white;
  font-weight: 700;
  position: relative;
}
.cal-d.booked::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 2px solid var(--green-300);
  animation: calPing 2s ease-out infinite;
}
@keyframes calPing {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.3); }
}
.cal-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-100);
  font-size: 11.5px;
  line-height: 1.4;
}
.cal-foot strong { color: var(--green-900); display: block; margin-bottom: 2px; }
.cal-foot span { color: var(--ink-500); }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problem { background: var(--ink-50); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.pain-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-stat {
  font-size: 44px;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pain-stat span {
  font-size: 22px;
  color: var(--ink-500);
  font-weight: 600;
  margin-left: 4px;
}
.pain-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.pain-text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}

/* ============================================================
   SOLUCIÓN
   ============================================================ */
.solution { background: var(--paper); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sol-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sol-card:hover {
  border-color: var(--green-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.sol-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sol-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-500);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.sol-icon {
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: 10px;
}
.sol-icon svg { width: 22px; height: 22px; }
.sol-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.sol-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
}

/* SOLUCIÓN — Timeline variant */
.sol-tl {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.sol-tl-rail {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ink-100) 0%, var(--green-300) 50%, var(--ink-100) 100%);
}
.sol-tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 18px 0;
}
.sol-tl-row + .sol-tl-row { padding-top: 32px; }
.sol-tl-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--paper);
}
.sol-tl-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding-top: 6px;
}
.sol-tl-body .sol-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.sol-tl-body .sol-icon svg { width: 28px; height: 28px; }

/* ============================================================
   VIDEO DEMO
   ============================================================ */
.video-demo { background: var(--ink-50); }
.vd-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.vd-player {
  aspect-ratio: 16/9;
  background: var(--green-900);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-3);
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(31,138,91,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(31,138,91,.15) 0%, transparent 50%);
}
.vd-poster {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 56px;
  gap: 32px;
}
.vd-poster-l { color: white; }
.vd-poster-l .badge { background: rgba(255,255,255,.12); color: white; margin-bottom: 16px; }
.vd-poster-l h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.vd-poster-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.vd-poster-r {
  display: flex;
  justify-content: flex-end;
  opacity: .75;
}
.vd-poster-r > * { transform: scale(.75); }
.vd-soon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.vd-bar {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.vd-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.vd-copy h2 { margin-bottom: 16px; }
.vd-copy p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-700);
}
.vd-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vd-copy li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.vd-copy li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--green-900); color: white; }
.benefits .eyebrow { color: var(--green-300); }
.benefits .eyebrow::before { background: var(--green-300); }
.benefits h2 { color: white; }
.benefits .sec-header p { color: rgba(255,255,255,.72); }
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ben-card {
  background: var(--green-900);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s;
}
.ben-card:hover { background: #163522; }
.ben-icon {
  width: 44px;
  height: 44px;
  color: var(--green-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ben-icon svg { width: 28px; height: 28px; }
.ben-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
}
.ben-body {
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* ============================================================
   CASOS (Early Adopter)
   ============================================================ */
.testimonials { background: var(--paper); }
.tst-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tst-message {
  padding: 48px;
  background: var(--green-50);
  border-radius: var(--r-lg);
  border: 1px dashed var(--green-300);
  position: relative;
  overflow: hidden;
}
.tst-message::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--green-300) 0%, transparent 70%);
  opacity: .18;
  pointer-events: none;
}
.tst-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
}
.tst-stamp::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31,138,91,.18);
}
.tst-message h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.tst-message p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.tst-slots {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(31,138,91,.2);
}
.tst-slots strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.025em;
  line-height: 1;
}
.tst-slots > span {
  color: var(--ink-700);
  font-size: 14px;
}
.tst-placeholder { display: flex; flex-direction: column; gap: 16px; }
.tst-ghost {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px;
  opacity: .65;
}
.tst-ghost-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.tst-ghost-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink-100);
  flex-shrink: 0;
}
.tst-ghost-meta { flex: 1; }
.tst-bar { height: 10px; background: var(--ink-100); border-radius: 3px; }
.tst-bar.short { width: 60%; }
.tst-bar.tiny  { width: 35%; height: 8px; }
.tst-bar + .tst-bar { margin-top: 6px; }
.tst-ghost-body .tst-bar { height: 8px; }
.tst-ghost-body .tst-bar + .tst-bar { margin-top: 8px; }
.tst-ghost-stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
  display: flex;
  gap: 12px;
}
.tst-ghost-stat .tst-bar { flex: 1; height: 28px; }

/* ============================================================
   PRECIO
   ============================================================ */
.pricing { background: var(--ink-50); }
.pricing-early {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-900);
  color: white;
  padding: 18px 24px;
  border-radius: var(--r-md);
  margin: 0 auto 24px;
  max-width: 720px;
}
.pe-stamp {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31,138,91,.32);
  flex-shrink: 0;
  animation: pulse 2.4s infinite;
}
.pricing-early strong { display: block; font-size: 14px; font-weight: 700; }
.pricing-early span { display: block; font-size: 13px; color: rgba(255,255,255,.7); }

.pr-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}
.pr-single-wrap { max-width: 720px; margin: 0 auto; }
.pr-single { padding: 44px; }
.pr-card-hd { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.pr-title { font-size: 22px; font-weight: 700; color: var(--green-900); letter-spacing: -0.015em; }
.pr-prices {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  flex-wrap: wrap;
}
.pr-price { display: flex; flex-direction: column; gap: 4px; }
.pr-amount { font-size: 38px; font-weight: 800; color: var(--green-900); letter-spacing: -0.025em; line-height: 1; }
.pr-amount small { font-size: 17px; font-weight: 600; color: var(--ink-500); }
.pr-period { font-size: 13px; color: var(--ink-500); }
.pr-plus { font-size: 24px; color: var(--ink-200); }
.pr-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 12px; }
.pr-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.pr-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5 6.5 11.5 12.5 5' fill='none' stroke='%231F8A5B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
}
.pr-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--ink-50);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--ink-700);
}
.pr-note strong { color: var(--green-900); }
.pr-note ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; }
.pr-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRECIO — Dual (two-column) variant */
.pr-twocol {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.pr-twocol-l,
.pr-twocol-r {
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.pr-twocol-l {
  background: var(--green-900);
  color: white;
  border-color: transparent;
}
.pr-twocol-l .badge-dark { background: rgba(255,255,255,.12); color: white; }
.pr-twocol-l .btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 8px 24px rgba(31,138,91,.25);
}
.pr-twocol-l .btn-primary:hover {
  background: var(--green-300);
  color: var(--green-900);
  box-shadow: 0 12px 32px rgba(87,181,133,.3);
}
.pr-bigprice + .pr-bigprice { margin-top: 18px; }
.pr-amount-xl {
  display: block;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: white;
}
.pr-amount-xl small { font-size: 19px; font-weight: 600; opacity: .65; }
.pr-twocol-l .pr-period { color: rgba(255,255,255,.6); margin-top: 4px; }
.pr-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 24px 0;
}
.pr-twocol-r .pr-divider { background: var(--ink-100); }
.pr-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
}
.pr-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  padding: 12px 0;
  border-top: 1px dashed rgba(255,255,255,.12);
  gap: 16px;
}
.pr-meta-row strong { color: white; font-weight: 600; font-size: 16px; text-align: right; }
.pr-list-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0;
}
.pr-list-title.muted { color: var(--ink-500); }
.pr-twocol-r .pr-list { margin-top: 16px; }
.pr-list.excluded li::before {
  background: var(--ink-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8h8' fill='none' stroke='%23A3A8A5' stroke-width='2' stroke-linecap='round'/></svg>") center/9px no-repeat;
}
.pr-list.excluded li {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pr-list.excluded li > span:first-child { flex: 1; min-width: 200px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-side { position: sticky; top: 100px; }
.faq-side h2 { margin-bottom: 20px; }
.faq-side p { color: var(--ink-700); line-height: 1.6; font-size: 16px; margin-bottom: 24px; }
.faq-side .btn { width: max-content; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--ink-100); }
.faq-item:last-child { border-bottom: 1px solid var(--ink-100); }
.faq-q {
  width: 100%;
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .15s;
}
.faq-q:hover { color: var(--green-700); }
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-100);
  flex-shrink: 0;
  position: relative;
  transition: background .2s;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-700);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.3,.7,.4,1);
}
.faq-q-icon::before { width: 12px; height: 1.8px; }
.faq-q-icon::after  { width: 1.8px; height: 12px; }
.faq-item[data-open="1"] .faq-q-icon { background: var(--green-900); }
.faq-item[data-open="1"] .faq-q-icon::before { background: white; }
.faq-item[data-open="1"] .faq-q-icon::after  { transform: translate(-50%, -50%) scaleY(0); background: white; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.2,.7,.3,1), opacity .25s;
}
.faq-item[data-open="1"] .faq-a {
  max-height: 600px;
  opacity: 1;
}
.faq-a-body {
  padding: 0 56px 28px 0;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============================================================
   CTA + Formulario
   ============================================================ */
.cta { background: var(--green-900); color: white; position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(87,181,133,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(31,138,91,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}
.cta-copy { position: sticky; top: 100px; }
.cta-copy .eyebrow { color: var(--green-300); }
.cta-copy .eyebrow::before { background: var(--green-300); }
.cta h2 { color: white; }
.cta-copy > p {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 48ch;
}
.cta-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.cta-point svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--green-300);
  margin-top: 1px;
}
.cta-form {
  background: var(--paper);
  color: var(--ink-900);
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.cta-form h3 { font-size: 20px; margin-bottom: 20px; color: var(--green-900); }
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-form-grid .full { grid-column: 1 / -1; }
.cta-form-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-form-foot {
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.005em;
}
.field label .req { color: var(--green-500); }
.field input,
.field select,
.field textarea {
  appearance: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(31,138,91,.12);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #C5453F;
  box-shadow: 0 0 0 4px rgba(197,69,63,.08);
}
.field .err-msg {
  font-size: 12.5px;
  color: #C5453F;
  font-weight: 500;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
  cursor: pointer;
}
.check input {
  appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--ink-200);
  border-radius: 4px;
  margin: 1px 0 0;
  background: var(--paper);
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.check input:checked {
  background: var(--green-900);
  border-color: var(--green-900);
}
.check input:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5 6.5 11.5 12.5 5' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.check a {
  color: var(--green-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check a:hover { color: var(--green-700); }
.cta-success { padding: 40px 24px; text-align: center; }
.cta-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-success-icon svg { width: 32px; height: 32px; }
.cta-success h3 { font-size: 22px; color: var(--green-900); margin-bottom: 12px; }
.cta-success p { color: var(--ink-700); font-size: 15px; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #07170E;
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.ft-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0 0 18px;
}
.ft-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-col a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: color .15s;
}
.ft-col a:hover { color: var(--green-300); }
.ft-brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.ft-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 20px 0 16px;
  max-width: 36ch;
}
.ft-brand a.parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green-300);
  font-weight: 600;
}
.ft-brand a.parent::after { content: '→'; transition: transform .15s; display: inline-block; }
.ft-brand a.parent:hover::after { transform: translateX(3px); }
.ft-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}
.ft-contact-item strong {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ft-contact-item a { color: rgba(255,255,255,.85); }
.ft-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.ft-bottom .ft-status { display: inline-flex; align-items: center; gap: 8px; }
.ft-bottom .ft-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 3px rgba(87,181,133,.2);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3);
  opacity: 0;
  transform: translateY(12px) scale(.92);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(.3,.7,.4,1), background .15s;
  z-index: 55;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover { background: var(--green-700); }
.to-top:focus-visible { outline: 2px solid var(--green-500); outline-offset: 3px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-3);
  padding: 20px 22px;
  z-index: 60;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(.3,.7,.4,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 6px; color: var(--green-900); }
.cookie-banner p { font-size: 0.875rem; color: var(--ink-500); margin-bottom: 16px; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cookie-banner .btn { padding: 0 16px; height: 38px; font-size: 0.875rem; }
.cookie-banner__link {
  background: transparent;
  color: var(--ink-500);
  text-decoration: underline;
  padding: 8px 12px;
  font-size: 0.875rem;
}

/* ============================================================
   LEGAL PAGES (preserved structure)
   ============================================================ */
.legal { padding: calc(72px + 56px) 0 96px; }
.legal__wrap { max-width: 800px; margin: 0 auto; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 32px;
}
.legal__back:hover { color: var(--green-700); }
.legal__wrap h1 { margin-bottom: 12px; }
.legal__updated {
  color: var(--ink-500);
  font-size: 0.875rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-100);
}
.legal__wrap h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.legal__wrap h3 { font-size: 1.125rem; margin: 28px 0 12px; }
.legal__wrap p, .legal__wrap li {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal__wrap ul, .legal__wrap ol { padding-left: 24px; margin-bottom: 16px; }
.legal__wrap ul li { list-style: disc; }
.legal__wrap ol li { list-style: decimal; }
.legal__wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9375rem;
}
.legal__wrap th, .legal__wrap td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--ink-100);
}
.legal__wrap th { background: var(--ink-50); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-copy { position: static; }
}

@media (max-width: 880px) {
  :root { --section-py: 80px; --gutter: 20px; }
  .sec-header { margin-bottom: 40px; }
  .lead { font-size: 17px; }
  .h-display { font-size: clamp(34px, 9vw, 48px); }
  .h-section { font-size: clamp(28px, 7vw, 38px); }
  .btn { height: 46px; }

  .site-header { height: 60px; }
  .hdr-nav { display: none; }
  .hdr-cta .btn:not(.btn-sm) { display: none; }
  .hdr-burger { display: inline-flex; }
  .hdr-mobile { display: block; top: 60px; }
  .hdr-logo img { height: 36px; width: auto; }

  .hero { padding-top: calc(60px + 40px); padding-bottom: 60px; }
  .hero-split { grid-template-columns: 1fr; gap: 56px; }
  .hero-phone-wrap { padding: 16px 0; transform: scale(.92); }
  .hero-cal-float { right: -20px; bottom: 0; }
  .hero-ping { left: -16px; }
  .cred-strip { gap: 16px; }
  .cred-sep { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr; }

  .vd-grid { grid-template-columns: 1fr; gap: 32px; }
  .vd-poster { padding: 24px; grid-template-columns: 1fr; }
  .vd-poster-r { display: none; }
  .vd-poster-l h3 { font-size: 20px; }

  .tst-wrap { grid-template-columns: 1fr; gap: 32px; }
  .tst-message { padding: 32px 24px; }

  .pricing-early { flex-direction: column; align-items: flex-start; }
  .pr-single { padding: 28px 24px; }
  .pr-twocol { grid-template-columns: 1fr; }
  .pr-twocol-l, .pr-twocol-r { padding: 28px 24px; }
  .sol-tl-body { grid-template-columns: 1fr; }
  .sol-tl-body .sol-icon { display: none; }

  .cta-form { padding: 28px 24px; }
  .cta-form-grid { grid-template-columns: 1fr; }

  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
}

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

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