/* ══════════════════════════════════════
   BASE & VARIABLES — LIGHT THEME
══════════════════════════════════════ */
:root {
  --purple: #7B2FBE;
  --purple-light: #9B59D4;
  --pink: #E91E8C;
  --orange: #F5A828;
  --orange-dark: #E09020;
  --orange-light: #FBCA48;

  /* Light theme */
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f4f4f8;
  --dark: #111118;
  --dark-2: #1f1f2e;
  --text: #1a1a2e;
  --text-muted: #6b6b8a;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.12);

  /* Gradients */
  --gradient: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  --gradient-orange: linear-gradient(135deg, var(--orange), var(--pink));
  --gradient-text: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  --gradient-orange-text: linear-gradient(90deg, var(--orange), var(--pink));

  --font: 'Raleway', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 32px rgba(255,107,53,0.3);
  --shadow-purple: 0 8px 32px rgba(123,47,190,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.intro-active { overflow: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════
   INTRO ANIMATION — FLOAT
══════════════════════════════════════ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at center, #FBCA48 0%, #F5A828 50%, #E09020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 0.5s ease forwards 0.8s;
}

@keyframes introFadeOut {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

.intro-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introAppear 1s ease forwards;
}

@keyframes introAppear {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

.intro-logo-wrap {
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.intro-logo {
  width: clamp(260px, 36vw, 420px);
  height: clamp(260px, 36vw, 420px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18));
}

/* ══════════ HERO — LOGO GRANDE ══════════ */
.hero-logo-wrap {
  margin-bottom: 24px;
}

.hero-logo {
  width: clamp(70px, 10vw, 110px);
  height: auto;
  object-fit: contain;
}

/* ══════════ HERO LAYOUT ══════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 100px 80px 120px;
  background: #fff;
}

.hero-left {
  padding-right: 48px;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}

.hero-year {
  display: block;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.hero-title strong {
  font-weight: 900;
  display: block;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.hero-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.75;
}

/* RIGHT SIDE — collage with blob */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 580px;
  z-index: 1;
}

.hero-orange-blob {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: var(--gradient-orange);
  border-radius: 50%;
  z-index: 0;
}

.hero-pink-blob {
  position: absolute;
  left: -180px;
  top: -310px;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 50%;
  z-index: 0;
}

.hero-photo-collage {
  position: absolute;
  inset: 20px 0 20px 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.collage-main {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.collage-video {
  object-fit: cover;
  display: block;
}

.collage-top-right,
.collage-bottom-right {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.hero-image-wrap { display: none; }
.hero-photo { display: none; }

/* PHOTO SECTION */
.photo-section {
  padding: 80px 24px 100px;
  background: var(--bg);
}

.photo-full {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.photo-full img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Slideshow */
.photo-slideshow {
  position: relative;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active {
  position: relative;
  transform: translateX(0);
}
.slide.slide-out {
  position: absolute;
  transform: translateX(-100%);
}
.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.slide:not(:first-child) img {
  object-position: center 20%;
}
.slideshow-dots {
  position: absolute;
  bottom: 52px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.sdot.active {
  background: #fff;
}

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}

/* WHATSAPP CARD */
.whatsapp-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.whatsapp-icon {
  width: 72px;
  height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.whatsapp-icon svg {
  width: 38px;
  height: 38px;
  color: white;
}

.whatsapp-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.whatsapp-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-whatsapp {
  background: #E07010;
  color: white;
  box-shadow: 0 8px 24px rgba(224,112,16,0.3);
}

.btn-whatsapp:hover {
  background: #c96010;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224,112,16,0.4);
}

/* LOGO IN FOOTER */
.footer-logo { margin-bottom: 16px; }

.logo-img-footer {
  filter: brightness(10);
  opacity: 0.9;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  transition: padding var(--transition);
}

.header-inner .logo { margin-left: 70px; }

#header.scrolled .header-inner { padding: 14px 24px; }

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 40px;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: -14px;
}

.logo-the {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 1rem;
}

.logo-interlude {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-orange);
  transition: width 0.3s;
}

.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.45);
  filter: brightness(1.05);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,107,53,0.5);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,53,0.05);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-full { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-bg {
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255,107,53,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(123,47,190,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(233,30,140,0.04) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-title strong {
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-orange {
  background: var(--gradient-orange-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn { padding: 16px 36px; font-size: 1rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.5;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ══════════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════════ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ALTERNATIVA SECTION
══════════════════════════════════════ */
.alternativa-section {
  padding: 60px 24px 60px;
  background: #fff;
}

.alternativa-inner {
  display: none;
}

.alternativa-desc {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.8;
  margin: 16px 0 0;
}

.alternativa-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.alternativa-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 0;
  padding-left: 0;
  position: relative;
}

.alternativa-desc-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}

.alternativa-title {
  font-size: 3.8vw !important;
  white-space: nowrap !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  white-space: normal !important;
  margin-top: 8px;
  margin-bottom: 20px;
}

.alternativa-desc-col .alternativa-desc {
  margin-top: 0;
  margin-bottom: 12px;
}

.alternativa-bullets-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.alternativa-bullets-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.alternativa-bullets-header {
  font-size: 1.8rem !important;
  font-weight: 700;
  color: var(--text) !important;
  padding-left: 0 !important;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.alternativa-bullets-header::before {
  display: none !important;
}

.alternativa-bullets {
  list-style: none;
  padding: 32px 32px;
  margin: 0;
  flex: 1;
  height: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.alternativa-bullets li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.alternativa-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.alternativa-cta { margin-top: 0; }

.alternativa-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alternativa-box p {
  font-size: 1.3rem;
  color: #1a1a2e;
  line-height: 1.7;
  margin: 0;
}

.alternativa-box strong {
  color: var(--pink);
}

.alternativa-divider {
  border: none;
  border-top: 1.5px solid rgba(0,0,0,0.1);
  margin: 8px 0;
}

.alternativa-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

.alternativa-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alternativa-box ul li {
  font-size: 1.15rem;
  color: #1a1a2e;
  padding-left: 20px;
  position: relative;
}

.alternativa-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.section-promise { margin-bottom: 40px; }

.promise-main {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.promise-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
}

.promise-highlight {
  position: relative;
  display: inline;
}

.promise-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0.7;
}

.promise-color {
  color: var(--purple);
  font-weight: 800;
}

.section-includes { margin-top: 40px; }

.includes-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}

.capsule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.capsule-item {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.9);
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.capsule-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

.capsule-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.alternativa-cta-btn {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(233,30,140,0.25) !important;
  transition: all 0.3s ease !important;
  align-self: flex-start;
}

.alternativa-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(123,47,190,0.4) !important;
}

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
  padding: 52px 24px 32px;
  background: #fff;
}

.stats-section .container,
.alternativa-section .container {
  max-width: 1400px;
}

/* ── ALT FLOW — diseño de flechas ── */
.alt-label {
  color: #1a1a2e !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.alt-flow-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 20px;
}

.alt-flow {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 0;
  justify-content: center;
}

.alt-flow-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.alt-flow-col--first {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: -40px;
}

.alt-curved-arrow {
  width: 54px;
  height: 80px;
  flex-shrink: 0;
}

.alt-pre-arrow {
  font-size: 5rem;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1;
  flex-shrink: 0;
  -webkit-text-stroke: 2px #1a1a2e;
  margin-left: -30px;
}

.alt-bubble {
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f5f5f5 100%);
  border-radius: 50%;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(245, 168, 40, 0.18), inset 0 -4px 10px rgba(180, 100, 0, 0.07), inset 0 4px 10px rgba(255, 220, 120, 0.18);
  border: 1px solid rgba(245, 168, 40, 0.25);
  flex-shrink: 0;
}

.alt-bubble--large {
  width: 420px;
  height: 420px;
  padding: 50px;
}

.alt-flow-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.8;
  margin: 0;
}

.alt-flow-text strong {
  font-weight: 800;
}

.alt-flow-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
}

.alt-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alt-flow-list li {
  font-size: 1.2rem;
  color: #1a1a2e;
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
  text-align: left;
}

.alt-flow-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.alt-flow-list li strong {
  font-weight: 800;
}

.alt-connector {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
  line-height: 1;
}

.alt-connector--arrow {
  font-size: 3.5rem;
  font-weight: 900;
  margin-left: -155px;
  -webkit-text-stroke: 2px var(--pink);
}

.alt-connector--equals {
  font-size: 3rem;
  font-weight: 900;
}

.alt-connector--big {
  font-size: 4.5rem;
  margin-left: -18px;
}

.alt-connector--push {
  margin-left: -70px;
}

.alt-flow-col--last {
  margin-left: 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .alt-flow-card {
    padding: 28px 20px;
  }
  .alt-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .alt-flow-col--first {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .alt-curved-arrow {
    display: none;
  }
  .alt-connector {
    align-self: center;
    transform: rotate(90deg);
  }
  .alt-connector--equals {
    transform: none;
  }
}

.stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: #F5A828;
  border: 1px solid #F5A828;
  border-radius: 20px;
  padding: 36px 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 4px 32px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 8px;
  font-weight: 500;
}

.stat-item p strong {
  font-size: 2rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.stat-source {
  font-size: 0.75rem;
  color: #1a1a2e;
  font-style: italic;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border-strong);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-strip { flex-wrap: wrap; padding: 16px; }
  .stat-item { min-width: 45%; }
  .stat-divider { display: none; }
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card:hover::after { transform: scaleX(1); }

.stat-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: #E91E8C;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #E91E8C !important;
  background-clip: unset !important;
  line-height: 1;
  display: inline-block;
}

.stat-symbol {
  font-size: 1.4rem;
  font-weight: 900;
  color: #E91E8C;
  display: inline-block;
  margin-left: 2px;
  vertical-align: bottom;
  line-height: 1.4;
}

.stat-card p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   INCLUDES SECTION
══════════════════════════════════════ */
.includes-section {
  padding: 120px 24px;
  background: var(--bg);
}

.includes-section .section-title { margin-bottom: 64px; }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.include-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.include-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.include-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,0.2);
  background: var(--bg);
}

.include-card:hover::before { transform: scaleX(1); }

.include-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s;
}

