/* ============================================================
   SNOW TRADER INSTITUTE — estilos.css
   Tema: Blanco · Celeste · Azul  |  2026
   ============================================================ */

/* ── 1. VARIABLES ───────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-2:        #f0f6ff;
  --bg-3:        #e8f0fe;
  --bg-card:     #ffffff;
  --bg-card-h:   #f8fbff;
  --border:      rgba(37,99,235,0.1);
  --border-h:    rgba(37,99,235,0.3);

  --blue:        #2563eb;
  --blue-2:      #3b82f6;
  --blue-3:      #60a5fa;
  --blue-dark:   #1d4ed8;
  --blue-light:  #eff6ff;
  --blue-glow:   rgba(37,99,235,0.15);
  --sky:         #bfdbfe;

  --gold:        #d97706;
  --gold-2:      #f59e0b;
  --gold-light:  #fef3c7;
  --gold-glow:   rgba(245,158,11,0.2);

  --green:       #059669;
  --green-2:     #10b981;
  --green-light: #d1fae5;
  --green-glow:  rgba(16,185,129,0.15);

  --navy:        #04101e;
  --navy-2:      #071525;

  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;

  --radius:      18px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --shadow:      0 4px 24px rgba(37,99,235,0.08);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-lg:   0 12px 48px rgba(37,99,235,0.14);
  --nav-h:       72px;
  --max-w:       1200px;
  --t:           0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html, body {
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. KEYFRAMES ───────────────────────────────────────── */
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulseBlue {
  0%,100% { box-shadow: 0 0 0 0 var(--blue-glow); }
  50%      { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 8px 30px rgba(245,158,11,0.3); }
  50%      { box-shadow: 0 8px 40px rgba(245,158,11,0.55); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.04); }
  66%  { transform: translate(-15px,15px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes shimmerLine {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── 4. SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--t), transform 0.65s var(--t);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.65s var(--t), transform 0.65s var(--t);
}
.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.65s var(--t), transform 0.65s var(--t);
}
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 5. UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section     { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }

/* Tags */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid;
}
.tag--blue  { color: var(--blue);  background: var(--blue-light); border-color: rgba(37,99,235,0.2); }
.tag--gold  { color: var(--gold);  background: var(--gold-light); border-color: rgba(245,158,11,0.25); }
.tag--green { color: var(--green); background: var(--green-light); border-color: rgba(16,185,129,0.25); }

/* Section headers */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-2);
  font-size: 1.02rem;
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  margin-bottom: 56px;
}
.section-header--left {
  display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 36px;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ef4444 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.accent-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  border-radius: 2px; margin-top: 8px;
}
.accent-line--gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.accent-line--green {
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

/* ── 6. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--t); cursor: pointer;
  letter-spacing: 0.02em; border: none;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px var(--blue-glow);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.28);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, #ef4444 100%);
  color: #fff;
  animation: pulseGold 3s infinite;
}
.btn--gold:hover { transform: translateY(-2px); }
.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 24px var(--green-glow);
}
.btn--green:hover { background: #047857; transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--outline-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn--lg  { padding: 16px 36px; font-size: 0.98rem; }
.btn--sm  { padding: 10px 20px; font-size: 0.8rem; }

/* ── 7. NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(37,99,235,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text);
}
.nav__logo img { height: 36px; width: auto; }
.nav__logo span { color: var(--blue); }

.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__link {
  padding: 8px 14px; border-radius: 50px;
  font-size: 0.87rem; font-weight: 500;
  color: var(--text-2); transition: var(--t);
}
.nav__link:hover { color: var(--blue); background: var(--blue-light); }

.nav__toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}

.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  flex-direction: column; gap: 6px;
  z-index: 999;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }

/* ── 8. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 40%, #f8faff 75%, #fff 100%);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero__orb--1 {
  width: 550px; height: 550px;
  background: #93c5fd; opacity: 0.25;
  top: -120px; left: -120px;
  animation: orbDrift 18s ease-in-out infinite;
}
.hero__orb--2 {
  width: 420px; height: 420px;
  background: #fbbf24; opacity: 0.1;
  bottom: -80px; right: -60px;
  animation: orbDrift 22s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 280px; height: 280px;
  background: #34d399; opacity: 0.1;
  top: 55%; left: 55%;
  animation: orbDrift 28s ease-in-out infinite;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 24px;
  padding-block: 80px;
}
.hero__content { animation: fadeUp 0.85s var(--t) both; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 50px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--blue);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulseBlue 2s infinite;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  color: var(--text-2); font-size: 1.05rem;
  max-width: 480px; margin-bottom: 36px;
}
.hero__btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 44px;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero__badge {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 50px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(37,99,235,0.12);
  font-size: 0.79rem; color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Hero visual */
.hero__visual {
  position: relative;
  animation: fadeIn 1s var(--t) 0.25s both;
}
.hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(37,99,235,0.12);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9/11;
  max-height: 580px;
  position: relative;
  background: var(--bg-2);
}
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.3) 0%, transparent 40%);
}
.hero__float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero__float--1 { bottom: 28px; left: -28px; animation: heroFloat 4s ease-in-out infinite; }
.hero__float--2 { top: 36px; right: -24px;   animation: heroFloat 4s ease-in-out infinite 1.5s; }
.hero__float--3 { top: 50%; left: -36px;      animation: heroFloat 4s ease-in-out infinite 3s; }
.float-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.float-icon--blue  { background: var(--blue-light); }
.float-icon--gold  { background: var(--gold-light); }
.float-icon--green { background: var(--green-light); }
.float-label { font-size: 0.68rem; color: var(--text-3); }
.float-value { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ── 9. STATS ───────────────────────────────────────────── */
.stats {
  background: var(--blue);
  padding: 52px 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stats__item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats__item:last-child { border-right: none; }
.stats__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700; line-height: 1;
  color: #fff; margin-bottom: 6px;
}
.stats__number--gold   { color: #fbbf24; }
.stats__number--green  { color: #6ee7b7; }
.stats__number--light  { color: #bfdbfe; }
.stats__label {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── 10. ABOUT / INTRO ──────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/5; max-height: 560px;
  background: var(--bg-2);
}
.about__media video,
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.about__badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--blue);
  line-height: 1;
}
.about__badge span { font-size: 0.74rem; color: var(--text-3); }

.about__features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
.about__feature {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px; border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: var(--t);
}
.about__feature:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-sm);
}
.about__feature-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about__feature strong { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 2px; }
.about__feature span   { font-size: 0.76rem; color: var(--text-3); }

