/* ============ FUENTES (Montserrat como principal) ============ */

/* ============ TOKENS – PALETA DE MARCA COMPLETA ============ */
:root {
  --midnight: #0A131F;
  --indigo: #3028B5;
  --coral: #FF6668;
  --blush: #FFC9C9;
  --sunburst: #FBB91C;
  --white: #FFFFFF;

  --brand: var(--indigo);
  --accent: var(--sunburst);
  --accent2: var(--coral);
  --ink: var(--midnight);
  --paper: var(--white);
  --muted: #6b7280;
  --border: rgba(48, 40, 181, 0.1);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ink { color: var(--ink); font-style: normal; }
em { font-style: italic; }

/* ============ LOGO ============ */
.logo-img { height: 40px; width: auto; display: block; }
.logo { display: flex; align-items: center; }
.logo-img.invert { filter: brightness(0) invert(1); }

/* ============ ICONO INSTAGRAM ============ */
.ig-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(10,19,31,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ BOTONES (hover limpio) ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; font-family: inherit;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap; text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.btn-brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-brand:hover { background: var(--ink); border-color: var(--ink); }
.btn-accent { background: var(--coral); color: #fff; border-color: var(--coral); }
.btn-accent:hover { background: var(--midnight); border-color: var(--midnight); }
.btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 22px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-cta {
  background: #fff;
  color: var(--coral);
  border-color: #fff;
}
.btn-cta:hover {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
}

/* ============ HERO CON VIDEO DE FONDO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,19,31,0.75) 0%, rgba(48,40,181,0.55) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-text .ink {
  color: var(--accent);
  font-style: italic;
}

.underline-accent {
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--accent) 70%);
  font-style: italic;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-brand {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.hero .btn-brand:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ============ SECTION HEAD ============ */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.section-head-row h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -0.03em;
}
.section-head-row p { max-width: 380px; color: rgba(10,19,31,0.6); font-weight: 500; font-size: 0.95rem; }
.brand-title { color: var(--brand); font-style: italic; }

/* ============ RAZONES ============ */
.reasons { 
  background: var(--indigo); 
  padding: 100px 0; 
  color: #fff; 
}
.reasons .section-head-row h2 { color: #fff; }
.reasons .section-head-row h2 em { color: var(--accent); font-style: italic; }
.reasons .section-head-row p { color: rgba(255,255,255,0.6); }

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

.reason-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(0);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(255,102,104,0.25);
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
}

.reason-card p {
  color: rgba(10,19,31,0.7);
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ============ TRANSICIONES AL HACER SCROLL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ACTIVIDADES ============ */
.activities { 
  padding: 100px 0; 
  background: #ffffff;
}
.activity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.activity {
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  padding: 0;
  background: transparent;
}
.activity:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.activity-img { overflow: hidden; border-radius: 20px; aspect-ratio: 4/3; background: var(--blush); margin-bottom: 16px; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.activity:hover .activity-img img { transform: scale(1.05); }
.activity-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tag {
  background: var(--coral); color: #fff;
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.duration { font-size: 0.6rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(10,19,31,0.4); }
.activity h3 { font-size: 1.2rem; font-weight: 700; font-style: italic; margin-bottom: 6px; }
.activity p { color: rgba(10,19,31,0.6); font-weight: 500; font-size: 0.85rem; }

/* ============ CTA ============ */
.cta { padding: 100px 0; background: #ffffff; }
.cta-box {
  background: var(--coral); border-radius: 40px;
  padding: 64px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0; opacity: 0.1;
  background-image: radial-gradient(circle at center, var(--white) 1px, transparent 1px);
  background-size: 20px 20px;
}
.cta-box h2 {
  position: relative; font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 20px;
}
.cta-box p {
  position: relative; font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.9); max-width: 500px; margin: 0 auto 32px;
}
.cta-box .btn { position: relative; }

/* ============ SOPORTE ============ */
.support { padding-bottom: 100px; }
.support-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.support-inner h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
.support-inner p { color: rgba(10,19,31,0.6); font-size: 1rem; margin-bottom: 24px; }
.support-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--midnight); color: #fff; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-weight: 500; max-width: 400px; line-height: 1.7; font-size: 0.85rem; }
.footer h5 { color: var(--sunburst); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul li { color: rgba(255,255,255,0.6); font-weight: 500; font-size: 0.9rem; }
.footer ul li a {
  color: inherit; text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center;
}
.footer ul li a:hover { color: var(--sunburst); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.3); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 24px; }

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,19,31,0.6); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal.active { display: flex; }
.modal-dialog {
  background: #fff; border-radius: 24px; padding: 28px;
  max-width: 480px; width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-head h3 { color: var(--brand); font-size: 1.4rem; font-weight: 900; font-style: italic; }
.modal-close { background: none; border: none; font-size: 1.8rem; color: rgba(10,19,31,0.4); cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--ink); }
#support-form label { display: block; margin-bottom: 14px; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(10,19,31,0.6); }
#support-form input, #support-form textarea { display: block; width: 100%; margin-top: 6px; padding: 10px 14px; border: 2px solid #e5e7eb; border-radius: 12px; font-family: inherit; font-size: 0.9rem; font-weight: 500; color: var(--ink); outline: none; transition: border-color 0.2s; }
#support-form input:focus, #support-form textarea:focus { border-color: var(--brand); }
#support-form input.invalid, #support-form textarea.invalid { border-color: var(--coral); background: #fef2f2; }
.form-error { color: var(--coral); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; display: none; }
.form-error.show { display: block; }
.form-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.form-note { margin-top: 14px; color: rgba(10,19,31,0.4); font-size: 0.75rem; font-weight: 500; }

/* ============ LEGALES ============ */
.legal-container { max-width: 800px; margin: 60px auto; padding: 0 24px; }
.legal-container h1 { color: var(--brand); font-size: 2.2rem; margin-bottom: 24px; }
.legal-container h2 { color: var(--ink); font-size: 1.3rem; margin: 28px 0 12px; }
.legal-container p, .legal-container li { color: rgba(10,19,31,0.8); line-height: 1.7; margin-bottom: 14px; font-size: 0.95rem; }
.legal-container a { color: var(--brand); text-decoration: underline; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--indigo), #1E1A75);
  color: #fff; padding: 60px 0; text-align: left;
}
.page-hero .eyebrow {
  background: rgba(255,255,255,0.2);
  color: #fff; margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; font-style: italic; line-height: 1.2; margin-bottom: 12px;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 600px; }

.legal-enhanced {
  margin-top: -25px; background: var(--white);
  border-radius: 28px 28px 0 0; padding-top: 40px; padding-bottom: 60px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.03);
  position: relative; z-index: 1;
}
.legal-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; }

/* ============ COOKIE CARDS ============ */
.cookie-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 32px 0; }
.cookie-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 24px; transition: box-shadow 0.3s;
}
.cookie-card:hover { box-shadow: 0 12px 30px rgba(48,40,181,0.08); }
.cookie-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.cookie-card h3 { font-size: 1.1rem; color: var(--brand); margin-bottom: 10px; }
.cookie-card p { color: rgba(10,19,31,0.7); line-height: 1.5; font-size: 0.85rem; }

