:root {
  --color-primary: #0797a6;
  --color-primary-strong: #027b8b;
  --color-secondary: #061322;
  --color-secondary-soft: #0b1f35;
  --color-accent: #f46a12;
  --color-green: #8bbd22;
  --color-bg: #f7f8f4;
  --color-surface: #ffffff;
  --color-line: rgba(6, 19, 34, 0.12);
  --color-muted: #667384;
  --color-text: #071422;
  --shadow-soft: 0 20px 60px rgba(6, 19, 34, 0.12);
  --shadow-tight: 0 12px 30px rgba(6, 19, 34, 0.12);
  --radius-card: 8px;
  --radius-pill: 999px;
  --font-body: "Plus Jakarta Sans", "Work Sans", Arial, sans-serif;
  --font-display: "Work Sans", "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  flex-shrink: 0;
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

.shell {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 24px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(6, 19, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 19, 34, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-link__mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-link strong,
.brand-link small {
  display: block;
  white-space: nowrap;
}

.brand-link strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.brand-link small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-brand-skin="alianza"] .brand-link {
  gap: 0;
}

body[data-brand-skin="alianza"] .brand-link span {
  display: none;
}

body[data-brand-skin="alianza"] .brand-link__mark[data-brand-logo="main"] {
  width: clamp(150px, 24vw, 220px);
  height: 52px;
  padding: 4px 8px;
  background: #06243c;
  border-radius: 12px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #061322;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta svg {
  width: 18px;
  height: 18px;
  color: #0c9f5b;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 78svh;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--color-secondary);
}

.hero__overlay,
.hero__texture {
  position: absolute;
  inset: 0;
}

.hero__media {
  position: relative;
  display: block;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: #061322;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  cursor: zoom-in;
}

.hero__media-stack {
  display: grid;
  width: min(100%, 430px);
  min-width: 0;
  justify-self: center;
  gap: 14px;
}

.hero__media-stack .hero__media {
  width: 100%;
}

.hero__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 520ms ease, transform 620ms ease;
}

.hero-stream {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-stream__track {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 10px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
  scrollbar-width: thin;
}

.hero-stream__track::-webkit-scrollbar {
  height: 7px;
}

.hero-stream__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero-stream__item {
  display: grid;
  flex: 0 0 104px;
  min-width: 0;
  gap: 6px;
  padding: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-stream__item:hover,
.hero-stream__item:focus-visible,
.hero-stream__item.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(123, 227, 238, 0.72);
  transform: translateY(-2px);
}

.hero-stream__item.is-active {
  box-shadow: 0 0 0 2px rgba(7, 151, 166, 0.32);
}

.hero-stream__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}

.hero-stream__item span,
.hero-stream__item strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stream__item span {
  color: #7be3ee;
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-stream__item strong {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero__media:hover img,
.hero__media:focus-visible img {
  transform: scale(1.025);
}

.hero__media img.is-switching {
  opacity: 0;
  transform: scale(1.045);
}

.visual-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(7, 151, 166, 0.5), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(244, 106, 18, 0.42), transparent 30%),
    linear-gradient(135deg, #061322 0%, #0a2138 100%);
  text-align: center;
}

.visual-fallback strong,
.visual-fallback span {
  display: block;
  max-width: 620px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
}

.visual-fallback span {
  font-size: clamp(4rem, 18vw, 10rem);
}

.visual-fallback strong {
  font-size: clamp(1.6rem, 6vw, 4rem);
}

.visual-fallback small {
  display: block;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-fallback {
  place-items: end;
  align-content: center;
  justify-items: end;
  padding: clamp(24px, 6vw, 80px);
  text-align: right;
}

.hero-fallback span {
  opacity: 0.14;
  font-size: clamp(7rem, 28vw, 18rem);
}

.hero-fallback strong {
  max-width: 520px;
  opacity: 0.16;
  font-size: clamp(2.2rem, 8vw, 5.6rem);
}

.product-card__image .visual-fallback,
.hero__media .visual-fallback,
.planner-preview .visual-fallback,
.subject-card__media .visual-fallback,
.campaign-feature .visual-fallback,
.campaign-button .visual-fallback {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-failed .visual-fallback {
  opacity: 1;
}

.image-failed > img,
img[hidden] {
  opacity: 0;
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 24%, rgba(7, 151, 166, 0.28), transparent 26%),
    radial-gradient(circle at 90% 70%, rgba(244, 106, 18, 0.18), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(7, 151, 166, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(6, 19, 34, 0.76) 0%, rgba(6, 19, 34, 0.96) 100%),
    linear-gradient(90deg, rgba(6, 19, 34, 0.98) 0%, rgba(6, 19, 34, 0.9) 58%, rgba(6, 19, 34, 0.84) 100%);
}

.hero__texture {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 68%);
  opacity: 0.35;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(26px, 6vw, 54px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: clamp(34px, 8vw, 70px);
}

.hero__text {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.96;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(1.95rem, 5vw, 3.5rem);
  line-height: 1;
  text-wrap: balance;
}

.hero__copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 2.2vw, 1.16rem);
  font-weight: 600;
  line-height: 1.6;
}

.hero__quick-card {
  display: grid;
  max-width: 820px;
  gap: 10px;
  margin-top: 24px;
}

.hero__quick-card article {
  min-width: 0;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
}

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

.hero__quick-card span {
  color: #7be3ee;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero__quick-card strong {
  margin-top: 4px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.22;
}

.hero__actions,
.pricing-actions,
.final-cta__actions,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__actions {
  margin-top: 28px;
}

.hero__media-label {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  color: #061322;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: var(--shadow-tight);
}

.btn {
  display: inline-flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0caa61, #0797a6);
  box-shadow: 0 16px 34px rgba(7, 151, 166, 0.32);
}

.btn--ghost,
.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible,
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.btn--dark {
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 16px 34px rgba(6, 19, 34, 0.18);
}

.btn--outline {
  color: var(--color-secondary);
  border: 1px solid var(--color-line);
  background: #fff;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero__meta span::before {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.terminal-badge {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 11px;
  color: #061322;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--color-secondary);
}

.trust-strip__inner {
  display: grid;
  gap: 10px;
  align-items: stretch;
  padding-top: 12px;
  padding-bottom: 14px;
}

.trust-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  height: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
}

.trust-item svg,
.benefit-card svg,
.instruction-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trust-item__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  min-width: 32px;
  align-items: center;
  justify-content: center;
  place-items: center;
  line-height: 0;
  color: #fff;
  background: rgba(7, 151, 166, 0.2);
  border: 1px solid rgba(7, 151, 166, 0.45);
  border-radius: var(--radius-card);
}