.include-card:hover .include-icon { transform: scale(1.2) rotate(8deg); }

.include-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.include-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   GUARANTEES SECTION
══════════════════════════════════════ */
.guarantees-section {
  padding: 120px 24px;
  background: linear-gradient(160deg, #F5A828 0%, #FBCA48 100%);
  position: relative;
  overflow: hidden;
}

.guarantees-section .section-label { color: #fff; opacity: 0.75; letter-spacing: 0.18em; }
.guarantees-section .section-title { color: #fff; }
.guarantees-section .guarantees-box { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.guarantees-section .guarantees-bullets li strong { color: var(--text); }
.guarantees-section .guarantees-bullets li p { color: var(--text-muted); }
.guarantees-section .g-check { background: var(--gradient-orange); color: #fff; }
.guarantees-bg { display: none; }

.guarantees-bg {
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(255,107,53,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(123,47,190,0.07) 0%, transparent 70%);
  z-index: 0;
}

.guarantees-section .container { position: relative; z-index: 1; }

.guarantees-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.guarantee-item:hover {
  border-color: rgba(255,107,53,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.guarantee-check {
  width: 38px; height: 38px;
  min-width: 38px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 14px rgba(255,107,53,0.3);
}

.guarantee-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.guarantee-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline-section {
  padding: 120px 24px;
  background: var(--bg);
}

.timeline {
  position: relative;
  margin-top: 72px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--pink), var(--orange));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 48px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -24px; top: 4px;
  width: 46px; height: 46px;
  background: var(--bg);
  border: 2px solid rgba(255,107,53,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 0 0 4px var(--bg), var(--shadow-sm);
}

.timeline-item:hover .timeline-dot {
  background: var(--gradient-orange);
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--bg), var(--shadow-orange);
}

.timeline-content {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(255,107,53,0.2);
  box-shadow: var(--shadow-md);
  background: var(--bg);
}

.timeline-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  padding: 120px 24px;
  background: linear-gradient(160deg, #F5A828 0%, #FBCA48 100%);
}

.testimonials-section .section-label { color: #fff; opacity: 0.75; letter-spacing: 0.18em; }
.testimonials-section .section-title  { color: #fff; }
.testimonials-section .testimonial-card { background: rgba(255,255,255,0.95); }
.testimonials-section .slider-btn { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); color: var(--text); }
.testimonials-section .slider-btn:hover { background: #fff; color: var(--orange); }
.testimonials-section .dot { background: rgba(0,0,0,0.15); }
.testimonials-section .dot.active { background: var(--purple); }

.testimonials-slider {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 7rem;
  line-height: 0.6;
  font-family: var(--font);
  background: var(--gradient-orange-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
  opacity: 0.5;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.slider-dots { display: flex; gap: 8px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   SIGNUP SECTION
══════════════════════════════════════ */
.signup-section {
  padding: 80px 24px 160px;
  background: #fff;
}

.signup-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 48px 80px;
  max-width: 1050px;
  margin-left: -60px;
  margin-right: auto;
  margin-top: 140px;
}

.signup-strip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.signup-strip-top .signup-strip-btn {
  align-self: center;
  margin-right: 40px;
  margin-left: 0;
}

.signup-strip-top .section-label { color: rgba(255,255,255,0.8); }

.signup-strip-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
  line-height: 1.3;
}

.signup-strip-title span { color: #1a1a2e; }
.signup-strip-title span em { color: var(--pink); }

.signup-strip-desc {
  color: #6b6b8a;
  font-size: 1.4rem;
  line-height: 1.65;
  margin: 0;
  white-space: nowrap;
}

.signup-strip-desc strong { color: #1a1a2e; }

.signup-strip-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 20px 36px;
  font-size: 1.15rem;
}

.signup-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.signup-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.signup-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.signup-step strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.signup-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.signup-step-divider {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  padding-bottom: 16px;
}

/* FORM */
.form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.875rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: var(--bg); color: var(--text); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form-group input::placeholder { color: rgba(0,0,0,0.3); }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0.7;
}

/* ══════════════════════════════════════
   INFO SECTION
══════════════════════════════════════ */
.info-section {
  padding: 120px 24px;
  background: var(--bg);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-text .section-title { margin-bottom: 14px; }
.info-text p { color: var(--text-muted); line-height: 1.75; }

.info-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--bg);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.info-success span { font-size: 3rem; display: block; margin-bottom: 14px; }
.info-success p { color: var(--text-muted); }
.info-success.visible { display: block; animation: fadeIn 0.5s ease; }

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

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-the { color: rgba(255,255,255,0.4); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link svg {
  width: 17px; height: 17px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.social-link:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-link:hover svg { color: white; }

.footer-links h4,
.footer-faq h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  gap: 10px;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  min-width: 18px;
  text-align: center;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 14px; }

.faq-answer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange); }

/* ══════════════════════════════════════
   PROGRAM TABLE
══════════════════════════════════════ */
.program-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.program-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--bg);
}

.program-table thead tr {
  background: var(--text);
  color: #fff;
}

.program-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.program-table tbody tr:last-child { border-bottom: none; }

.program-table tbody tr:hover { background: var(--bg-3); }

.program-table td {
  padding: 18px 20px;
  vertical-align: top;
  line-height: 1.6;
  color: var(--text);
}

.month-cell {
  width: 60px;
  text-align: center;
}

.month-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-orange);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.phase-cell {
  width: 180px;
  white-space: nowrap;
}

.phase-cell strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.program-table tbody td:nth-child(3) {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.program-table tbody td:nth-child(4) {
  color: var(--orange-dark);
  font-size: 0.83rem;
  font-weight: 500;
}

/* ══════════════════════════════════════
   INCLUDE CARDS — BULLETS
══════════════════════════════════════ */
.include-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.include-card-header .include-icon {
  font-size: 1.8rem;
  margin-bottom: 0;
  transition: transform 0.3s;
}

.include-card:hover .include-card-header .include-icon {
  transform: scale(1.2) rotate(8deg);
}

.include-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.include-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.include-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 4px;
}

.include-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.include-bullets li span { display: none; }

/* ══════════════════════════════════════
   GUARANTEES BOX
══════════════════════════════════════ */
.guarantees-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}

.guarantees-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.guarantees-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.g-emoji { display: none; }

.g-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gradient-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantees-bullets li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.guarantees-bullets li p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .guarantees-bullets { grid-template-columns: 1fr; }
  .guarantees-box { padding: 28px 24px; }
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TABLET (769px – 1024px)
══════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  /* HEADER */
  .header-inner { padding: 16px 32px; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr auto !important;
    padding: 80px 0 60px 40px !important;
    gap: 48px !important;
    align-items: flex-start !important;
    min-height: 100vh;
  }
  .hero-left { padding-right: 0; padding-top: 40px; }
  .hero-right {
    width: 280px !important;
    height: 520px !important;
    min-height: unset !important;
    flex-shrink: 0;
    position: relative;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
  }
  .hero-orange-blob { width: 280px !important; height: 280px !important; right: -80px; top: 40%; }
  .hero-pink-blob { width: 260px !important; height: 260px !important; left: -120px; top: -160px; }
  .hero-photo-collage {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .collage-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  .collage-top-right,
  .collage-bottom-right { display: none; }
  .hero-desc { max-width: 480px; }
  .hero-ctas { flex-wrap: wrap; gap: 12px; }

  /* STATS */
  .stats-section { margin-top: -40px; }
  .stats-strip { flex-wrap: wrap; padding: 24px 32px; gap: 16px; }
  .stat-item { flex: 1 1 45%; min-width: 200px; }
  .stat-divider { display: none; }

  /* ALTERNATIVA */
  .alt-title-row { padding-left: 0 !important; justify-content: center; }
  h2.section-title.alternativa-title { font-size: clamp(2.8rem, 5vw, 3.8rem) !important; white-space: nowrap !important; }
  .alt-flow-card { padding: 28px 24px; }
  .alt-flow { flex-direction: column; align-items: center; gap: 20px; }
  .alt-bubble { width: 320px; height: 320px; padding: 32px; }
  .alt-bubble--large {
    width: 420px;
    height: auto;
    min-height: 200px;
    border-radius: 28px !important;
    padding: 40px 48px;
  }
  .alt-connector { transform: rotate(90deg); display: flex; justify-content: center; }
  .alt-flow-col { width: 100%; display: flex; justify-content: center; }
  .alt-flow-col--first { justify-content: center; padding-left: 32px; }

  /* SIGNUP STRIP */
  .signup-strip { flex-direction: column; gap: 24px; padding: 40px 40px 40px 120px !important; }
  .signup-strip-title { font-size: clamp(1.8rem, 4vw, 2.4rem); }
  .signup-strip-desc { white-space: normal !important; font-size: 1.1rem; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer { padding: 56px 40px 32px; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .signup-strip { flex-direction: column; align-items: flex-start; padding: 32px; }
  .info-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantees-list { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 40px;
  }
  .hero-left { padding-right: 0; }
  .hero-right { min-height: 340px; }
  .hero-orange-blob { width: 300px; height: 300px; right: -40px; }
  .hero-pink-blob { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #F5A828;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 9999;
  }
  .nav.open { display: flex; animation: navFadeIn 0.3s ease; }
  @keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav a { font-size: 1.2rem; color: #fff; font-weight: 700; }
  .btn-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .header-inner .logo { margin-left: 0; }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    width: 100%;
    box-sizing: border-box;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-right::after { display: none; }
  .hero-photo-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .collage-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
  }
  .collage-top-right,
  .collage-bottom-right { display: none; }
  .hero-left {
    position: static;
    z-index: 2;
    padding: 80px 24px 48px;
    text-align: left;
    background: transparent;
  }
  .hero-headline { position: absolute; top: 155px; left: 24px; right: 24px; z-index: 3; padding: 0 0 8px; background: transparent; margin-top: 0; transform: none !important; opacity: 1 !important; }
  .hero-year { font-size: 1rem; background: none !important; -webkit-text-fill-color: #fff !important; color: #fff !important; }
  .hero-title { color: #fff; font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .hero-tagline { padding-top: 90px; color: rgba(255,255,255,0.92); font-size: 0.9rem !important; }
  .hero-tagline strong { font-size: 1.35rem !important; -webkit-text-fill-color: unset; background: linear-gradient(90deg, #e63c2f, #F5A828); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; }
  .hero-desc { color: rgba(255,255,255,0.8); margin-bottom: 0; }
  .hero-ctas { padding-bottom: 0; margin-top: 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: 0.95rem; }
  .hero-ctas .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
  .hero-pink-blob { display: none; }
  .hero-orange-blob { display: none; }

  .timeline { padding-left: 20px; }
  .timeline::before { left: 4px; }
  .timeline-item { padding-left: 36px; flex-direction: column; }
  .timeline-dot { left: -20px; width: 38px; height: 38px; }

  .testimonial-card { padding: 28px 20px; }
  .form { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .stats-strip {
    flex-direction: column;
    padding: 28px 20px 36px;
    gap: 24px;
    height: auto !important;
    min-height: unset !important;
    overflow: visible;
    align-items: stretch;
    margin-top: 38px;
  }
  .stats-section { height: auto; overflow: visible; }
  .stat-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.1); }
  .stat-item { padding: 0; }
  .stat-item p strong { white-space: normal; }
  .stat-source { white-space: normal; word-break: break-word; }

  /* ── ALTERNATIVA SECTION MOBILE ── */
  .alternativa-layout { padding: 0 20px; overflow: hidden; }
  .alt-title-row { padding-left: 0 !important; flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
  h2.section-title.alternativa-title { font-size: clamp(2.4rem, 10vw, 3.3rem) !important; white-space: normal !important; text-align: left !important; padding-left: 0 !important; max-width: 100%; line-height: 1.3; }
  h2.section-title.alternativa-title span { white-space: nowrap; }
  .alt-age-badge { font-size: 0.72rem !important; padding: 3px 9px !important; width: fit-content !important; white-space: nowrap; margin-top: -10px; }

  /* ── ALT FLOW MOBILE — centrado vertical ── */
  .alt-flow-card { padding: 20px 0; background: transparent; box-shadow: none; margin-top: 8px; }
  .alt-flow { flex-direction: column; align-items: center; padding: 0 80px 0 0; gap: 8px; }
  .alt-flow-col { display: flex; justify-content: center; margin-left: 0 !important; }
  .alt-flow-col--first { margin-left: 0 !important; }
  .alt-flow-col--last { margin-left: 0 !important; }
  .alt-connector { display: flex; justify-content: center; transform: rotate(90deg); margin: 4px 0; }

  /* Burbujas adaptadas al móvil */
  .alt-bubble {
    width: min(260px, 72vw);
    height: min(260px, 72vw);
    padding: 24px;
    font-size: 0.95rem;
  }
  .alt-bubble--large {
    width: min(300px, 84vw);
    height: auto;
    min-height: unset;
    border-radius: 20px;
    padding: 24px 20px;
  }
  .alt-flow-text { font-size: 1rem; line-height: 1.7; }
  .alt-flow-label { font-size: 1rem; text-align: left; }
  .alt-flow-list { gap: 6px; align-items: flex-start; }
  .alt-flow-list li { font-size: 1rem; text-align: left; padding-left: 16px; }
  .alt-flow-list li::before { display: block; content: '·'; font-size: 1.4rem; }

  /* ── SIGNUP STRIP MOBILE ── */
  .signup-strip { padding: 28px 20px; text-align: center; margin-top: 24px !important; margin-left: -27px; }
  .signup-strip-top { flex-direction: column; align-items: center; gap: 16px; }
  .signup-strip-title { font-size: 1.4rem; text-align: center; }
  .signup-strip-desc { font-size: 0.8rem; text-align: center; }
  .btn-whatsapp { width: auto !important; justify-content: center !important; font-size: 0.82rem !important; padding: 10px 16px !important; margin-top: 10px !important; box-shadow: 0 4px 10px rgba(0,0,0,0.12) !important; }

  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  .htimeline-track { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 16px; }
  .stl-timeline-track { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .stats-section { padding: 0 16px 32px; }
  .alternativa-section { padding: 32px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .intro-interlude { font-size: 3.5rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-year { font-size: 1rem; background: none !important; -webkit-text-fill-color: #fff !important; color: #fff !important; }
  .alt-bubble { width: 240px; height: 240px; padding: 20px; }
  .alt-bubble--large { width: 300px; }
  .stat-item p strong { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-faq { display: none; }
}