/* ============ COOKIE TABLE ============ */
.cookie-table-wrap { overflow-x: auto; margin: 28px 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.cookie-table th { text-align: left; padding: 10px 14px; background: var(--indigo); color: #fff; font-weight: 700; }
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--ink); }
.cookie-table tbody tr:hover td { background: rgba(48,40,181,0.03); }

/* ============ BROWSER LIST ============ */
.browser-list { list-style: none; padding-left: 0; }
.browser-list li { margin-bottom: 16px; }
.browser-list ul { margin-top: 6px; padding-left: 20px; }

/* ============ COOKIE PREFERENCES ============ */
.cookie-preferences {
  background: #f9f9fb; border-radius: 20px; padding: 28px; margin-bottom: 40px;
}
.pref-card { padding: 18px 0; border-bottom: 1px solid var(--border); }
.pref-card:last-child { border-bottom: none; }
.pref-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pref-header h3 { font-size: 1.05rem; margin: 0; }
.always-on {
  background: var(--blush); color: var(--coral);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 3px 10px; border-radius: 20px;
}
.switch { position: relative; display: inline-block; width: 46px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc; transition: .3s; border-radius: 34px;
}
.slider:before {
  position: absolute; content: ""; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--brand); }
input:checked + .slider:before { transform: translateX(22px); }
.pref-actions { margin-top: 28px; display: flex; gap: 14px; }

