/* =================================================================
   LOIT AGENTS — Sitio web completo
   styles.css  ·  TODO el CSS vive aquí (cero estilos inline)
   Estilo minimalista y tecnológico · inspirado en anthropic.com
   ----------------------------------------------------------------
   ÍNDICE
   1.  Variables (:root)
   2.  Reset / base
   3.  Layout helpers (container, section, pill, eyebrow)
   4.  Botones
   5.  Nav (inyectada por main.js)
   6.  Footer (inyectado por main.js)
   7.  Popup cookies
   8.  Popup WhatsApp (modal)
   9.  Hero
   10. Chat widget
   11. Barra de confianza
   12. Tarjetas + grids
   13. Split (texto | mockup) + mockup teléfono
   14. Vídeo
   15. Impacto (stats)
   16. Sectores preview
   17. Planes
   18. Proceso
   19. FAQ (acordeón)
   20. CTA final
   21. Páginas interiores (hero interior, prosa, listas check)
   22. Sectores (anclas sticky, casos)
   23. Tabla comparativa (planes)
   24. Demo (chips)
   25. Formularios
   26. Legal (prosa)
   27. Checkout (pago)
   28. Animaciones scroll
   29. Responsive
   ================================================================= */

/* -----------------------------------------------------------------
   1. VARIABLES
   ----------------------------------------------------------------- */