.trust-item__icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
}

.trust-item__copy {
  display: block;
  min-width: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.trust-item__copy > span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.32;
}

.section {
  padding-block: clamp(58px, 9vw, 100px);
}

.section-head {
  max-width: 740px;
  margin-bottom: clamp(26px, 5vw, 42px);
}

.section-head--compact {
  margin-bottom: 22px;
}

.section h2,
.final-cta h2 {
  color: var(--color-secondary);
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1;
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.pricing-copy p,
.faq-layout > div > p,
.final-cta p {
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: grid;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-tight);
}

.product-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 190px;
  max-height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(7, 151, 166, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #eef7f8 100%);
}

.product-card__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 4vw, 30px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(6, 19, 34, 0.16));
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__tag {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(6, 19, 34, 0.84);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__deal {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: min(230px, calc(100% - 24px));
  gap: 6px;
  padding: 10px;
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, rgba(6, 19, 34, 0.94), rgba(11, 44, 105, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 28px rgba(6, 19, 34, 0.24);
}

.product-card__deal span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 7px;
  align-items: baseline;
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card__deal small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.product-card__deal s {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.product-card__deal strong {
  color: #ffc800;
  font-size: 0.9rem;
  line-height: 1;
}

.product-card__body {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 16px;
  padding: clamp(18px, 4vw, 24px);
}

.product-card h3 {
  margin: 0;
  color: var(--color-secondary);
  font-size: clamp(1.2rem, 3.6vw, 1.45rem);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.product-card__facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.fact {
  display: grid;
  min-width: 0;
  gap: 4px;
  align-content: start;
  padding: 11px 12px;
  background: #f7fafc;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.fact strong {
  color: var(--color-secondary);
  line-height: 1.25;
  text-align: left;
  overflow-wrap: anywhere;
}

.product-card__details {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__details li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #334356;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-card__details svg {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  color: var(--color-primary);
  fill: currentColor;
}

.product-card__actions {
  align-self: end;
}

.product-card__actions .btn {
  flex: 1 1 160px;
  min-width: 0;
  padding-inline: 14px;
}

.kids-module {
  position: relative;
  display: grid;
  gap: clamp(20px, 5vw, 34px);
  margin-top: clamp(24px, 6vw, 42px);
  padding: clamp(18px, 5vw, 34px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(46, 167, 255, 0.3), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 200, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #061322 0%, #0b2c69 56%, #063b76 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.kids-module::before {
  position: absolute;
  inset: auto -18% -34% 48%;
  height: 360px;
  content: "";
  background: linear-gradient(135deg, rgba(46, 167, 255, 0.34), rgba(255, 122, 26, 0.18));
  border-radius: 999px;
  transform: rotate(-12deg);
}

.kids-module__content,
.kids-module__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.kids-module__content {
  display: grid;
  gap: 16px;
  align-content: center;
}

.kids-module .eyebrow {
  color: #ffc800;
}

.kids-module h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.2rem);
  font-weight: 900;
  line-height: 0.96;
  text-wrap: balance;
}

.kids-module p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  font-weight: 700;
  line-height: 1.55;
}

.kids-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kids-locations span {
  min-width: 0;
  padding: 9px 12px;
  color: #061322;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 900;
}

.kids-schedule {
  display: grid;
  gap: 10px;
}

.kids-schedule article {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
}

.kids-schedule span {
  color: #ffc800;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kids-schedule strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.28;
}

.kids-price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kids-price-panel article {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 30px rgba(6, 19, 34, 0.16);
}

.kids-price-panel span {
  color: #063b76;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kids-price-panel div {
  display: grid;
  gap: 2px;
}

.kids-price-panel small {
  color: #6b7788;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: line-through;
}

.kids-price-panel strong {
  color: #ff7a1a;
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 950;
  line-height: 1.05;
}

.kids-module .btn {
  justify-self: start;
  margin-top: 4px;
  background: linear-gradient(135deg, #ff7a1a, #2ea7ff);
  box-shadow: 0 18px 38px rgba(46, 167, 255, 0.26);
}

.kids-module__visual {
  display: grid;
  gap: 12px;
  align-content: start;
}

.kids-module__mockup,
.kids-thumbs button {
  min-width: 0;
  padding: 0;
  cursor: zoom-in;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.kids-module__mockup {
  position: relative;
  width: 100%;
  padding: clamp(8px, 2vw, 12px);
  border-radius: calc(var(--radius-card) + 4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.kids-module__mockup img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-card);
}

.kids-module__deal-badge {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 3vw, 24px);
  bottom: clamp(16px, 3vw, 24px);
  display: grid;
  width: min(310px, calc(100% - 32px));
  gap: 8px;
  padding: clamp(10px, 2.4vw, 14px);
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, rgba(6, 19, 34, 0.95), rgba(11, 44, 105, 0.92));
  border: 1px solid rgba(46, 167, 255, 0.32);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 34px rgba(6, 19, 34, 0.26);
}

.kids-module__deal-badge span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: baseline;
  color: #fff;
  font-size: clamp(0.78rem, 2vw, 0.94rem);
  font-weight: 950;
  text-transform: uppercase;
}

.kids-module__deal-badge s {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86em;
}

.kids-module__deal-badge strong {
  color: #ffc800;
  font-size: 1.12em;
  line-height: 1;
}

.kids-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kids-thumbs button {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.kids-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.kids-module__mockup:hover img,
.kids-thumbs button:hover img {
  transform: scale(1.03);
}

.section--admission {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 19, 34, 0.96), rgba(8, 29, 49, 0.94)),
    var(--color-secondary);
}

