:root {
  --blue: #0d78b7;
  --blue-dark: #07547f;
  --blue-deep: #063753;
  --blue-soft: #eaf6fc;
  --green: #95c914;
  --green-dark: #6e9f00;
  --ink: #173042;
  --muted: #637786;
  --white: #ffffff;
  --off-white: #f7fbfd;
  --line: rgba(13, 120, 183, 0.14);
  --shadow: 0 24px 60px rgba(6, 55, 83, 0.12);
  --shadow-soft: 0 14px 36px rgba(6, 55, 83, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-light {
  background: var(--off-white);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.scrolled {
  border-color: rgba(13, 120, 183, 0.1);
  box-shadow: 0 12px 28px rgba(4, 46, 70, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue-dark);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(13, 120, 183, 0.12);
}

.brand span {
  white-space: nowrap;
  font-size: 1.02rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .94rem;
  font-weight: 650;
  color: #36586a;
}

.main-nav a {
  position: relative;
  transition: color .2s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 24px rgba(13, 120, 183, .22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: var(--blue-dark);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(149, 201, 20, .13), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(13, 120, 183, .16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #eef9fc 100%);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 58px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(13, 120, 183, .08);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--blue-deep);
  max-width: 820px;
}

.hero-lead {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  color: var(--blue-dark);
  max-width: 680px;
}

.hero-lead strong {
  color: var(--green-dark);
}

.hero-text {
  max-width: 650px;
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: .94rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 30px rgba(13, 120, 183, .25);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(13, 120, 183, .18);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.hero-phone {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-phone span {
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-phone a {
  width: fit-content;
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--blue-deep);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-stage {
  width: min(100%, 520px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 73%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  box-shadow: 0 34px 90px rgba(13, 120, 183, .18);
  border: 12px solid rgba(255,255,255,.92);
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13, 120, 183, .18);
}

.ring-one {
  inset: 3%;
  animation: pulseRing 4.5s ease-in-out infinite;
}

.ring-two {
  inset: 13%;
  border-color: rgba(149, 201, 20, .26);
  animation: pulseRing 4.5s 1.1s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 148px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(6, 55, 83, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.85);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.floating-card span {
  color: var(--muted);
  font-size: .74rem;
  margin-top: 2px;
}

.float-card-one {
  top: 13%;
  right: -2%;
  animation: floatY 4s ease-in-out infinite;
}

.float-card-two {
  left: -3%;
  bottom: 17%;
  animation: floatY 4.8s .8s ease-in-out infinite;
}

.float-card-three {
  right: 0;
  bottom: 4%;
  animation: floatY 4.3s .4s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-a {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: 80px;
  background: rgba(149, 201, 20, .16);
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 80px;
  background: rgba(13, 120, 183, .11);
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -92px;
  height: 175px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white);
  transform: rotate(-2deg);
}

.announcement {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding: 20px 0 30px;
}

.announcement-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow);
}

.announcement-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(149, 201, 20, .55);
  animation: pulseDot 1.7s infinite;
}

.announcement-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.announcement-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .79rem;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,.14);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.centered {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  margin-inline: auto;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--blue-deep);
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.03rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.stat-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(149,201,20,.10);
  top: -40px;
  right: -30px;
}

.stat-number {
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -.05em;
}

.stat-card strong {
  margin-top: 8px;
  font-size: 1.03rem;
}

.stat-card p {
  margin-top: 4px;
  font-size: .84rem;
  color: var(--muted);
}

.benefits-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(6,55,83,.13);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 26px rgba(13,120,183,.2);
}

.feature-card:nth-child(2n) .feature-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.feature-card h3 {
  color: var(--blue-deep);
  font-size: 1.18rem;
}

.feature-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .94rem;
}

.level-banner {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.level-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.kicker-light {
  background: rgba(255,255,255,.12);
  color: #dff5ff;
}

.level-banner h3 {
  margin-top: 10px;
  font-size: 2.3rem;
  line-height: 1;
}

.level-banner p {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
}

.level-badge {
  position: relative;
  z-index: 2;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 2.1rem;
  font-weight: 950;
  color: var(--blue-deep);
  background: var(--green);
  border: 8px solid rgba(255,255,255,.18);
}

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

.age-card {
  min-height: 320px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow);
}

.age-card::before,
.age-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
}

.age-card::before {
  width: 180px;
  height: 180px;
  top: -50px;
  right: -40px;
}

.age-card::after {
  width: 110px;
  height: 110px;
  top: 16px;
  right: 16px;
}

.age-kids {
  background: linear-gradient(145deg, #7faf08, var(--green));
}

.age-teens {
  background: linear-gradient(145deg, var(--blue), #0a659b);
}

.age-adults {
  background: linear-gradient(145deg, var(--blue-deep), #104f70);
}

.age-label {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.age-card strong {
  margin-top: 18px;
  font-size: 3.9rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.age-card p {
  margin-top: 6px;
  color: rgba(255,255,255,.8);
}

.schedule-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(149,201,20,.1), transparent 28%),
    #ffffff;
}

.schedule-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.schedule-card {
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.schedule-card:nth-child(2) {
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: var(--white);
}

.schedule-tag {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13,120,183,.09);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
}

.schedule-card:nth-child(2) .schedule-tag {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.schedule-number {
  font-size: 6rem;
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.08em;
  color: var(--blue);
}

.schedule-card:nth-child(2) .schedule-number {
  color: var(--green);
}

.schedule-card strong {
  font-size: 1.35rem;
}

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

.price-card {
  padding: 34px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.price-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-top: 9px;
  color: var(--blue-deep);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -.05em;
}

.featured-price {
  transform: translateY(-10px);
  border-color: rgba(149,201,20,.45);
  box-shadow: 0 25px 50px rgba(109,159,0,.15);
}

.featured-price::before {
  content: "Costo normal";
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(149,201,20,.14);
  color: var(--green-dark);
  font-size: .74rem;
  font-weight: 850;
}

.promo-section {
  overflow: hidden;
  background: linear-gradient(140deg, #042f49 0%, #075d8d 55%, #0d78b7 100%);
}

.dark-heading h2,
.dark-heading p {
  color: var(--white);
}

.promo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 38px;
  min-height: 430px;
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.promo-main {
  background: var(--white);
  color: var(--ink);
}

.scholarship-card {
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.promo-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13,120,183,.09);
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.green-pill {
  background: rgba(149,201,20,.18);
  color: #dfff8b;
}

.promo-main h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  color: var(--blue-deep);
  letter-spacing: -.05em;
}

.promo-prices {
  margin: 28px 0;
  display: grid;
  gap: 10px;
}

.promo-prices > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(13,120,183,.12);
}

.promo-prices span {
  color: var(--muted);
}

.promo-prices strong {
  color: var(--blue-deep);
  font-size: 1.15rem;
  white-space: nowrap;
}

.scholarship-title {
  display: block;
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scholarship-price {
  margin-top: 10px;
  font-size: clamp(4.4rem, 8vw, 7rem);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.075em;
  color: var(--green);
}

.scholarship-card p {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
}

.included {
  margin: 26px 0;
  padding: 15px 17px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  font-weight: 750;
}

.promo-shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}

.promo-shape-a {
  width: 440px;
  height: 440px;
  left: -190px;
  top: -170px;
}

.promo-shape-b {
  width: 540px;
  height: 540px;
  right: -210px;
  bottom: -280px;
}

.compare-section {
  background: #f7fbfd;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.compare-column {
  padding: 30px;
}

.compare-column + .compare-column {
  border-left: 1px solid var(--line);
}

.compare-column h3 {
  margin-bottom: 18px;
  color: var(--blue-deep);
}

.compare-column p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13,120,183,.1);
}

.compare-column p:last-child {
  border-bottom: 0;
}

.compare-column span {
  color: var(--muted);
}

.compare-column strong {
  text-align: right;
  color: var(--blue-deep);
}

.highlight-column {
  background: rgba(149,201,20,.07);
}

.contact-section {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 54px;
  align-items: center;
}

.contact-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.contact-copy > p {
  margin-top: 16px;
  max-width: 640px;
  color: rgba(255,255,255,.8);
}

.contact-phone-label {
  margin-top: 32px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #dcff81;
}

.contact-phone {
  display: inline-block;
  margin-top: 4px;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.055em;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-card-top img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card-top span,
.contact-card-top strong {
  display: block;
}

.contact-card-top span {
  color: var(--muted);
  font-size: .85rem;
}

.contact-card-top strong {
  margin-top: 2px;
  font-size: 1.4rem;
  color: var(--blue-deep);
}

.contact-card address {
  margin-top: 24px;
  font-style: normal;
  font-size: 1.06rem;
  line-height: 1.9;
  color: #3f5c6d;
}

.address-link {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--green);
  color: var(--blue-dark);
  font-weight: 850;
}

.site-footer {
  padding: 34px 0;
  background: #03293e;
  color: rgba(255,255,255,.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong,
.footer-brand a {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand a {
  margin-top: 3px;
  font-size: .86rem;
}

.footer-address {
  font-size: .83rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: .82rem;
  font-weight: 700;
}


.modalities-section {
  background:
    linear-gradient(135deg, rgba(13,120,183,.055), rgba(149,201,20,.06)),
    #ffffff;
}

.modality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.modality-card {
  position: relative;
  min-height: 300px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(13,120,183,.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f4fbff);
  box-shadow: var(--shadow-soft);
}

.modality-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,120,183,.16), rgba(149,201,20,.18));
}

.modality-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13,120,183,.2);
}