/* Video section */
.video-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin-inline: auto;
  background: #000;
}
.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── 11. COURSES ────────────────────────────────────────── */
.education {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.courses__grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
.courses__grid--4 {
  grid-template-columns: repeat(4,1fr);
}
.course-card {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--t);
  display: flex; flex-direction: column;
  position: relative;
}
.course-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.course-card--featured {
  border-color: rgba(37,99,235,0.25);
  background: linear-gradient(160deg, #eff6ff 0%, #fff 100%);
}
.course-card--featured::after {
  content: '⭐ Más elegido';
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: 50px;
  background: var(--blue); color: #fff;
  font-size: 0.7rem; font-weight: 600;
}
.course-card--free { border-color: rgba(16,185,129,0.2); }
.course-card__img {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.course-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--t);
}
.course-card:hover .course-card__img img { transform: scale(1.04); }
.course-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.3) 0%, transparent 60%);
}
.course-card__body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.course-card__level {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.course-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3; color: var(--text);
}
.course-card__desc {
  font-size: 0.83rem; color: var(--text-2);
  margin-bottom: 18px; flex: 1; line-height: 1.6;
}
.course-card__features { margin-bottom: 22px; }
.course-card__feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.81rem; color: var(--text-2);
  padding: 5px 0;
  border-bottom: 1px solid rgba(37,99,235,0.06);
}
.course-card__feature:last-child { border-bottom: none; }
.course-card__feature::before {
  content: '✓'; color: var(--blue);
  font-weight: 700; font-size: 0.84rem;
  flex-shrink: 0; margin-top: 1px;
}
.course-card__footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.course-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--blue);
}
.course-card__price small {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; color: var(--text-3);
  display: block; font-weight: 400;
}

.education__quote {
  margin-top: 56px;
  padding: 40px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  position: relative; overflow: hidden;
  text-align: center;
}
.education__quote::before {
  content: '"';
  position: absolute; top: -20px; left: 24px;
  font-size: 10rem; font-family: 'Playfair Display', serif;
  opacity: 0.08; line-height: 1; pointer-events: none;
}
.education__quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic; line-height: 1.6;
  max-width: 760px; margin-inline: auto;
  margin-bottom: 12px;
}
.education__quote cite { font-size: 0.82rem; opacity: 0.75; font-style: normal; }