:root {
  /* Colores */
  --color-bg: #FAFAF8;
  --color-bg-alt: #F5F5F3;
  --color-bg-dark: #1A1A1A;
  --color-bg-darker: #111111;
  --color-accent: #1B4332;
  --color-accent-light: #E8F0EC;
  --color-text: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #9A9A9A;
  --color-border: #E5E5E3;
  --color-white: #FFFFFF;
  --color-trust-bg: #F0F0EE;

  /* Tipografía */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Escala desktop */
  --h1: 72px;
  --h2: 48px;
  --h3: 32px;
  --body: 18px;
  --small: 14px;

  /* Radios */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Layout */
  --section-gap: 120px;
  --max-width: 1200px;
  --gutter: 48px;
  --nav-height: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Escalas responsive (las medias queries reasignan al final) */

/* -----------------------------------------------------------------
   2. RESET / BASE
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 600; letter-spacing: -0.01em; }

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* -----------------------------------------------------------------
   3. LAYOUT HELPERS
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-gap); }
.section--alt { background: var(--color-bg-alt); }

/* Etiqueta pill (usada como eyebrow de sección) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .pill { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { font-size: var(--body); color: var(--color-text-secondary); margin-top: 20px; }

.lead { font-size: var(--body); color: var(--color-text-secondary); }

/* -----------------------------------------------------------------
   4. BOTONES
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: opacity 200ms var(--ease), background-color 200ms var(--ease),
    border-color 200ms var(--ease), color 200ms var(--ease), transform 120ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--color-bg-dark); color: var(--color-white); padding: 14px 28px; }
.btn--primary:hover { opacity: 0.85; }

.btn--secondary {
  background: transparent;
  border: 1.5px solid var(--color-bg-dark);
  color: var(--color-bg-dark);
  padding: 13px 27px;
}
.btn--secondary:hover { background: rgba(0, 0, 0, 0.04); }

.btn--accent { background: var(--color-accent); color: var(--color-white); padding: 14px 28px; }
.btn--accent:hover { opacity: 0.9; }

.btn--light { background: var(--color-white); color: var(--color-bg-dark); padding: 14px 28px; }
.btn--light:hover { opacity: 0.85; }

.btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  padding: 13px 27px;
}
.btn--outline-light:hover { border-color: var(--color-white); background: rgba(255, 255, 255, 0.08); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 18px; }

/* -----------------------------------------------------------------
   5. NAV
   ----------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease), background-color 250ms var(--ease);
  overflow: visible;
}
.nav.is-scrolled { border-bottom-color: var(--color-border); background: rgba(250, 250, 248, 0.95); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; color: var(--color-text); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--color-text-secondary);
  transition: color 200ms var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--color-text); }

.nav__cta { display: flex; align-items: center; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--color-text);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }

/* Overlay mobile (fondo oscuro) */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - var(--nav-height));
  background: #1A1A1A;
  z-index: 9999;
  padding: 40px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  overflow-y: auto;
}
.nav__mobile.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav__mobile a {
  font-size: 26px; font-weight: 600; color: var(--color-white);
  padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav__mobile .btn { margin-top: 28px; width: 100%; }
body.menu-open { overflow: hidden; }

/* Espaciador para el nav fijo en páginas interiores */
.nav-spacer { height: var(--nav-height); }

/* -----------------------------------------------------------------
   6. FOOTER
   ----------------------------------------------------------------- */
.footer { background: var(--color-bg-darker); color: rgba(255, 255, 255, 0.6); padding-block: 80px 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand .logo {
  font-size: 24px; font-weight: 700; color: var(--color-white);
  letter-spacing: -0.03em; display: block;
}
.footer__brand p { font-size: 15px; max-width: 280px; margin-top: 16px; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.footer__social a:hover { color: var(--color-white); border-color: rgba(255, 255, 255, 0.4); }
.footer__social svg { width: 20px; height: 20px; }

.footer__col h4 { font-size: 14px; font-weight: 600; color: var(--color-white); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col button {
  font-size: 15px; color: var(--color-text-muted); text-align: left;
  transition: color 200ms var(--ease);
}
.footer__col a:hover, .footer__col button:hover { color: var(--color-white); }

.footer__divider { height: 1px; background: #333; margin: 40px 0; }
.footer__bottom { font-size: 14px; color: #666; }

/* -----------------------------------------------------------------
   7. POPUP COOKIES
   ----------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 24px var(--gutter);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 350ms var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max-width); margin-inline: auto;
  display: flex; align-items: center; gap: 32px; justify-content: space-between;
}
.cookie-banner__text { font-size: 14px; color: var(--color-text-secondary); max-width: 640px; }
.cookie-banner__text a { color: var(--color-accent); font-weight: 500; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-banner__actions .btn { font-size: 14px; padding: 10px 18px; }
.cookie-banner__actions .btn--secondary { padding: 9px 17px; }
.cookie-config {
  background: none; color: var(--color-text-muted); font-size: 14px;
  text-decoration: underline; padding: 8px;
}
.cookie-config:hover { color: var(--color-text); }

/* -----------------------------------------------------------------
   8. POPUP WHATSAPP
   ----------------------------------------------------------------- */
.wa-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.wa-modal.is-open { opacity: 1; pointer-events: auto; }
.wa-modal__card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px; width: 100%;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 250ms var(--ease);
}
.wa-modal.is-open .wa-modal__card { transform: translateY(0) scale(1); }
.wa-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.wa-modal__close:hover { background: var(--color-bg-alt); color: var(--color-text); }
.wa-modal__close svg { width: 18px; height: 18px; }
.wa-modal__header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-right: 32px; }
.wa-modal__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 20px; flex-shrink: 0;
}
.wa-modal__name { font-size: 16px; font-weight: 700; color: var(--color-text); }
.wa-modal__status { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-muted); }
.wa-modal__status .dot { width: 7px; height: 7px; border-radius: 50%; background: #22A06B; }
.wa-modal__bubble {
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: 4px 14px 14px 14px;
  padding: 14px 16px;
  font-size: 15px; color: var(--color-text);
  margin-bottom: 16px;
}
.wa-modal__input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px; color: var(--color-text);
  background: var(--color-bg);
  margin-bottom: 16px;
  resize: vertical;
  min-height: 48px;
}
.wa-modal__input:focus { outline: none; border-color: var(--color-accent); }
.wa-modal__btn {
  width: 100%;
  background: var(--color-accent); color: var(--color-white);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600;
  transition: opacity 200ms var(--ease);
}
.wa-modal__btn:hover { opacity: 0.9; }
.wa-modal__btn svg { width: 20px; height: 20px; }
.wa-modal__note { text-align: center; font-size: 13px; color: var(--color-text-muted); margin-top: 12px; }

/* -----------------------------------------------------------------
   9. HERO
   ----------------------------------------------------------------- */
.hero { padding-top: 160px; padding-bottom: var(--section-gap); text-align: center; }
.hero .pill { margin-bottom: 32px; }
.hero h1 { font-size: var(--h1); max-width: 14ch; margin-inline: auto; }
.hero__subtitle { font-size: 20px; color: var(--color-text-secondary); max-width: 600px; margin: 28px auto 40px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__microcopy { font-size: var(--small); color: var(--color-text-muted); margin-top: 24px; }

/* Hero interior (páginas) */
.hero-inner { padding-top: 140px; padding-bottom: 64px; text-align: center; }
.hero-inner .pill { margin-bottom: 24px; }
.hero-inner h1 { font-size: clamp(40px, 6vw, 64px); max-width: 16ch; margin-inline: auto; }
.hero-inner p { font-size: 20px; color: var(--color-text-secondary); max-width: 620px; margin: 24px auto 0; }

/* -----------------------------------------------------------------
   10. CHAT WIDGET
   ----------------------------------------------------------------- */
.chat-widget {
  width: 100%;
  max-width: 480px;
  margin: 48px auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: left;
}
.chat-widget--lg { max-width: 600px; }

.chat-widget__header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--color-accent);
  color: var(--color-white);
}
.chat-widget__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-bg-dark); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px; flex-shrink: 0;
}
.chat-widget__meta { display: flex; flex-direction: column; line-height: 1.3; }
.chat-widget__name { font-size: 16px; font-weight: 600; }
.chat-widget__status { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.chat-widget__status .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.chat-messages {
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--color-white);
  min-height: 200px; max-height: 300px;
  overflow-y: auto;
}
.chat-widget--lg .chat-messages { max-height: 380px; min-height: 280px; }

