:root {
  --ink: #171936;
  --muted: #6e7184;
  --purple: #6655f5;
  --purple-dark: #352b82;
  --coral: #ff755f;
  --lime: #c9ff3d;
  --paper: #f7f7fb;
  --line: #e8e8f0;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 22px 70px rgba(39, 35, 86, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 78px 0; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(232,232,240,.85);
  background: rgba(247,247,251,.88);
  backdrop-filter: blur(18px);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo img { width: 156px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { font-size: 13px; font-weight: 700; }
.desktop-nav a:hover { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.payment-link { padding: 12px 20px; color: #fff; border-radius: 999px; background: linear-gradient(135deg,var(--coral),#ff9e6f); box-shadow: 0 9px 22px rgba(255,117,95,.28); font-size: 13px; font-weight: 800; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; background: #fff; }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: var(--ink); }
.mobile-nav { display: none; padding: 4px 20px 20px; background: var(--paper); }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav.open { display: block; }

.hero { padding-top: 42px; }
.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  min-height: 680px;
  padding: 64px 64px 0;
  overflow: hidden;
  color: #fff;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(130deg,#5c58f7 0%,#794cf1 54%,#d44eb8 100%);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.orb-one { width: 130px; height: 130px; left: 25px; top: 80px; }
.orb-two { width: 80px; height: 80px; right: 30px; top: 250px; }
.hero-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 126px; }
.availability { display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.13); font-size: 13px; font-weight: 700; }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(201,255,61,.14); }
.availability span { font-size: 18px; }
h1,h2,h3 { font-family: "Nunito", sans-serif; }
.hero h1 { margin: 26px 0 20px; font-size: clamp(48px,5.1vw,72px); line-height: .97; letter-spacing: -.045em; }
.hero h1 em { color: #ffe660; font-style: normal; }
.hero-copy > p { max-width: 530px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; }
.hero-buttons { display: flex; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 56px; padding: 0 26px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: #fff; background: linear-gradient(135deg,var(--coral),#ff9c69); box-shadow: 0 13px 32px rgba(255,101,86,.28); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.36); }
.button-dark { color: #fff; background: var(--ink); }
.hero-visual { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: center; }
.hero-visual img { width: min(610px, 115%); max-width: none; margin: 0 -7% 54px -5%; filter: drop-shadow(0 30px 28px rgba(34,21,95,.22)); }
.hero-stats { position: absolute; z-index: 3; right: 64px; bottom: 0; left: 64px; display: grid; grid-template-columns: repeat(4,1fr); padding: 26px 0; border-top: 1px solid rgba(255,255,255,.22); }
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { font: 900 36px/1 "Nunito",sans-serif; }
.hero-stats span { margin-top: 5px; color: rgba(255,255,255,.64); font-size: 12px; }

.trust-strip { padding: 28px 0 10px; }
.trust-grid { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 14px; align-items: stretch; }
.trust-label,.partner { min-height: 106px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.trust-label { display: flex; flex-direction: column; justify-content: center; padding: 22px 25px; }
.trust-label span { color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.trust-label strong { margin-top: 5px; font: 800 16px/1.25 "Nunito",sans-serif; }
.partner { display: flex; align-items: center; justify-content: center; padding: 18px; }
.partner img { max-width: 100%; max-height: 52px; }
.partner.mgu { gap: 8px; color: #123970; font-weight: 900; }
.partner.mgu img { width: 44px; }

.eyebrow { display: block; margin-bottom: 18px; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.eyebrow.light { color: var(--lime); }
.section-heading h2,.section-top h2,.benefit-intro h2,.locations-card h2,.contact-card h2 { margin: 0; font-size: clamp(38px,4.2vw,58px); line-height: 1.04; letter-spacing: -.035em; }
h2 em { color: var(--purple); font-style: normal; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-copy .lead { margin-top: 8px; color: var(--ink); font-size: 23px; font-weight: 700; line-height: 1.5; }
.about-copy p { color: var(--muted); line-height: 1.75; }
.about-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.about-points span { padding: 11px 14px; border-radius: 999px; background: #eceaff; color: var(--purple-dark); font-size: 12px; font-weight: 800; }

.programs-section { background: #fff; }
.section-top { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 38px; }
.section-top > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); line-height: 1.7; }
.program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.program-card { position: relative; min-height: 490px; padding: 31px; overflow: hidden; border-radius: var(--radius); }
.program-card.lime { background: #eaffad; }
.program-card.violet { color: #fff; background: #7163f4; }
.program-card.coral { background: #ffd6cc; }
.program-card > span { font-size: 11px; font-weight: 900; letter-spacing: .15em; opacity: .68; }
.program-icon { position: absolute; top: 24px; right: 24px; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: rgba(255,255,255,.52); font: 900 21px/1 "Nunito",sans-serif; }
.program-card h3 { margin: 66px 0 12px; font-size: 31px; line-height: 1.08; }
.program-card p { min-height: 78px; opacity: .76; line-height: 1.6; }
.program-card ul { padding: 0; list-style: none; }
.program-card li { padding: 7px 0; border-bottom: 1px solid rgba(23,25,54,.12); font-size: 13px; font-weight: 700; }
.program-card.violet li { border-color: rgba(255,255,255,.18); }
.program-card a { position: absolute; right: 31px; bottom: 28px; left: 31px; display: flex; justify-content: space-between; padding-top: 19px; border-top: 1px solid rgba(23,25,54,.13); font-weight: 800; }

.centered { text-align: center; }
.process-section { background: #fff; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 55px; }
.timeline article { position: relative; padding: 0 26px; border-left: 1px solid var(--line); }
.timeline article:last-child { border-right: 1px solid var(--line); }
.timeline b { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; border-radius: 16px; background: var(--purple); font: 900 14px "Nunito",sans-serif; }
.timeline h3 { margin: 23px 0 8px; font-size: 21px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.benefits-section { color: #fff; background: var(--ink); }
.benefit-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; }
.benefit-intro h2 em { color: #ffe660; }
.benefit-intro p { max-width: 440px; margin: 24px 0 30px; color: rgba(255,255,255,.62); line-height: 1.7; }
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.benefit-cards article { min-height: 210px; padding: 28px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.benefit-cards article:nth-child(2n) { border-right: 0; }
.benefit-cards article:nth-child(n+3) { border-bottom: 0; }
.benefit-cards i { color: var(--lime); font-size: 12px; font-style: normal; font-weight: 900; }
.benefit-cards h3 { margin: 35px 0 8px; font-size: 21px; }
.benefit-cards p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.6; }

.locations-section { background: #eaf9fb; }
.locations-heading { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.locations-heading h2 { margin: 0; font-size: clamp(36px,4vw,50px); line-height: 1.05; }
.locations-heading h2 em { background: linear-gradient(90deg,#6655f5,#d34db6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.locations-heading p { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.locations-map-layout { display: grid; grid-template-columns: 320px minmax(0,1fr); height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 14px 44px rgba(39,35,86,.1); }
.locations-panel { display: flex; min-height: 0; flex-direction: column; border-right: 1px solid var(--line); }
.locations-panel-title { display: flex; flex: 0 0 78px; align-items: center; gap: 12px; padding: 0 22px; border-bottom: 1px solid var(--line); }
.location-pin-icon { display: grid; place-items: center; width: 38px; height: 38px; color: var(--purple); border-radius: 12px; background: #eeecff; font-size: 20px; }
.locations-panel-title strong { font: 800 16px "Nunito",sans-serif; }
.locations-list { height: 482px; overflow-y: auto; overscroll-behavior: contain; }
.locations-list::-webkit-scrollbar { width: 5px; }
.locations-list::-webkit-scrollbar-thumb { border-radius: 999px; background: #c9c8dc; }
.location-item { width: 100%; padding: 15px 22px; border: 0; border-bottom: 1px solid var(--line); background: #fff; color: var(--ink); text-align: left; cursor: pointer; transition: background .18s ease; }
.location-item:hover,.location-item.active { background: #f0efff; }
.location-item strong { display: block; font: 800 14px/1.3 "Nunito",sans-serif; }
.location-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.locations-empty { padding: 45px 24px; color: var(--muted); text-align: center; font-size: 13px; }
.map-shell { position: relative; height: 560px; overflow: hidden; background: #dff2f5; }
#centersMap { width: 100%; height: 560px; }
.map-loading { position: absolute; z-index: 3; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; background: rgba(234,249,251,.92); color: var(--muted); font-size: 13px; }
.map-loading.hidden { display: none; }
.map-loading i { width: 30px; height: 30px; border: 3px solid rgba(102,85,245,.18); border-top-color: var(--purple); border-radius: 50%; animation: map-spin .8s linear infinite; }
.map-marker { position: relative; width: 36px; height: 36px; cursor: pointer; transition: transform .16s ease; }
.map-marker > img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.26)); }
.map-marker:hover,.map-marker.active { z-index: 4; transform: scale(1.28); }
.map-tooltip { position: absolute; left: 50%; bottom: calc(100% + 7px); width: max-content; max-width: 230px; padding: 8px 10px; border-radius: 9px; background: rgba(23,25,54,.94); color: #fff; opacity: 0; pointer-events: none; transform: translateX(-50%); transition: opacity .15s ease; }
.map-marker:hover .map-tooltip,.map-marker.active .map-tooltip { opacity: 1; }
.map-tooltip b { display: block; font-size: 11px; }
.map-tooltip small { display: block; margin-top: 3px; color: rgba(255,255,255,.68); font-size: 9px; line-height: 1.35; }
@keyframes map-spin { to { transform: rotate(360deg); } }

.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 58px; color: #fff; border-radius: 34px; background: linear-gradient(135deg,var(--coral),#f38b60); }
.contact-card h2 { font-size: clamp(34px,3.6vw,50px); }
.contact-card p { max-width: 540px; color: rgba(255,255,255,.76); line-height: 1.7; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-actions a { display: flex; flex-direction: column; justify-content: center; min-height: 110px; padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(255,255,255,.11); }
.contact-actions span { color: rgba(255,255,255,.64); font-size: 11px; }
.contact-actions strong { margin-top: 6px; font-size: 14px; }

footer { padding: 24px 0 42px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-inner img { width: 140px; }
.footer-inner p { color: var(--muted); font-size: 12px; }
.footer-inner div { display: flex; gap: 16px; font-size: 12px; font-weight: 800; }
@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-card { min-height: 760px; grid-template-columns: 1fr 1fr; padding: 50px 42px 0; }
  .hero-stats { right: 42px; left: 42px; }
  .hero-copy { padding-bottom: 130px; }
  .hero h1 { font-size: 52px; }
  .hero-visual img { margin-bottom: 76px; }
  .trust-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .trust-grid .partner:nth-last-child(-n+2) { display: none; }
  .benefit-layout { gap: 45px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 560px); }
  .section { padding: 58px 0; }
  .header-inner { height: 66px; }
  .logo img { width: 130px; }
  .payment-link { display: none; }
  .hero { padding-top: 14px; }
  .hero-card { display: flex; flex-direction: column; min-height: auto; padding: 28px 20px 0; border-radius: 26px; }
  .hero-copy { order: 1; padding: 0; text-align: center; }
  .availability { font-size: 11px; }
  .hero h1 { margin-top: 20px; font-size: clamp(39px,12vw,53px); }
  .hero-copy > p { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .button { width: 100%; min-height: 52px; }
  .hero-visual { order: 2; margin-top: 24px; }
  .hero-visual img { width: 118%; margin: 0 -9% 0; }
  .hero-stats { position: relative; order: 3; right: auto; bottom: auto; left: auto; grid-template-columns: 1fr 1fr; gap: 22px 0; padding: 24px 0; }
  .hero-stats strong { font-size: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-label { grid-column: 1/-1; text-align: center; }
  .trust-grid .partner:nth-last-child(-n+2) { display: flex; }
  .about-grid,.contact-card { grid-template-columns: 1fr; gap: 34px; }
  .section-heading h2,.section-top h2,.benefit-intro h2,.locations-card h2 { font-size: 38px; }
  .section-top { display: block; }
  .section-top > p { margin-top: 20px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 460px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .timeline article:nth-child(3) { border-left: 1px solid var(--line); }
  .benefit-layout { grid-template-columns: 1fr; }
  .benefit-cards article { padding: 22px; }
  .locations-map-layout { grid-template-columns: 1fr; height: auto; }
  .locations-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .locations-list { height: 280px; }
  .map-shell,#centersMap { height: 420px; min-height: 420px; }
  .contact-card { padding: 30px 22px; border-radius: 26px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions a { min-height: 88px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .partner { min-height: 86px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
  .timeline h3 { margin-top: 0; }
  .benefit-cards { grid-template-columns: 1fr; }
  .benefit-cards article,.benefit-cards article:nth-child(2n),.benefit-cards article:nth-child(n+3) { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefit-cards article:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