.admission-layout {
  display: grid;
  gap: clamp(22px, 5vw, 46px);
  align-items: center;
}

.admission-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-card) + 4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.admission-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.admission-media:hover img {
  transform: scale(1.035);
}

.admission-panel {
  display: grid;
  gap: 18px;
  color: #fff;
}

.admission-panel .eyebrow {
  color: var(--color-accent);
}

.admission-panel h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(2rem, 6vw, 4rem);
}

.admission-panel > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 650;
  line-height: 1.7;
}

.admission-highlights {
  display: grid;
  gap: 12px;
}

.admission-highlight {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
}

.admission-highlight > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(244, 106, 18, 0.22);
  border: 1px solid rgba(244, 106, 18, 0.38);
  border-radius: var(--radius-card);
}

.admission-highlight svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.admission-highlight strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.admission-highlight p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.admission-next {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(7, 151, 166, 0.14);
  border: 1px solid rgba(7, 151, 166, 0.28);
  border-radius: var(--radius-card);
}

.admission-next strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admission-next div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admission-next span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.admission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admission-actions .btn {
  flex: 1 1 210px;
}

.section--pricing {
  background: #fff;
}

.section--planner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--color-secondary);
}

.section--planner::before,
.section--planner::after,
.section--dates::before,
.section--dates::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--planner::before {
  background:
    linear-gradient(135deg, rgba(7, 151, 166, 0.28) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(244, 106, 18, 0.2) 0 16%, transparent 16% 100%),
    linear-gradient(90deg, rgba(6, 19, 34, 0.94), rgba(6, 19, 34, 0.78));
  opacity: 0.78;
}