.bubble { max-width: 82%; padding: 12px 16px; font-size: 15px; line-height: 1.55; }
.bubble--client {
  align-self: flex-end;
  background: var(--color-border);
  color: var(--color-text);
  border-radius: 18px 18px 4px 18px;
}
.bubble--agent {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 18px 18px 18px 4px;
}

.chat-counter {
  text-align: center; font-size: 13px; color: var(--color-text-muted);
  padding: 10px; background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}
.chat-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}
.chat-input-row input {
  flex: 1; border: none; outline: none;
  padding: 10px 4px; font-size: 15px; color: var(--color-text);
  background: transparent;
}
.chat-send {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--color-accent); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 200ms var(--ease);
}
.chat-send:hover { opacity: 0.85; }
.chat-send svg { width: 18px; height: 18px; }

.chat-limit-message {
  padding: 24px 20px; text-align: center;
  background: var(--color-accent-light);
  border-top: 1px solid var(--color-border);
}
.chat-limit-message p { font-size: 18px; font-weight: 600; color: var(--color-text); margin-bottom: 12px; }
.chat-limit-message[hidden] { display: none; }

/* Chips de ejemplo (demo) */
.chat-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.chat-chip {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: 100px; padding: 8px 16px; font-size: 14px;
  color: var(--color-text-secondary);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.chat-chip:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* -----------------------------------------------------------------
   11. BARRA DE CONFIANZA
   ----------------------------------------------------------------- */
.trust { background: var(--color-trust-bg); padding-block: 20px; }
.trust__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 24px;
}
.trust__label { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted); }
.trust__items { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.trust__items span { font-size: 15px; font-weight: 500; color: var(--color-text-secondary); position: relative; }
.trust__items span:not(:last-child)::after { content: "·"; position: absolute; right: -14px; color: var(--color-text-muted); }

/* -----------------------------------------------------------------
   12. TARJETAS + GRIDS
   ----------------------------------------------------------------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow 200ms var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); }
.card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { font-size: 16px; color: var(--color-text-secondary); }

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

/* -----------------------------------------------------------------
   13. SPLIT (texto | mockup) + MOCKUP TELÉFONO
   ----------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split__text .pill { margin-bottom: 20px; }
.split__text h2 { margin-bottom: 28px; }
.split__text p { margin-bottom: 20px; }
.split__text p:last-child { margin-bottom: 0; }

/* Teléfono CSS puro */
.phone {
  width: 300px; max-width: 100%;
  margin-inline: auto;
  background: var(--color-bg-dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-md);
}
.phone__screen {
  background: #ECE5DD;
  border-radius: 26px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.phone__bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-accent); color: var(--color-white);
  padding: 16px 16px 14px;
}
.phone__bar .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
}
.phone__bar .name { font-size: 14px; font-weight: 600; }
.phone__bar .sub { font-size: 11px; opacity: 0.8; }
.phone__chat { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }
.wa-bubble {
  max-width: 82%; padding: 9px 12px; font-size: 13.5px; line-height: 1.45;
  border-radius: 10px; color: #111; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.wa-bubble .time { display: block; font-size: 10px; color: rgba(0, 0, 0, 0.4); text-align: right; margin-top: 3px; }
.wa-bubble--in { align-self: flex-start; background: var(--color-white); }
.wa-bubble--out { align-self: flex-end; background: #DCF8C6; }

/* -----------------------------------------------------------------
   14. VÍDEO
   ----------------------------------------------------------------- */
.video-player {
  position: relative;
  width: 100%; max-width: 800px; margin: 16px auto 0;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; cursor: pointer; overflow: hidden;
}
.video-player__play {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  transition: transform 250ms var(--ease), background-color 250ms var(--ease);
}
.video-player:hover .video-player__play { transform: scale(1.08); background: rgba(255, 255, 255, 0.2); }
.video-player__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-player__label { color: rgba(255, 255, 255, 0.7); font-size: 15px; font-weight: 500; }

/* -----------------------------------------------------------------
   15. IMPACTO (stats)
   ----------------------------------------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 24px; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--color-border);
}
.stat__number { font-size: 64px; font-weight: 700; letter-spacing: -0.03em; color: var(--color-accent); line-height: 1; }
.stat__title { font-size: 20px; font-weight: 600; color: var(--color-text); margin: 16px 0 10px; }
.stat p { font-size: 16px; color: var(--color-text-secondary); }

/* -----------------------------------------------------------------
   16. SECTORES PREVIEW
   ----------------------------------------------------------------- */
.sector-card { display: flex; flex-direction: column; }
.sector-card__emoji { font-size: 32px; margin-bottom: 16px; }
.sector-card h3 { font-size: 20px; margin-bottom: 12px; }
.sector-card p { font-size: 16px; margin-bottom: 18px; }
.sector-card__link {
  margin-top: auto; font-size: 15px; font-weight: 600; color: var(--color-accent);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 200ms var(--ease);
}
.sector-card__link:hover { gap: 8px; }
.section-foot { text-align: center; margin-top: 48px; }

/* -----------------------------------------------------------------
   17. PLANES
   ----------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: box-shadow 200ms var(--ease);
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan--featured { border: 2px solid var(--color-accent); box-shadow: var(--shadow-sm); }
.plan__badge {
  align-self: flex-start;
  background: var(--color-accent); color: var(--color-white);
  font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.plan__name { font-size: 18px; font-weight: 600; color: var(--color-text); }
.plan__price { font-size: 44px; font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; margin-top: 8px; }
.plan__price span { font-size: 16px; font-weight: 500; color: var(--color-text-muted); }
.plan__features { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.plan__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--color-text-secondary); }
.plan__features svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent); margin-top: 1px; }
.plan__ideal { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; }
.plan .btn { width: 100%; margin-top: auto; }

.plans-note { text-align: center; margin-top: 40px; font-size: 16px; color: var(--color-text-secondary); }
.plans-note a, .link-accent { color: var(--color-accent); font-weight: 600; }
.plans-note a:hover, .link-accent:hover { text-decoration: underline; }

/* -----------------------------------------------------------------
   18. PROCESO
   ----------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 22px; left: 12%; right: 12%;
  height: 1px; background: var(--color-border); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; margin-bottom: 20px;
}
.step__time { display: inline-block; font-size: 13px; font-weight: 600; color: var(--color-accent);
  background: var(--color-accent-light); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--color-text-secondary); }

.callout {
  margin: 48px auto 0; max-width: 600px;
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 17px; font-weight: 500; color: var(--color-text);
}

/* -----------------------------------------------------------------
   19. FAQ
   ----------------------------------------------------------------- */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 8px; padding-bottom: 12px;
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; padding: 24px 0; font-size: 19px; font-weight: 600; color: var(--color-text);
}
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--color-text);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 300ms var(--ease); }
.faq-answer__inner { padding-bottom: 24px; font-size: 16px; color: var(--color-text-secondary); max-width: 760px; }

