/* ═══════════════════════════════════════════
   CAFÉ ALMA — Design System
   ═══════════════════════════════════════════ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* 2. DESIGN TOKENS */
:root {
  /* Colors */
  --bg:            #0D0502;
  --bg-2:          #1A0E08;
  --bg-3:          #120A05;
  --text:          #FDF8F0;
  --text-muted:    rgba(253,248,240,0.60);
  --text-faint:    rgba(253,248,240,0.35);
  --accent:        #D97706;
  --accent-light:  #F59E0B;
  --accent-pale:   #FDE68A;
  --cream:         #FDF8F0;

  /* Accent opacity tokens */
  --accent-5:  rgba(217,119,6,0.05);
  --accent-10: rgba(217,119,6,0.10);
  --accent-20: rgba(217,119,6,0.20);
  --accent-30: rgba(217,119,6,0.30);
  --accent-40: rgba(217,119,6,0.40);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  36px;
  --radius-full: 9999px;

  /* Z-index */
  --z-canvas:   0;
  --z-noise:    1;
  --z-base:     2;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Container */
  --container-xl: 1200px;
  --gutter:       24px;
}

/* 3. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 4. SHADER CANVAS */
#shader-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: var(--z-canvas);
  display: block;
  background: #0D0502;
}

/* 5. NOISE OVERLAY */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-noise);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

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

/* 7. KEYFRAMES */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(32px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  50%       { transform: translateY(-28px) rotate(180deg); opacity: 0.15; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 24px var(--accent-30); }
  50%       { box-shadow: 0 0 48px var(--accent-40); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 8. SCROLL ANIMATION */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1),
              filter 0.8s cubic-bezier(0.16,1,0.3,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 9. GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--accent-light) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-md) 0;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(13,5,2,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(217,119,6,0.12);
  padding: var(--space-sm) 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-icon {
  color: var(--accent);
  font-size: 10px;
  line-height: 1;
}
.logo-text em {
  font-style: italic;
  color: var(--accent-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #0D0502;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 20px var(--accent-20);
}
.btn-nav:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--accent-30);
}
.btn-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-nav:active { transform: translateY(1px) scale(0.97); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: calc(var(--z-sticky) + 1);
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(13,5,2,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 24px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--text); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent-light); }
.mobile-cta {
  margin-top: var(--space-md);
  padding: 14px 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #0D0502;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  z-index: var(--z-base);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: glowPulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw + 1rem, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 800px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #0D0502;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow:
    0 1px 2px rgba(13,5,2,0.10),
    0 4px 12px rgba(13,5,2,0.15),
    0 0 32px var(--accent-20);
}
.btn-pill:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(13,5,2,0.2),
    0 0 48px var(--accent-30);
}
.btn-pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-pill:active { transform: translateY(1px) scale(0.97); }
.btn-arrow { transition: transform 0.2s; }
.btn-pill:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid rgba(253,248,240,0.15);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-ghost:hover {
  border-color: var(--accent-30);
  color: var(--text);
  background: var(--accent-5);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-ghost:active { transform: translateY(1px) scale(0.97); }

/* HERO PROOF */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.proof-avatars {
  display: flex;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  margin-left: -8px;
}
.proof-avatars .avatar:first-child { margin-left: 0; }
.proof-text {
  font-size: 13px;
  color: var(--text-muted);
}
.proof-stars {
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 2px;
}

/* PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
section {
  position: relative;
  z-index: var(--z-base);
  padding: var(--space-4xl) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
#pricing {
  background: radial-gradient(ellipse at 50% 0%, rgba(217,119,6,0.06) 0%, transparent 70%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

/* COFFEE CARD */
.coffee-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.coffee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-10);
  border-color: rgba(217,119,6,0.20);
}
.coffee-card:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

/* POPULAR CARD */
.card-popular {
  background: linear-gradient(145deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(217,119,6,0.30);
  box-shadow:
    0 4px 32px rgba(0,0,0,0.5),
    0 0 60px var(--accent-10),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-8px);
}
.card-popular:hover {
  transform: translateY(-16px);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.6),
    0 0 80px var(--accent-20),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.popular-badge {
  position: absolute;
  top: -1px; right: 20px;
  padding: 5px 14px;
  background: var(--accent);
  color: #0D0502;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 2;
}

/* CARD IMAGE */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.coffee-card:hover .card-image { transform: scale(1.05); }
.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,5,2,0.7) 100%);
}

/* CARD BODY */
.card-body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
}
.card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  line-height: 1.5;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: 13px;
  color: var(--text-faint);
}
.card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  margin-bottom: var(--space-md);
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.card-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: rgba(253,248,240,0.80);
  line-height: 1.4;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-20);
  color: var(--accent-light);
  font-size: 10px;
  flex-shrink: 0;
}

/* CARD BUTTON */
.btn-card {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-top: auto;
}
.btn-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}
.btn-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-card:active { transform: translateY(1px) scale(0.98); }

.btn-card-popular {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D0502;
  font-weight: 600;
  box-shadow: 0 0 24px var(--accent-30);
}
.btn-card-popular:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 0 40px var(--accent-40);
}

/* ═══════════════════════════════════════════
   PROCESO
   ═══════════════════════════════════════════ */
#proceso {
  background: radial-gradient(ellipse at 20% 50%, rgba(217,119,6,0.04) 0%, transparent 60%);
}
.proceso-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.proceso-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}
.step-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
}
.proceso-step:hover .step-icon-wrap {
  background: var(--accent-20);
  box-shadow: 0 0 32px var(--accent-20);
  transform: scale(1.05);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}
.proceso-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--accent-20), var(--accent-30), var(--accent-20));
  margin-top: 108px;
  position: relative;
}
.proceso-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-40);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
#testimonials {
  background: radial-gradient(ellipse at 80% 50%, rgba(217,119,6,0.05) 0%, transparent 60%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-20);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.testimonial-stars {
  color: var(--accent-light);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.author-role {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  position: relative;
  z-index: var(--z-base);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-3xl) 0 0;
  background: rgba(13,5,2,0.6);
  backdrop-filter: blur(8px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  align-items: start;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.7;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-style: italic;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-xs);
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-end;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--accent-30);
  color: var(--accent-light);
  background: var(--accent-10);
  transform: translateY(-2px);
}
.social-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 12px;
  color: var(--text-faint);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}
.footer-bottom-links a {
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.success { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); }
.toast.error   { background: rgba(239,68,68,0.15);  border-color: rgba(239,68,68,0.3); }
.toast.info    { background: rgba(217,119,6,0.15);  border-color: rgba(217,119,6,0.3); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .card-popular { transform: none; }
  .card-popular:hover { transform: translateY(-8px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .proceso-grid { flex-direction: column; align-items: center; }
  .proceso-connector { width: 1px; height: 40px; margin: 0; background: linear-gradient(to bottom, var(--accent-20), var(--accent-30), var(--accent-20)); }
  .proceso-connector::after { right: -3px; top: auto; bottom: -4px; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-social { flex-direction: row; align-items: flex-start; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-proof { flex-wrap: wrap; justify-content: center; }
  .br-desktop { display: none; }
  section { padding: var(--space-2xl) 0; }
  .section-header { margin-bottom: var(--space-xl); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-pill, .btn-ghost { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; filter: none; }
}