.section--planner::after {
  background:
    radial-gradient(circle at 14% 18%, rgba(7, 151, 166, 0.34), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(244, 106, 18, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(6, 19, 34, 0.24), rgba(6, 19, 34, 0.94));
}

.section--planner > .shell,
.section--dates > .shell {
  position: relative;
  z-index: 2;
}

.planner-layout {
  display: grid;
  gap: clamp(22px, 5vw, 44px);
  align-items: start;
}

.planner-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.planner-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
  line-height: 1.65;
}

.planner-steps {
  counter-reset: planner-step;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.planner-steps article {
  counter-increment: planner-step;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 22px rgba(3, 9, 16, 0.14);
  backdrop-filter: blur(14px);
}

.planner-step__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.planner-step__icon::before {
  content: counter(planner-step);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
}

.planner-step__icon svg {
  display: none;
}

.planner-steps svg {
  width: 23px;
  height: 23px;
  margin: auto;
  fill: currentColor;
}

.planner-steps strong,
.planner-steps small,
.planner-steps p {
  display: block;
}

.planner-steps div {
  min-width: 0;
}

.planner-steps strong {
  margin-top: 1px;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.18;
}

.planner-steps small {
  color: rgba(123, 227, 238, 0.9);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.planner-steps p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.34;
}

.planner-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.planner-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(6, 19, 34, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
}

.planner-card__brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.planner-card__brand strong,
.planner-card__brand small {
  display: block;
}

.planner-card__brand strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.planner-card__brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.planner-card__intro {
  display: grid;
  gap: 6px;
  padding: 4px 2px 0;
}

.planner-card__intro span {
  color: #7be3ee;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.planner-card__intro h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 4.5vw, 1.55rem);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.planner-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.planner-tab {
  min-height: 48px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(6, 19, 34, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.planner-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 30px rgba(7, 151, 166, 0.25);
}

.planner-control,
.planner-result {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-card);
}

.planner-control {
  display: grid;
  gap: 14px;
}

.planner-control > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.planner-control span,
.planner-result span {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.planner-control strong {
  color: var(--color-secondary);
  font-size: 2rem;
  font-weight: 900;
}

.stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.stepper button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  font-size: 1.3rem;
  font-weight: 900;
}

.stepper input {
  width: 100%;
  accent-color: var(--color-primary);
}

.planner-result {
  color: var(--color-secondary);
}

.planner-result strong {
  display: block;
  margin-top: 4px;
  color: var(--color-accent);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.planner-result small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.planner-preview-wrap {
  min-width: 0;
}

.planner-route-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 226px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(7, 151, 166, 0.34), rgba(6, 19, 34, 0.96) 46%, rgba(244, 106, 18, 0.26));
  background-size: 26px 26px, 26px 26px, auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.planner-route-card__label,
.planner-route-card > strong,
.planner-route-meta {
  position: relative;
  z-index: 2;
}

.planner-route-card__label {
  width: fit-content;
  padding: 7px 10px;
  color: #061322;
  background: #7be3ee;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.planner-route-card > strong {
  max-width: 440px;
  color: #fff;
  font-size: clamp(1.15rem, 4.5vw, 1.6rem);
  font-weight: 950;
  line-height: 1.08;
}

.planner-route-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.planner-route-meta li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.planner-route-meta span,
.planner-route-meta strong {
  display: block;
  min-width: 0;
}

.planner-route-meta span {
  color: rgba(123, 227, 238, 0.92);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.planner-route-meta strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planner-whatsapp {
  width: 100%;
}

.planner-pricing {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 3vw, 18px);
  padding: clamp(16px, 4vw, 24px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  backdrop-filter: blur(14px);
}

.pricing-layout {
  display: grid;
  gap: 24px;
}

.section--planner .pricing-copy h2 {
  color: #fff;
}

.section--planner .pricing-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.section--planner .pricing-actions {
  margin-top: 22px;
}

.pricing-copy h2 {
  margin: 0 0 16px;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.instruction-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  padding: 16px;
  color: var(--color-secondary);
  background: #f2fbfc;
  border: 1px solid rgba(7, 151, 166, 0.2);
  border-radius: var(--radius-card);
}

.instruction-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.instruction-card p {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.92rem;
}

.pricing-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: var(--color-secondary);
}

.pricing-card__top span {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card__top strong {
  color: #79dce6;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 900;
}

.price-list {
  display: grid;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border-top: 1px solid var(--color-line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row strong {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-weight: 700;
}

.price-row span {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

.section--compare {
  background:
    linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.compare-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-tight);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-cell {
  padding: 16px;
  border-top: 1px solid var(--color-line);
}

.compare-cell:first-child {
  border-top: 0;
  color: var(--color-primary-strong);
  background: #f4fbfc;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-cell strong {
  display: block;
  color: var(--color-secondary);
  font-size: 1.02rem;
}

.compare-cell span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.section--dates {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--color-secondary);
}

.section--dates::before {
  background:
    linear-gradient(90deg, rgba(6, 19, 34, 0.96), rgba(6, 19, 34, 0.74)),
    url("assets/calendario-suficiente.jpg") center / cover no-repeat;
  opacity: 0.48;
}

.section--dates::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 151, 166, 0.32), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(244, 106, 18, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(6, 19, 34, 0.32), rgba(6, 19, 34, 0.96));
}

.section--dates .eyebrow,
.final-cta .eyebrow {
  color: #7be3ee;
}

.section--dates h2 {
  color: #fff;
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1.7rem, 5.8vw, 2.55rem);
  line-height: 1.08;
  text-align: center;
}

.dates-layout {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.dates-panel {
  min-width: 0;
  padding: clamp(20px, 5vw, 34px);
  text-align: center;
  background: rgba(6, 19, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.dates-panel__copy {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.62;
}

.timeline {
  position: relative;
  counter-reset: mep-date;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.timeline::before {
  display: none;
}

.timeline-item {
  counter-increment: mep-date;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: start;
  justify-items: center;
  min-width: 0;
  padding: 14px 13px;
  text-align: center;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 22px rgba(3, 9, 16, 0.14);
}

.timeline-item__icon {
  position: relative;
  z-index: 2;
  display: none;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: none;
}

.timeline-item__icon::before {
  content: counter(mep-date);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.timeline-item svg {
  display: none;
}

.timeline-item strong {
  display: block;
  color: #fff;
  max-width: 230px;
  margin-inline: auto;
  font-size: 0.93rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
}

.timeline-item__copy {
  min-width: 0;
  margin: 0;
  display: grid;
  justify-items: center;
}

.timeline-item em {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 3px;
  padding: 4px 8px;
  color: #7be3ee;
  background: rgba(123, 227, 238, 0.1);
  border: 1px solid rgba(123, 227, 238, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.timeline-item span {
  display: block;
  margin-top: 3px;
  color: #fff;
  max-width: 230px;
  margin-inline: auto;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.24;
  text-align: center;
  text-wrap: balance;
}

.timeline-item .timeline-item__icon {
  display: none;
}

.dates-panel__cta {
  width: 100%;
  margin-top: 20px;
}

.campaign-feature {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 420px;
  padding: 0;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.campaign-feature img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.campaign-feature:hover img,
.campaign-feature:focus-visible img {
  filter: brightness(0.88) saturate(1.08);
  transform: scale(1.025);
}

.campaign-feature > span:not(.visual-fallback) {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: var(--color-secondary);
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: var(--shadow-tight);
}

.benefit-grid,
.subject-grid,
.campaign-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.benefit-card {
  display: grid;
  height: 100%;
  min-width: 0;
  align-content: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(6, 19, 34, 0.06);
}

.benefit-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-card);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.benefit-card:nth-child(2n) .benefit-card__icon {
  background: var(--color-accent);
}

.benefit-card:nth-child(3n) .benefit-card__icon {
  background: var(--color-green);
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--color-secondary);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.16;
  text-wrap: balance;
}

.benefit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.5;
}

.section--campaigns {
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 106, 18, 0.08), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(7, 151, 166, 0.11), transparent 30%),
    #fff;
}

.subject-grid {
  gap: 18px;
}

.subject-card {
  display: grid;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 19, 34, 0.1);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-tight);
}

.subject-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, color-mix(in srgb, var(--subject-accent) 42%, transparent), transparent 28%),
    linear-gradient(145deg, #061322 0%, #0b1727 100%);
}

.subject-card__media::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(3, 9, 16, 0.82));
  pointer-events: none;
}