/* -----------------------------------------------------------------
   20. CTA FINAL
   ----------------------------------------------------------------- */
.cta { background: var(--color-bg-dark); text-align: center; }
.cta h2 { color: var(--color-white); font-size: 56px; }
.cta__subtitle { font-size: 20px; color: rgba(255, 255, 255, 0.7); max-width: 560px; margin: 24px auto 40px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__microcopy { font-size: var(--small); color: rgba(255, 255, 255, 0.5); margin-top: 28px; }

/* -----------------------------------------------------------------
   21. PÁGINAS INTERIORES — prosa + listas check
   ----------------------------------------------------------------- */
.prose-section { padding-block: 64px; }
.prose-section + .prose-section { padding-top: 0; }
.prose-block { max-width: 760px; }
.prose-block h2 { font-size: var(--h3); margin-bottom: 24px; }
.prose-block p { font-size: var(--body); color: var(--color-text-secondary); margin-bottom: 20px; }
.prose-block p:last-child { margin-bottom: 0; }

.highlight-text {
  font-size: 22px; font-weight: 500; color: var(--color-text);
  line-height: 1.5; max-width: 760px; margin-bottom: 28px;
  text-wrap: balance;
}

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--color-text-secondary); }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent); margin-top: 3px; }
.check-list strong { color: var(--color-text); font-weight: 600; }