.modality-card:nth-child(2) .modality-mark {
  background: var(--green-dark);
}

.modality-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--blue-deep);
}

.modality-card p {
  max-width: 32rem;
  color: var(--muted);
}

.modality-meta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 26px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(13,120,183,.08);
  color: var(--blue-dark);
  font-weight: 800;
}

.closing-cta {
  padding: 36px 0 0;
  background: var(--off-white);
}

.closing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 46px;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(149,201,20,.24), transparent 30%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  box-shadow: 0 -10px 35px rgba(6,55,83,.10);
}

.closing-cta-inner span {
  font-weight: 800;
}

.closing-cta-inner h2 {
  margin: 7px 0 6px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.closing-cta-inner p {
  max-width: 620px;
  color: rgba(255,255,255,.86);
}

.closing-phone {
  flex: 0 0 auto;
  padding: 16px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6,55,83,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.js-enhanced .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

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

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(149,201,20,.55); }
  70% { box-shadow: 0 0 0 10px rgba(149,201,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(149,201,20,0); }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-10px) scale(.98);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 4px; }

  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    min-height: auto;
    padding: 70px 0 110px;
  }

  .hero-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { text-align: center; }
  .hero-copy .eyebrow,
  .hero-phone a { margin-inline: auto; }
  .hero-lead,
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 12px; }

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

  .age-grid,
  .pricing-grid,
  .comparison-wrap {
    grid-template-columns: 1fr;
  }

  .featured-price { transform: none; }
  .compare-column + .compare-column { border-left: 0; border-top: 1px solid var(--line); }

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

  .modality-grid {
    grid-template-columns: 1fr;
  }

  .closing-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }

  .brand span { display: none; }
  .brand img { width: 52px; height: 52px; }

  .hero { padding-top: 50px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1.13rem; }
  .hero-grid { gap: 24px; }
  .logo-stage { width: 100%; max-width: 430px; }
  .hero-logo { width: 70%; border-width: 8px; }
  .floating-card { min-width: 118px; padding: 11px 12px; }
  .float-card-one { right: 0; top: 10%; }
  .float-card-two { left: 0; bottom: 14%; }
  .float-card-three { right: 5%; bottom: -2%; }

  .announcement-grid {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }
  .announcement-tags { justify-content: flex-start; }

  .stat-grid,
  .benefit-grid,
  .schedule-cards {
    grid-template-columns: 1fr;
  }

  .stat-card { min-height: 190px; }
  .level-banner { align-items: flex-start; padding: 28px; }
  .level-badge { width: 88px; font-size: 1.6rem; border-width: 5px; }
  .age-card { min-height: 270px; }
  .schedule-grid { gap: 24px; }

  .promo-card { padding: 28px 22px; min-height: auto; }
  .promo-prices > div { align-items: flex-start; flex-direction: column; }
  .promo-prices strong { font-size: 1.35rem; }
  .scholarship-price { font-size: 4.5rem; }

  .contact-card { padding: 24px; }
  .contact-card-top img { width: 70px; height: 70px; }

  .footer-links { flex-wrap: wrap; }
  .modality-card { min-height: auto; padding: 28px 24px; }
  .closing-cta-inner { padding: 32px 24px; border-radius: 26px 26px 0 0; }
  .closing-phone { width: 100%; text-align: center; }
}

@media (max-width: 460px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }
  .floating-card { font-size: .9rem; }
  .float-card-three { display: none; }
  .age-card strong { font-size: 3.2rem; }
  .schedule-number { font-size: 5.1rem; }
  .level-banner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