.subject-card__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.subject-card__media:hover img,
.subject-card__media:focus-visible img {
  filter: brightness(0.86) saturate(1.08);
  transform: scale(1.035);
}

.subject-card__zoom {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 9px 12px;
  color: #fff;
  background: rgba(6, 19, 34, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

.subject-card__body {
  display: grid;
  grid-template-rows: auto auto minmax(54px, auto) auto auto;
  gap: 13px;
  min-width: 0;
  padding: 20px;
}

.subject-card__kicker {
  width: fit-content;
  padding: 7px 10px;
  color: var(--color-secondary);
  background: color-mix(in srgb, var(--subject-accent) 16%, #fff);
  border: 1px solid color-mix(in srgb, var(--subject-accent) 34%, transparent);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.subject-card h3 {
  margin: 0;
  color: var(--color-secondary);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  font-weight: 950;
  line-height: 1.06;
  text-wrap: balance;
}

.subject-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.subject-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 13px 14px;
  background: #f7fafc;
  border-left: 5px solid var(--subject-accent);
  border-radius: var(--radius-card);
}

.subject-card__meta span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subject-card__meta strong {
  color: var(--subject-accent);
  font-size: clamp(1.12rem, 4.5vw, 1.35rem);
  font-weight: 950;
  white-space: nowrap;
}

.subject-card__cta {
  width: 100%;
  justify-content: center;
}

.campaign-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 260px;
  padding: 0;
  color: #fff;
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-tight);
}

.campaign-button img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.campaign-button:hover img,
.campaign-button:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.04);
}