.note-soft {
  margin-top: 20px; font-size: 15px; color: var(--color-text-muted); font-style: italic;
}

/* Flujo con flechas (pedidos/stock) */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: 8px; }
.flow__step {
  flex: 1; min-width: 160px;
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.flow__step .t { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-accent); }
.flow__step .d { font-size: 15px; color: var(--color-text-secondary); }
.flow__arrow { display: flex; align-items: center; color: var(--color-text-muted); }
.flow__arrow svg { width: 24px; height: 24px; }

/* Ejemplos de órdenes (chat oscuro) */
.order-examples { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.order-bubble {
  background: var(--color-accent); color: var(--color-white);
  padding: 12px 16px; border-radius: 14px 14px 4px 14px;
  font-size: 15px; align-self: flex-end; max-width: 90%;
}

/* -----------------------------------------------------------------
   22. SECTORES — anclas sticky + casos
   ----------------------------------------------------------------- */
.anchor-nav {
  position: sticky; top: var(--nav-height); z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.anchor-nav__inner {
  display: flex; gap: 8px; overflow-x: auto; padding: 14px var(--gutter);
  max-width: var(--max-width); margin-inline: auto;
  scrollbar-width: none;
}
.anchor-nav__inner::-webkit-scrollbar { display: none; }
.anchor-nav a {
  white-space: nowrap; font-size: 14px; font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 16px; border-radius: 100px;
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.anchor-nav a:hover, .anchor-nav a.is-active { background: var(--color-accent); color: var(--color-white); }

.sector-block { padding-block: 72px; border-bottom: 1px solid var(--color-border); }
.sector-block:last-child { border-bottom: none; }
.sector-block__head { max-width: 760px; margin-bottom: 32px; }
.sector-block h2 { font-size: var(--h3); }
.sector-block__sub { font-size: 17px; color: var(--color-text-muted); margin-top: 8px; }

.case-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.case-card {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 20px;
  font-size: 15px; font-weight: 600; color: var(--color-text);
  display: flex; align-items: center; gap: 12px;
}
.case-card::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }

.manages-title { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); margin: 28px 0 16px; }

/* -----------------------------------------------------------------
   23. TABLA COMPARATIVA
   ----------------------------------------------------------------- */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%; border-collapse: collapse; min-width: 640px;
  background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  overflow: hidden;
}
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--color-border); }
.compare thead th { font-size: 16px; font-weight: 700; color: var(--color-text); background: var(--color-bg-alt); }
.compare thead th.featured { color: var(--color-accent); }
.compare tbody th { text-align: left; font-weight: 500; color: var(--color-text-secondary); font-size: 15px; }
.compare td { font-size: 15px; color: var(--color-text); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }
.compare .yes { color: var(--color-accent); font-weight: 600; }
.compare .no { color: var(--color-text-muted); }
.compare .col-featured { background: rgba(27, 67, 50, 0.04); }

