/* === EARLY ADOPTERS LANDING PAGE - REDESIGN === */
/* Professional but fun - with floating balloons */

:root {
  --ea-primary: #6366f1;      /* Indigo - professional */
  --ea-secondary: #f59e0b;    /* Amber - warm accent */
  --ea-accent: #10b981;       /* Emerald - success */
  --ea-dark: #1e293b;         /* Slate dark */
  --ea-light: #f8fafc;        /* Slate light */
  --ea-gold: #fbbf24;         /* Gold for elite */
  --ea-purple: #8b5cf6;       /* Purple for founders */
}

.landing-page {
  font-family: var(--font-family);
  color: var(--ea-dark);
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--ea-light) 50%, #fff 100%);
  min-height: 100vh;
}

/* === FLOATING BALLOONS BACKGROUND === */
.balloons-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.balloon {
  position: absolute;
  opacity: 0.16;
  animation-name: floatBalloon;
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.balloon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.balloon-1 { width: 80px; left: 5%; top: 10%; animation-duration: 16s; animation-delay: 0s; }
.balloon-2 { width: 60px; left: 15%; top: 60%; animation-duration: 19s; animation-delay: -5s; animation-name: floatBalloonAlt; }
.balloon-3 { width: 100px; left: 85%; top: 20%; animation-duration: 14s; animation-delay: -10s; }
.balloon-4 { width: 70px; left: 75%; top: 70%; animation-duration: 21s; animation-delay: -3s; animation-name: floatBalloonAlt; }
.balloon-5 { width: 50px; left: 50%; top: 40%; animation-duration: 17s; animation-delay: -8s; }
.balloon-6 { width: 90px; left: 25%; top: 80%; animation-duration: 20s; animation-delay: -12s; animation-name: floatBalloonAlt; }
.balloon-7 { width: 65px; left: 90%; top: 50%; animation-duration: 15s; animation-delay: -7s; }
.balloon-8 { width: 55px; left: 40%; top: 15%; animation-duration: 22s; animation-delay: -15s; animation-name: floatBalloonAlt; }

.balloon-1 svg { color: #f87171; }
.balloon-2 svg { color: #60a5fa; }
.balloon-3 svg { color: #fbbf24; }
.balloon-4 svg { color: #34d399; }
.balloon-5 svg { color: #a78bfa; }
.balloon-6 svg { color: #f472b6; }
.balloon-7 svg { color: #38bdf8; }
.balloon-8 svg { color: #fb923c; }

/* Drifts right, then left, with a slight clockwise wobble */
@keyframes floatBalloon {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  25%  { transform: translate(12px, -34px) rotate(3deg); }
  50%  { transform: translate(-6px, -18px) rotate(-2deg); }
  75%  { transform: translate(9px, -46px) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(-4deg); }
}

/* Mirror of floatBalloon so alternating balloons don't drift in lockstep */
@keyframes floatBalloonAlt {
  0%   { transform: translate(0, 0) rotate(4deg); }
  25%  { transform: translate(-13px, -30px) rotate(-3deg); }
  50%  { transform: translate(7px, -14px) rotate(2deg); }
  75%  { transform: translate(-10px, -42px) rotate(-4deg); }
  100% { transform: translate(0, 0) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .balloon {
    animation: none;
  }
}

/* === HERO SECTION === */
.section-hero {
  background: transparent;
  padding: 5rem 2rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ea-light);
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.badge-text {
  color: var(--ea-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--ea-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--ea-primary);
}

.feature-item span {
  font-weight: 500;
  color: var(--ea-dark);
  font-size: 0.9rem;
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-family);
}

.btn-hero.btn-primary {
  background: var(--ea-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-hero.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: #4f46e5;
}

.btn-hero.btn-secondary {
  background: #fff;
  color: var(--ea-dark);
  border: 1px solid #e2e8f0;
}

.btn-hero.btn-secondary:hover {
  border-color: var(--ea-primary);
  color: var(--ea-primary);
}

.btn-hero.btn-demo {
  background: var(--ea-secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-hero.btn-demo:hover {
  transform: translateY(-2px);
  background: #d97706;
}

/* Hero Promo Cards */
.hero-promo {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.promo-card.elite {
  border-color: var(--ea-gold);
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.promo-card.member {
  border-color: var(--ea-purple);
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
}

.promo-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-badge.elite {
  background: var(--ea-gold);
  color: #78350f;
}

.promo-badge.member {
  background: var(--ea-purple);
  color: #fff;
}

.promo-timer {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.8rem;
}

.promo-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1rem;
}

.new-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ea-primary);
}

.price-forever {
  background: var(--ea-accent);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.promo-content p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}

/* === STATS SECTION === */
.section-stats {
  padding: 5rem 2rem;
  background: #fff;
  position: relative;
}

.section-stats .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  background: var(--ea-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--ea-primary);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ea-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* === PRICING SECTION === */
.section-pricing {
  background: rgba(248, 250, 252, 0.85);
  padding: 6rem 2rem;
  position: relative;
}

.heading-2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ea-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.pricing-card.founders-elite {
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
  border-color: var(--ea-gold);
}

.pricing-card.founding-member {
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
  border-color: var(--ea-purple);
}

.pricing-card.enterprise {
  background: linear-gradient(135deg, var(--ea-dark) 0%, #0f172a 100%);
  border: none;
}

.pricing-card.enterprise .plan-name,
.pricing-card.enterprise .plan-price {
  color: #fff;
}

.pricing-card.enterprise .plan-tagline,
.pricing-card.enterprise .price-note,
.pricing-card.enterprise .plan-features li {
  color: #94a3b8;
}

.pricing-card.enterprise .plan-features li strong {
  color: #fff;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.featured-badge.elite {
  background: var(--ea-gold);
  color: #78350f;
}

.featured-badge.member {
  background: var(--ea-purple);
  color: #fff;
}

.enterprise-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.countdown-badge {
  background: #fef2f2;
  color: #dc2626;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}

.plan-content {
  margin-top: 0.5rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ea-dark);
  margin-bottom: 0.25rem;
}

.plan-tagline {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ea-primary);
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.price-strike {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.price-note {
  color: #64748b;
  font-size: 0.85rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.plan-features li {
  padding: 0.6rem 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li strong {
  color: var(--ea-dark);
  font-weight: 600;
}

.plan-features li::before {
  content: '✓';
  color: var(--ea-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-features li.feature-unavailable {
  opacity: 0.4;
  text-decoration: line-through;
}

.plan-features li.feature-unavailable::before {
  content: '✗';
  color: #cbd5e1;
}

.savings-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
  text-align: center;
}

.savings-box p {
  margin: 0.25rem 0;
  color: var(--ea-dark);
  font-size: 0.9rem;
}

.savings-box .highlight {
  color: var(--ea-accent);
  font-weight: 700;
  font-size: 1rem;
}

.enterprise-highlight {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
  text-align: center;
}

.enterprise-highlight p {
  color: #c7d2fe;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.enterprise-highlight p:first-child {
  color: var(--ea-gold);
  font-weight: 600;
}

.plan-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-large {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  font-family: var(--font-family);
}

.btn-large.btn-primary {
  background: var(--ea-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-large.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-large.btn-secondary {
  background: #fff;
  color: var(--ea-dark);
  border: 1px solid #e2e8f0;
}

.btn-large.btn-secondary:hover {
  border-color: var(--ea-primary);
  color: var(--ea-primary);
}

.btn-large.btn-founder-elite {
  background: linear-gradient(135deg, var(--ea-gold) 0%, #f59e0b 100%);
  color: #78350f;
  font-weight: 700;
}

.btn-large.btn-founder-elite:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.btn-large.btn-founding-member {
  background: linear-gradient(135deg, var(--ea-purple) 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 700;
}

.btn-large.btn-founding-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-large.btn-enterprise {
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  color: #fff;
}

.btn-large.btn-enterprise:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-large.btn-demo {
  background: var(--ea-secondary);
  color: #fff;
}

.btn-large.btn-demo:hover {
  transform: translateY(-2px);
  background: #d97706;
}

.btn-large.btn-calendly {
  background: var(--ea-accent);
  color: #fff;
}

.btn-large.btn-calendly:hover {
  transform: translateY(-2px);
  background: #059669;
}

.urgency-text {
  margin-top: 0.75rem;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-grid-founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto;
}

.other-plans {
  text-align: center;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.95rem;
}

.other-plans a {
  color: var(--ea-primary);
  text-decoration: none;
  font-weight: 500;
}

.other-plans a:hover {
  text-decoration: underline;
}

/* FAQ Section (proveedores) */
.ea-faq {
  padding: 5rem 2rem 2rem;
  position: relative;
}

.ea-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.ea-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.4rem 0;
}

.ea-faq-item:first-child {
  padding-top: 0;
}

.ea-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ea-dark);
  cursor: pointer;
  list-style: none;
}

.ea-faq-question::marker,
.ea-faq-question::-webkit-details-marker {
  display: none;
}

.ea-faq-chevron {
  color: #94a3b8;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.ea-faq-item[open] .ea-faq-chevron {
  transform: rotate(180deg);
}

.ea-faq-item[open] .ea-faq-question {
  color: var(--ea-primary);
}

.ea-faq-answer {
  padding-top: 0.85rem;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 65ch;
}

/* Final CTA Section */
.section-final-cta {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.final-cta-content {
  max-width: 500px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ea-dark);
  margin-bottom: 0.5rem;
}

.final-cta-content > p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.final-buttons {
  max-width: 280px;
  margin: 0 auto;
}

.guarantee {
  margin-top: 1.5rem;
  color: var(--ea-accent);
  font-size: 0.9rem;
  font-weight: 500;
}

/* === RESERVATION PROCESS === */
.section-reservation-process {
  padding: 6rem 2rem;
  background: #fff;
}

.reservation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.step-card {
  background: var(--ea-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--ea-primary);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.reservation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.reservation-benefits .benefit-item {
  background: var(--ea-light);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.reservation-benefits .benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.5rem;
}

.reservation-benefits .benefit-item p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* === FOUNDER CTA SECTION === */
.section-founder-cta {
  background: linear-gradient(180deg, var(--ea-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  text-align: center;
}

.section-founder-cta .shape {
  display: none;
}

.founder-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.founder-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.founder-benefits .benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-align: center;
}

.founder-benefits .benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--ea-primary);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.founder-benefits .benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.founder-benefits .benefit-item p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

.founder-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.plan-option {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.plan-option:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.plan-option.elite {
  border-color: var(--ea-gold);
}

.plan-option.elite:hover {
  box-shadow: 0 16px 50px rgba(251, 191, 36, 0.2);
}

.plan-option.founder {
  border-color: var(--ea-purple);
}

.plan-option.founder:hover {
  box-shadow: 0 16px 50px rgba(139, 92, 246, 0.2);
}

.plan-option .plan-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.5rem;
}

.plan-option .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ea-primary);
  margin-bottom: 0.25rem;
}

.plan-option .price span {
  font-size: 1rem;
  color: #64748b;
}

.plan-option .spots {
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plan-option .plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.plan-option .plan-features li {
  padding: 0.4rem 0;
  color: #64748b;
  font-size: 0.9rem;
}

.plan-option .plan-features li::before {
  content: '✓';
  color: var(--ea-accent);
  margin-right: 0.5rem;
  font-weight: 700;
}

.btn.btn-founder-elite,
.btn.btn-founding-member {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn.btn-founder-elite {
  background: linear-gradient(135deg, var(--ea-gold) 0%, #f59e0b 100%);
  color: #78350f;
}

.btn.btn-founding-member {
  background: linear-gradient(135deg, var(--ea-purple) 0%, #7c3aed 100%);
  color: #fff;
}

.founder-urgency {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
}

.founder-urgency p {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: var(--ea-dark);
}

.founder-urgency p:first-child {
  font-size: 1.1rem;
  color: #dc2626;
  font-weight: 700;
}

/* === FEATURES SECTION === */
.section-features {
  padding: 6rem 2rem;
  background: #fff;
  position: relative;
}

.section-features .shape {
  display: none;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--ea-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--ea-primary);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
  margin-bottom: 1.25rem;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ea-primary) 0%, var(--ea-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.feature-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* === PLAN SELECTOR SECTION === */
.section-plan-selector {
  padding: 6rem 2rem;
  background: var(--ea-light);
  position: relative;
}

.section-plan-selector .shape {
  display: none;
}

.plan-selector-content {
  max-width: 1000px;
  margin: 0 auto;
}

.plan-recommendations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.recommendation-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.recommendation-card.founders-elite {
  border-color: var(--ea-gold);
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.recommendation-card.founding-member {
  border-color: var(--ea-purple);
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
}

.recommendation-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.recommendation-content p {
  color: #64748b;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.recommendation-content .plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.75rem 0;
}

.recommendation-content .feature {
  color: var(--ea-dark);
  font-size: 0.85rem;
}

.recommendation-content .urgency {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--ea-primary);
  border: 2px solid var(--ea-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--ea-primary);
  color: #fff;
}

.cta-highlight {
  background: #fff;
  border: 2px solid var(--ea-primary);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-highlight h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ea-dark);
  margin-bottom: 0.75rem;
}

.cta-highlight p {
  color: #64748b;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.final-cta-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  min-width: 160px;
}

.stat-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ea-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 2rem auto;
}

.guarantee {
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ea-dark);
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--ea-light);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #64748b;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--ea-primary);
  color: #fff;
}

.modal-body {
  padding: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-footer {
  padding: 1.5rem 2rem;
  background: var(--ea-light);
  text-align: center;
}

.modal-footer p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--ea-dark);
  font-weight: 600;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section-hero {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    width: 100%;
  }

  .hero-promo {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .pricing-grid-founders {
    grid-template-columns: 1fr;
  }

  .reservation-steps,
  .reservation-benefits,
  .founder-benefits,
  .founder-plans,
  .features-grid,
  .plan-recommendations {
    grid-template-columns: 1fr;
  }

  .final-cta-stats {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    max-width: 100%;
  }
}

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

  .balloon {
    opacity: 0.08;
  }
}

/* === CURRENT ADOPTERS SECTION === */
.section-adopters {
  padding: 5rem 2rem;
  position: relative;
  background: rgba(248, 250, 252, 0.85);
}

.adopters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.adopter-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.adopter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.adopter-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  overflow: hidden;
}

.adopter-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adopter-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ea-primary), #818cf8);
  color: #fff;
  font-size: 1.25rem;
}

.adopter-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.adopter-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ea-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adopter-city {
  font-size: 0.8rem;
  color: #94a3b8;
}

.adopter-city i {
  margin-right: 0.2rem;
  color: var(--ea-primary);
}

.adopter-badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.adopter-badge.elite {
  background: linear-gradient(135deg, var(--ea-gold), #f59e0b);
  color: #78350f;
}

.adopter-badge.member {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: var(--ea-primary);
}

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