/* ── 12. LEGAL ADVISORY ─────────────────────────────────── */
.legal {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.legal__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.legal__services {
  display: flex; flex-direction: column; gap: 12px;
}
.legal__service {
  display: flex; gap: 15px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.legal__service:hover {
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 4px 16px rgba(16,185,129,0.1);
  transform: translateX(5px);
}
.legal__service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.legal__service-title { font-size: 0.93rem; font-weight: 600; margin-bottom: 3px; }
.legal__service-desc { font-size: 0.8rem; color: var(--text-3); line-height: 1.5; }

.legal__card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.legal__card::before {
  content: '⚖️';
  position: absolute; top: -16px; right: -8px;
  font-size: 7rem; opacity: 0.06; pointer-events: none;
}
.legal__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  margin-bottom: 14px; color: #6ee7b7;
}
.legal__card-desc { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.legal__card-points { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.legal__card-point {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: rgba(255,255,255,0.8);
}
.legal__card-point::before { content: '●'; color: #34d399; font-size: 0.5rem; }
.legal__disclaimer {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border-left: 3px solid #34d399;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}

/* ── 13. RESULTS ────────────────────────────────────────── */
.results { border-top: 1px solid var(--border); }
.results__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; margin-bottom: 48px;
}
.result-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--t);
  position: relative;
  aspect-ratio: 3/4;
}
.result-card:hover {
  border-color: rgba(245,158,11,0.35);
  box-shadow: 0 12px 40px rgba(245,158,11,0.12);
  transform: translateY(-4px);
}
.result-card img { width: 100%; height: 100%; object-fit: cover; }
.result-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
  font-size: 0.75rem; font-weight: 600;
  color: #fbbf24; letter-spacing: 0.04em;
}
.results__banner {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid rgba(245,158,11,0.25);
  box-shadow: var(--shadow-sm);
}
.results__banner-icon { font-size: 2.2rem; }
.results__banner-text strong {
  display: block; font-size: 0.95rem; font-weight: 700;
  color: var(--gold); margin-bottom: 3px;
}
.results__banner-text span { font-size: 0.82rem; color: var(--text-3); }

/* ── 14. TESTIMONIALS ───────────────────────────────────── */
.testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 26px; border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card:hover { border-color: var(--border-h); box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-card__stars { color: var(--gold-2); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card__text { font-size: 0.86rem; color: var(--text-2); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 11px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--border-h); flex-shrink: 0;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.testimonial-card__role { font-size: 0.74rem; color: var(--text-3); }

/* ── 15. COUNTRIES ──────────────────────────────────────── */
.countries { border-top: 1px solid var(--border); }
.countries__grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.country-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.81rem; color: var(--text-2);
  transition: var(--t);
}
.country-pill:hover {
  border-color: var(--border-h); color: var(--blue);
  background: var(--blue-light);
}
.country-flag { font-size: 1.1rem; }

/* ── 16. PAYMENTS ───────────────────────────────────────── */
.payments {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.payments__logos {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: 40px;
}
.payment-logo {
  width: 82px; height: 52px; border-radius: var(--radius-xs);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: var(--t); padding: 8px;
}
.payment-logo:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}
.payment-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.payments__klarna {
  margin-top: 36px;
  padding: 30px 36px; border-radius: var(--radius);
  background: linear-gradient(135deg, #fce7f3 0%, #fff 100%);
  border: 1px solid rgba(255,92,166,0.2);
  display: flex; align-items: center;
  gap: 22px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.payments__klarna-badge {
  background: #FF9CC0; color: #000;
  font-weight: 700; font-size: 1.1rem;
  padding: 8px 20px; border-radius: 8px;
  flex-shrink: 0;
}
.payments__klarna-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.payments__klarna-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,92,166,0.2);
  font-size: 0.8rem; font-weight: 500; color: var(--text-2);
}
.payments__klarna-text strong {
  display: block; font-size: 0.93rem; font-weight: 600; margin-bottom: 4px;
}
.payments__klarna-text span { font-size: 0.8rem; color: var(--text-3); }

/* ── 17. FAQ ────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq__list {
  max-width: 760px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq__item {
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq__item.open { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow); }
.faq__question {
  width: 100%; text-align: left;
  padding: 18px 22px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  background: none; border: none;
  font-family: 'Poppins', sans-serif;
  transition: color var(--t);
}
.faq__item.open .faq__question { color: var(--blue); }
.faq__chevron {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.68rem;
  transition: transform var(--t), background var(--t), border-color var(--t);
  color: var(--text-3);
}
.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__answer p {
  padding: 0 22px 18px;
  font-size: 0.86rem; color: var(--text-2); line-height: 1.75;
}
.faq__item.open .faq__answer { max-height: 600px; }

/* ── 18. CTA SECTION ────────────────────────────────────── */
.cta-section { border-top: 1px solid var(--border); background: var(--bg); }
.cta-inner {
  text-align: center; padding: 80px 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue) 0%, #4f46e5 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner .section-title { color: #fff; margin-bottom: 14px; }
.cta-inner .section-sub   { color: rgba(255,255,255,0.8); margin-inline: auto; margin-bottom: 34px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; }

/* ── 19. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  margin: 0; padding: 0;
}
.footer__top {
  padding: 56px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer__brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer__brand-logo img { height: 34px; width: auto; }
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.footer__brand-name span { color: var(--blue-3); }
.footer__desc { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 275px; margin-bottom: 22px; }
.footer__social-links { display: flex; gap: 9px; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.footer__social-link:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.footer__social-link img { width: 17px; height: 17px; object-fit: contain; filter: brightness(0.6); }
.footer__social-link:hover img { filter: brightness(1); }
.footer__col-title { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer__col-links { display: flex; flex-direction: column; gap: 8px; }
.footer__col-link { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer__col-link:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__legal-links { display: flex; gap: 18px; }
.footer__legal-link { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--t); }
.footer__legal-link:hover { color: rgba(255,255,255,0.75); }

.footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0 28px;
}
.footer__disclaimer p {
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
  line-height: 1.65; text-align: justify; margin: 0;
}

/* ── 20. FLOAT WIDGETS ──────────────────────────────────── */
.float-widgets {
  position: fixed; left: 0; top: 50%;
  transform: translateY(-50%); z-index: 900;
  display: flex; flex-direction: column; gap: 8px;
}
.float-widget {
  display: flex; align-items: center;
  overflow: hidden; border-radius: 0 50px 50px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-left: none;
  box-shadow: var(--shadow);
  transition: var(--t); cursor: pointer;
  text-decoration: none; color: var(--text);
  height: 46px; max-width: 46px;
}
.float-widget:hover { max-width: 170px; border-color: var(--border-h); }
.float-widget__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-widget__icon img { width: 20px; height: 20px; object-fit: contain; }
.float-widget__label {
  font-size: 0.79rem; font-weight: 500;
  white-space: nowrap; padding-right: 14px;
  opacity: 0; transition: opacity var(--t);
}
.float-widget:hover .float-widget__label { opacity: 1; }
.float-widget--tg:hover  { background: #e0f2fe; border-color: #0ea5e9; }
.float-widget--form:hover { background: var(--gold-light); border-color: var(--gold-2); }

/* ── 21. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --nav-h: 64px; }
  .hero__inner  { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__inner  { text-align: center; padding-block: 60px; }
  .hero__btns   { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__desc   { margin-inline: auto; }
  .about__grid  { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 400px; margin-inline: auto; }
  .about__features { grid-template-columns: 1fr 1fr; }
  .courses__grid    { grid-template-columns: 1fr 1fr; }
  .courses__grid--4 { grid-template-columns: 1fr 1fr; }
  .legal__grid  { grid-template-columns: 1fr; gap: 40px; }
  .results__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid  { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section    { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .courses__grid    { grid-template-columns: 1fr; }
  .courses__grid--4 { grid-template-columns: 1fr 1fr; }
  .results__grid  { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { padding: 48px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal-links { justify-content: center; flex-wrap: wrap; }
  .payments__klarna { flex-direction: column; }
  .education__quote { padding: 28px 22px; }
}

/* ── 22. INNER PAGES ────────────────────────────────────── */
.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(145deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.form-container {
  max-width: 640px; margin-inline: auto;
  padding: 38px; border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.81rem; font-weight: 600;
  color: var(--text-2); margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  transition: var(--t); outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.asesoria-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 20px; margin-bottom: 56px;
}
.asesoria-card {
  padding: 26px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.asesoria-card:hover {
  border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.asesoria-card__icon { font-size: 2rem; margin-bottom: 13px; }
.asesoria-card__title { font-weight: 700; font-size: 0.97rem; margin-bottom: 8px; color: var(--text); }
.asesoria-card__desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.6; }

.terminos-content { max-width: 800px; margin-inline: auto; padding: 56px 24px; }
.terminos-section { margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--border); }
.terminos-section:last-child { border-bottom: none; }
.terminos-section h2 { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 11px; }
.terminos-section p,
.terminos-section li { font-size: 0.87rem; color: var(--text-2); line-height: 1.8; margin-bottom: 8px; }
.terminos-section ul { padding-left: 18px; }
.terminos-section li::marker { color: var(--blue); }