/* -----------------------------------------------------------------
   24. DEMO chips ya en sección 10
   ----------------------------------------------------------------- */

/* -----------------------------------------------------------------
   25. FORMULARIOS
   ----------------------------------------------------------------- */
.form-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--color-text); }
.field input, .field select, .field textarea {
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 13px 14px; font-size: 16px; color: var(--color-text); background: var(--color-white);
  transition: border-color 200ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-secondary); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--color-accent); }

.contact-aside {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 32px;
}
.contact-aside h3 { font-size: 18px; margin-bottom: 20px; }
.contact-aside dl { display: flex; flex-direction: column; gap: 18px; }
.contact-aside dt { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); }
.contact-aside dd { font-size: 16px; color: var(--color-text); margin-top: 4px; }

/* -----------------------------------------------------------------
   26. LEGAL (prosa)
   ----------------------------------------------------------------- */
.legal { max-width: 760px; margin-inline: auto; padding-bottom: var(--section-gap); }
.legal h3 { font-size: 22px; margin: 40px 0 14px; }
.legal p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 16px; }
.legal ul { display: flex; flex-direction: column; gap: 8px; margin: 0 0 16px 0; padding-left: 22px; list-style: disc; }
.legal li { font-size: 16px; color: var(--color-text-secondary); }
.legal strong { color: var(--color-text); }
.legal__meta { font-size: 14px; color: var(--color-text-muted); margin-top: 8px; }

/* -----------------------------------------------------------------
   27. CHECKOUT (pago)
   ----------------------------------------------------------------- */
.checkout { padding-top: 100px; padding-bottom: 80px; }
.checkout__back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; transition: color 200ms var(--ease); }
.checkout__back:hover { color: var(--color-text); }
.checkout__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.checkout h1 { font-size: 32px; margin-bottom: 28px; }

.pay-section { margin-bottom: 32px; }
.pay-section__title { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); margin-bottom: 14px; }

.pay-wallet { display: flex; flex-direction: column; gap: 10px; }
.pay-wallet__btn {
  width: 100%; height: 52px; background: var(--color-bg-dark); color: var(--color-white);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 600; transition: opacity 200ms var(--ease);
}
.pay-wallet__btn:hover { opacity: 0.85; }
.pay-wallet__btn svg { height: 22px; width: auto; }

.pay-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--color-text-muted); font-size: 14px; }
.pay-divider::before, .pay-divider::after { content: ""; flex: 1; height: 1px; background: var(--color-border); }

.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.pay-method {
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 14px 10px; text-align: center; font-size: 14px; font-weight: 500; color: var(--color-text-secondary);
  background: var(--color-white); transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.pay-method.is-selected { border-color: var(--color-accent); color: var(--color-text); box-shadow: inset 0 0 0 1px var(--color-accent); }
.pay-method small { display: block; font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

.card-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.card-fields[hidden] { display: none; }

.divider-line { height: 1px; background: var(--color-border); margin: 8px 0 28px; }

.summary {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 32px; position: sticky; top: 96px;
}
.summary__plan { font-size: 24px; font-weight: 700; color: var(--color-text); }
.summary__label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); margin: 24px 0 14px; }
.summary__features { display: flex; flex-direction: column; gap: 10px; }
.summary__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-secondary); }
.summary__features svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-accent); margin-top: 1px; }
.summary__divider { height: 1px; background: var(--color-border); margin: 24px 0; }
.summary__line { display: flex; justify-content: space-between; font-size: 15px; color: var(--color-text-secondary); margin-bottom: 12px; }
.summary__total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; color: var(--color-text); margin-top: 4px; }
.summary .btn { margin-top: 24px; }

.legal-fineprint { font-size: 12px; color: var(--color-text-muted); margin-top: 16px; line-height: 1.6; }
.legal-fineprint a { color: var(--color-text-secondary); text-decoration: underline; }