.campaign-button > span:not(.visual-fallback) {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 9px 11px;
  color: #fff;
  background: rgba(6, 19, 34, 0.86);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 17px;
  color: var(--color-secondary);
  background: #fff;
  font-weight: 900;
  text-align: left;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 17px 17px;
  color: var(--color-muted);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.6;
}

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 12% 24%, rgba(244, 106, 18, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(7, 151, 166, 0.36), transparent 34%),
    linear-gradient(120deg, rgba(6, 19, 34, 0.98), rgba(7, 151, 166, 0.94));
}

.final-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-top: clamp(54px, 9vw, 90px);
  padding-bottom: clamp(54px, 9vw, 90px);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-secondary);
}

.site-footer__inner {
  display: grid;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 92px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
}

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

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 650;
}

.site-footer a:not(.footer-logo) {
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-wa {
  position: fixed;
  z-index: 45;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  background: #0c9f5b;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(12, 159, 91, 0.35);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-wa.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 74px 16px 24px;
  background: rgba(3, 9, 16, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__figure {
  display: grid;
  max-width: min(980px, 100%);
  max-height: 100%;
  gap: 12px;
  margin: 0;
}

.lightbox__figure img {
  width: auto;
  max-width: 100%;
  max-height: min(78svh, 880px);
  margin: auto;
  object-fit: contain;
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.lightbox__figure figcaption {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--prev svg {
  transform: rotate(180deg);
}

.lightbox__nav--next {
  right: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 560px) {
  .trust-strip__inner,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subject-grid,
  .campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    padding-bottom: 26px;
  }
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
  }

  .hero {
    min-height: 82svh;
    align-items: center;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    padding-top: 116px;
  }

  .hero__media {
    justify-self: end;
  }

  .hero__media-stack {
    justify-self: end;
  }

  .hero__quick-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .admission-layout,
  .planner-layout,
  .pricing-layout,
  .dates-layout,
  .faq-layout,
  .final-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout,
  .dates-layout {
    align-items: center;
  }

  .product-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: 300px;
  }

  .kids-module {
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
    align-items: center;
  }

  .kids-schedule {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admission-media {
    justify-self: start;
  }

  .compare-row {
    grid-template-columns: 0.8fr repeat(2, minmax(0, 1fr));
  }

  .compare-cell {
    border-top: 0;
    border-left: 1px solid var(--color-line);
  }

  .compare-cell:first-child {
    border-left: 0;
  }

  .final-cta__actions {
    justify-content: end;
  }
}

@media (min-width: 980px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .planner-layout {
    grid-template-columns: minmax(240px, 0.84fr) minmax(320px, 1fr) minmax(300px, 0.92fr);
    gap: 20px;
  }

  .planner-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.04;
  }

  .planner-pricing {
    grid-column: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .section--planner .pricing-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section--planner .pricing-copy h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1.04;
  }

  .section--planner .pricing-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .section--planner .instruction-card {
    margin: 16px 0;
  }

  .section--planner .pricing-card__top strong {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subject-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .campaign-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .campaign-button {
    min-height: 320px;
  }

  .campaign-button img {
    min-height: 320px;
  }
}

@media (max-width: 420px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-link small {
    display: none;
  }

  .brand-link strong {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    min-width: 44px;
    padding: 0 12px;
  }

  .header-cta svg {
    width: 20px;
    height: 20px;
  }

  .header-cta {
    font-size: 0;
    gap: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 92px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .hero__media {
    width: min(100%, 330px);
  }

  .hero__media-stack {
    width: min(100%, 330px);
  }

  .hero__copy {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero__meta {
    gap: 8px;
    margin-top: 18px;
  }

  .hero__meta span {
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .btn {
    width: 100%;
  }

  .hero__meta span {
    width: 100%;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row span {
    font-size: 1.5rem;
  }

  .product-card__deal {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 9px;
  }

  .product-card__deal span {
    grid-template-columns: 1fr auto;
  }

  .product-card__deal small {
    grid-column: 1 / -1;
  }

  .kids-price-panel {
    grid-template-columns: 1fr;
  }

  .kids-module__deal-badge {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .kids-module__deal-badge span {
    grid-template-columns: 1fr auto;
  }

  .floating-wa span {
    display: none;
  }

  .floating-wa {
    width: 56px;
    padding: 0;
  }
}

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