/* ============ BANNER DE COOKIES ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000; transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner[hidden] {
  display: block !important;
  transform: translateY(100%);
  opacity: 0; pointer-events: none;
}
.cookie-banner--visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner__inner {
  max-width: var(--max); margin: 0 auto; padding: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
}
.cookie-banner__content { flex: 1 1 300px; }
.cookie-banner__title {
  font-size: 1.1rem; font-weight: 800; color: var(--brand); margin-bottom: 4px;
}
.cookie-banner__text { font-size: 0.85rem; color: rgba(10,19,31,0.7); line-height: 1.4; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 80px; right: -100%;
    flex-direction: column; align-items: flex-start; gap: 8px;
    width: 80%; max-width: 320px; height: calc(100vh - 80px);
    background: #fff; padding: 28px 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1rem; padding: 10px 0; letter-spacing: 0.15em; }
  .nav-links .btn { margin-top: 12px; width: 100%; justify-content: center; }
  .hero-grid { gap: 30px; }
  .reason-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .activity-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-box { padding: 48px 24px; border-radius: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-text h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-text p { font-size: 1rem; }
  .eyebrow { font-size: 0.65rem; padding: 4px 10px; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-head-row h2 { font-size: 1.8rem; }
  .reason-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .cta-box h2 { font-size: 1.8rem; }
  .cta-box p { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom div { justify-content: center; }
  .legal-container { margin: 40px auto; }
}
@media (max-width: 400px) {
  .nav-inner { height: 64px; }
  .logo-img { height: 32px; }
}
/* Footer mobile adicional */
@media (max-width: 600px) {
  .footer-grid { gap: 32px; }
  .footer ul { gap: 14px; }
  .footer-bottom { gap: 12px; padding-top: 28px; }
  .footer-bottom div { gap: 18px; }
}

/* ============ AJUSTE BOTÓN CTA EN PANTALLAS MUY PEQUEÑAS ========== */
@media (max-width: 430px) {
  .btn-xl {
    padding-left: 28px;
    padding-right: 28px;
    font-size: 1rem;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}

/* ============ PROGRAMAS 2027 ============ */
.programs {
  padding: 120px 0 100px;
  background: #fafaff;
}

.tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.tab {
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(48,40,181,0.2);
}
.tab:not(.active):hover {
  background: rgba(48,40,181,0.05);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.program-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.program-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 16px;
}
.program-card p {
  color: rgba(10,19,31,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 8px 0;
  color: rgba(10,19,31,0.8);
  font-weight: 500;
  border-bottom: 1px solid rgba(48,40,181,0.06);
}
.check-list li:last-child {
  border-bottom: none;
}

.price-box {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--indigo) 0%, #1E1A75 100%);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}
.price {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
}
.price-box small {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 8px;
  display: block;
}

.info-card {
  background: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.info-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  margin: 24px 0 12px;
}
.info-card h4:first-child {
  margin-top: 0;
}
.info-card ul {
  list-style: none;
  padding: 0;
}
.info-card ul li {
  padding: 6px 0;
  color: rgba(10,19,31,0.7);
  font-weight: 500;
  font-size: 0.9rem;
}

.payment-info {
  background: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.payment-info h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
}
.payment-info p {
  color: rgba(10,19,31,0.7);
  font-weight: 500;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
  .tabs {
    flex-wrap: wrap;
  }
}