/* -----------------------------------------------------------------
   28. ANIMACIONES SCROLL
   ----------------------------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 400ms ease-out, transform 400ms ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =================================================================
   29. RESPONSIVE
   ================================================================= */
@media (max-width: 1199px) {
  :root {
    --h1: 52px; --h2: 38px; --h3: 26px;
    --section-gap: 80px;
  }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .split { gap: 48px; }
  .plans { grid-template-columns: repeat(3, minmax(280px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .plan { scroll-snap-align: start; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .checkout__grid { grid-template-columns: 1fr; gap: 40px; }
  .summary { position: static; order: -1; }
  .cta h2 { font-size: 44px; }
}

@media (max-width: 767px) {
  :root {
    --h1: 40px; --h2: 32px; --h3: 22px;
    --body: 16px; --section-gap: 60px;
    --gutter: 24px;
  }
  body { font-size: 16px; }
  .hero { padding-top: 120px; }
  .hero__subtitle { font-size: 17px; }
  .hero__actions, .cta__actions { flex-direction: column; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .grid--3, .grid--2, .split { grid-template-columns: 1fr; }
  .split { gap: 40px; }
  .plans { grid-template-columns: 1fr; overflow: visible; }
  .steps { grid-template-columns: 1fr; row-gap: 0; }
  .step { padding-left: 64px; padding-bottom: 32px; }
  .step:last-child { padding-bottom: 0; }
  .step__num { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 1px; background: var(--color-border); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .stat:not(:last-child) { border-bottom: 1px solid var(--color-border); }
  .stat__number { font-size: 56px; }
  .section-head { margin-bottom: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .trust__inner { flex-direction: column; gap: 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; flex-wrap: wrap; }
  .cta h2 { font-size: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------
   30. ESTADOS DINÁMICOS (añadidos por JS — no modificar diseño base)
   ----------------------------------------------------------------- */

/* Chat: burbuja "escribiendo..." */
.bubble--typing { padding: 14px 18px; }
.typing-dots { display: inline-flex; gap: 5px; align-items: center; }
.typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: typing-bounce 1.2s var(--ease) infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-row.is-disabled { opacity: 0.55; pointer-events: none; }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

.chat-limit-message.is-visible { animation: fade-in-up 350ms var(--ease) forwards; }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-chip.is-used {
  opacity: 0.45; pointer-events: none;
  border-color: var(--color-border); color: var(--color-text-muted);
}

/* Formularios: errores de validación */
.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.checkbox.has-error input {
  border-color: #C0392B;
}
.field__error {
  font-size: 13px; color: #C0392B; margin-top: 2px;
}

/* Botón loading con spinner */
.btn.is-loading {
  position: relative; color: transparent !important; pointer-events: none;
}
.btn.is-loading::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  width: 20px; height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--secondary.is-loading::after {
  border-color: rgba(27, 67, 50, 0.25);
  border-top-color: var(--color-accent);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Checkout: campos desplegables y modal éxito */
.card-fields.is-visible,
#company-fields.is-visible {
  animation: slide-down 250ms var(--ease) forwards;
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkout-modal {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.checkout-modal.is-open { opacity: 1; pointer-events: auto; }
.checkout-modal__card {
  background: var(--color-white); border-radius: var(--radius-md);
  padding: 40px 32px; max-width: 420px; width: 100%; text-align: center;
  box-shadow: var(--shadow-md);
  transform: translateY(12px) scale(0.98);
  transition: transform 250ms var(--ease);
}
.checkout-modal.is-open .checkout-modal__card {
  transform: translateY(0) scale(1);
}
.checkout-modal__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent-light); color: var(--color-accent);
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.checkout-modal__card h2 { font-size: 24px; margin-bottom: 12px; }
.checkout-modal__card p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 24px; }

/* Contacto: mensaje de resultado */
.contact-result {
  max-width: 560px; padding: 48px 32px; text-align: center;
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.contact-result__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent-light); color: var(--color-accent);
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-result h2 { font-size: 24px; margin-bottom: 12px; }
.contact-result p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 24px; }
