/* Design system: corporate violet/yellow, soft 3D, and glassmorphism */
:root {
  --violet-950: #160b33;
  --violet-900: #26104f;
  --violet-800: #371676;
  --violet-700: #5523b8;
  --violet-600: #6d28d9;
  --violet-500: #7c3aed;
  --violet-400: #9f67ff;
  --violet-100: #f1eaff;
  --violet-50: #faf7ff;
  --yellow-600: #eab308;
  --yellow-500: #facc15;
  --yellow-400: #fde047;
  --yellow-100: #fff4bd;
  --yellow-50: #fff9db;
  --white: #fff;
  --paper: #fffefe;
  --ink: #15112b;
  --muted: #615a78;
  --soft-text: #827a98;
  --glass-bg: rgba(255, 255, 255, 0.66);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-blur: blur(22px) saturate(160%);
  --glass-shadow: 0 24px 70px rgba(40, 16, 90, 0.14);
  --soft-3d-shadow:
    12px 18px 42px rgba(40, 16, 90, 0.18),
    -10px -10px 26px rgba(255, 255, 255, 0.9);
  --soft-3d-inset: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --container: 1280px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --font-main:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --transition: 220ms ease;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 12%, rgba(250, 204, 21, 0.24), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.18), transparent 30%),
    radial-gradient(circle at 70% 65%, rgba(250, 204, 21, 0.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf7ff 48%, #fff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 78px 0;
  scroll-margin-top: 102px;
}

/* Shared components */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  box-shadow:
    0 18px 38px rgba(109, 40, 217, 0.34),
    var(--soft-3d-inset);
}

.btn-primary:hover {
  box-shadow:
    0 24px 46px rgba(109, 40, 217, 0.42),
    var(--soft-3d-inset);
}

.btn-yellow {
  color: var(--violet-950);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  box-shadow:
    0 18px 40px rgba(234, 179, 8, 0.34),
    var(--soft-3d-inset);
}

.btn-ghost {
  color: var(--violet-600);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(109, 40, 217, 0.12);
  box-shadow: 0 10px 28px rgba(40, 16, 90, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn-arrow {
  font-size: 1.35em;
  line-height: 1;
}

.icon-placeholder,
.soft-icon {
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), transparent 22%),
    linear-gradient(145deg, #fff, var(--violet-100));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-3d-shadow), var(--soft-3d-inset);
}

/* Header and navigation */
.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px 20px;
  border-radius: 24px;
  pointer-events: auto;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled .header-shell {
  transform: translateY(-6px);
  box-shadow: 0 18px 54px rgba(40, 16, 90, 0.16);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--yellow-500);
  font-size: 25px;
}

.brand-text {
  color: var(--violet-950);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-text-full {
  display: grid;
}

.brand-text-full strong {
  font-size: 17px;
  font-weight: 900;
}

.brand-text-full span {
  font-size: 15px;
  font-weight: 800;
}

.brand-text-mobile {
  display: block;
  color: var(--violet-950);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--violet-950);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.88;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--violet-600);
  opacity: 1;
}

.burger {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(40, 16, 90, 0.12);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--violet-950);
}

/* Hero layout */
.section-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 118px 0 44px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.2px);
}

.hero-bg-shape-one {
  top: 8%;
  right: 1%;
  width: 420px;
  height: 420px;
  border-radius: 55% 45% 60% 40%;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(255, 255, 255, 0.16));
}

.hero-bg-shape-two {
  bottom: 6%;
  left: 2%;
  width: 240px;
  height: 240px;
  border-radius: 45% 55% 38% 62%;
  background: linear-gradient(145deg, rgba(250, 204, 21, 0.26), rgba(255, 255, 255, 0.2));
}

.hero-bg-shape-three {
  right: 28%;
  bottom: 14%;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.24);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(620px, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 20px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-pill {
  display: block;
  width: fit-content;
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--violet-700);
  font-size: clamp(31px, 2.35vw, 43px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-title {
  max-width: 620px;
  margin: 0;
  color: var(--violet-950);
  font-size: clamp(39px, 3.55vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.accent-word {
  display: block;
  color: transparent;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  background-clip: text;
  -webkit-background-clip: text;
}

.quote,
.quote-left {
  color: var(--violet-950);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: 20px;
  color: var(--violet-950);
  font-size: 16px;
  font-weight: 850;
}

.meta-icon {
  color: var(--violet-500);
}

.meta-divider {
  width: 1px;
  height: 22px;
  background: rgba(109, 40, 217, 0.2);
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 18px;
  color: var(--violet-950);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-quote {
  position: relative;
  max-width: 540px;
  margin: 0 0 20px;
  padding: 16px 20px 16px 62px;
  border-radius: 20px;
}

.hero-quote p {
  margin: 0;
  color: var(--violet-950);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
}

.quote-mark {
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--violet-500);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-inline,
.play-dot {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.play-dot {
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
}

/* Hero illustration */
.hero-art {
  position: relative;
  z-index: 2;
  min-height: 450px;
  isolation: isolate;
}

.hero-art-blob {
  position: absolute;
  inset: 18px 0 0 28px;
  z-index: -1;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.84), transparent 18%),
    linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(250, 204, 21, 0.14));
  box-shadow: 24px 30px 90px rgba(109, 40, 217, 0.16);
}

.hero-image-placeholder {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: min(132%, 760px);
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 48px rgba(40, 16, 90, 0.18));
}

.floating-icon {
  display: none;
}

.hero-feature-row {
  display: none;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 12px;
  border-right: 1px solid rgba(109, 40, 217, 0.12);
}

.feature-chip:last-child {
  border-right: 0;
}

.chip-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--violet-600);
  font-size: 22px;
}

.feature-chip strong {
  color: var(--violet-950);
  font-size: 15px;
  font-weight: 900;
}

.feature-chip span:last-child {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

/* About section */
.about-section {
  position: relative;
  padding: 40px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(250, 204, 21, 0.16), transparent 25%),
    radial-gradient(circle at 94% 62%, rgba(124, 58, 237, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.52);
}

.about-section::before {
  position: absolute;
  top: 64px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  content: "";
  background: rgba(124, 58, 237, 0.08);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(365px, 0.92fr) minmax(600px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-copy {
  max-width: 500px;
}

.about-copy h2 {
  margin: 0 0 9px;
  color: var(--violet-950);
  font-size: clamp(31px, 2.75vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.about-lead {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.48;
}

.about-art-slot {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  width: min(100%, 430px);
  height: 250px;
}

.about-art-slot::before {
  position: absolute;
  inset: 34px 5px 8px;
  border-radius: 46% 54% 48% 52%;
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.84), transparent 19%),
    linear-gradient(145deg, rgba(124, 58, 237, 0.13), rgba(250, 204, 21, 0.13));
}

.about-art-slot picture {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-art-slot img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(138%, 560px);
  height: auto;
  max-width: none;
  max-height: 292px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(40, 16, 90, 0.17));
}

.about-benefits {
  min-width: 0;
}

.about-card-icon {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, #fff, rgba(255, 255, 255, 0.25) 24%, transparent 25%),
    linear-gradient(145deg, #fff, var(--violet-100));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    10px 14px 30px rgba(40, 16, 90, 0.14),
    inset 2px 3px 5px rgba(255, 255, 255, 0.95);
}

.about-card-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.about-prompt {
  width: fit-content;
  margin: 0 0 14px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--violet-700);
  font-size: 17px;
  font-weight: 900;
  background: var(--violet-100);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 16px 38px rgba(40, 16, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.about-card-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  font-size: 23px;
}

.about-card p {
  margin: 0;
  color: var(--violet-950);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.about-card-relax {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(253, 224, 71, 0.24), rgba(255, 255, 255, 0.76));
}

.about-card-relax .about-card-icon {
  background:
    radial-gradient(circle at 30% 20%, #fff, rgba(255, 255, 255, 0.25) 24%, transparent 25%),
    linear-gradient(145deg, var(--yellow-50), var(--yellow-400));
}

/* Audience section */
.audience-section {
  position: relative;
  padding: 42px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(250, 204, 21, 0.17), transparent 26%),
    radial-gradient(circle at 5% 82%, rgba(124, 58, 237, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(247, 242, 255, 0.72), rgba(255, 255, 255, 0.93));
}

.audience-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.audience-heading h2 {
  margin: 0;
  color: var(--violet-950);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(410px, 0.96fr) minmax(460px, 1.04fr);
  gap: 18px;
  align-items: stretch;
}

.audience-card {
  padding: 20px 23px 21px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 46px rgba(40, 16, 90, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.audience-card-teens {
  background:
    radial-gradient(circle at 92% 8%, rgba(124, 58, 237, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.78);
}

.audience-card-parents {
  background:
    radial-gradient(circle at 92% 10%, rgba(253, 224, 71, 0.23), transparent 28%),
    rgba(255, 255, 255, 0.8);
}

.audience-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}

.audience-card-head h3 {
  margin: 0;
  color: var(--violet-950);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.audience-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  font-size: 27px;
  background:
    radial-gradient(circle at 28% 18%, #fff, transparent 25%),
    linear-gradient(145deg, #fff, var(--violet-100));
  box-shadow:
    9px 13px 28px rgba(40, 16, 90, 0.12),
    inset 2px 3px 5px rgba(255, 255, 255, 0.94);
}

.audience-icon-yellow {
  background:
    radial-gradient(circle at 28% 18%, #fff, transparent 25%),
    linear-gradient(145deg, #fff, var(--yellow-100));
}

.audience-age {
  width: fit-content;
  margin: 4px 0 0;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--violet-600);
  font-size: 13px;
  font-weight: 850;
  background: var(--violet-100);
}

.audience-label {
  margin: 0 0 8px;
  color: var(--violet-950);
  font-size: 16px;
  font-weight: 850;
}

.audience-list {
  display: grid;
  gap: 5px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.38;
}

.audience-list li::before {
  position: absolute;
  top: 0.44em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  content: "";
  background: var(--yellow-500);
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.16);
}

.audience-highlight {
  margin: 0 0 9px;
  padding: 10px 15px;
  border-radius: 17px;
  color: var(--violet-700);
  font-size: 16px;
  font-weight: 900;
  background: var(--violet-100);
}

.audience-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.audience-card-parents p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 680;
  line-height: 1.44;
}

.audience-card-parents p:last-child {
  margin-bottom: 0;
}

.audience-parent-accent {
  padding: 12px 16px;
  border-radius: 18px;
  color: var(--violet-950) !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(135deg, var(--yellow-100), rgba(255, 255, 255, 0.74));
}

/* Program section */
.program-section {
  position: relative;
  padding: 25px 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 7%, rgba(250, 204, 21, 0.12), transparent 23%),
    radial-gradient(circle at 86% 78%, rgba(124, 58, 237, 0.13), transparent 26%),
    rgba(255, 255, 255, 0.58);
}

.program-heading {
  max-width: 620px;
  margin-bottom: 14px;
}

.program-heading h2 {
  margin: 0;
  color: var(--violet-950);
  font-size: clamp(33px, 3.2vw, 48px);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.06fr) minmax(400px, 0.94fr);
  align-items: center;
  gap: 34px;
}

.program-timeline {
  position: relative;
  display: grid;
  gap: 5px;
}

.program-timeline::before {
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 28px;
  z-index: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--yellow-400), rgba(109, 40, 217, 0.24), var(--violet-400));
}

.program-day {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 12px;
  padding: 7px 13px 7px 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 10px 29px rgba(40, 16, 90, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.program-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 29px;
  margin: 2px 0 0 7px;
  border-radius: 999px;
  color: var(--violet-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: var(--violet-100);
}

.program-day h3 {
  margin: 0 0 3px;
  color: var(--violet-950);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.program-day p {
  margin: 0;
  color: var(--muted);
  font-size: 11.8px;
  font-weight: 680;
  line-height: 1.31;
}

.program-visit {
  display: inline-flex;
  margin-top: 4px !important;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--violet-700) !important;
  font-weight: 800 !important;
  background: rgba(241, 234, 255, 0.78);
}

.program-day-final {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(135deg, rgba(253, 224, 71, 0.31), rgba(255, 255, 255, 0.78));
}

.program-day-final .program-number {
  color: var(--violet-950);
  background: var(--yellow-400);
}

.program-finale {
  margin-top: 5px !important;
  color: var(--violet-700) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.program-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 430px;
  isolation: isolate;
}

.program-art-blob {
  position: absolute;
  inset: 58px 18px 32px;
  z-index: -1;
  border-radius: 46% 54% 43% 57%;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.86), transparent 18%),
    linear-gradient(145deg, rgba(124, 58, 237, 0.16), rgba(250, 204, 21, 0.13));
}

.program-art img {
  width: min(100%, 390px);
  max-height: 448px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 21px 30px rgba(40, 16, 90, 0.16));
}

.program-art-label {
  position: absolute;
  right: 8px;
  bottom: 38px;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.82), transparent 25%),
    linear-gradient(135deg, var(--yellow-100), rgba(255, 255, 255, 0.82));
  box-shadow:
    0 15px 34px rgba(40, 16, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.program-art-label strong {
  color: var(--violet-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-art-label span {
  color: var(--violet-950);
  font-size: 14px;
  font-weight: 850;
}

/* Outcome section */
.outcome-section {
  position: relative;
  padding: 40px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 78%, rgba(250, 204, 21, 0.15), transparent 25%),
    radial-gradient(circle at 89% 14%, rgba(124, 58, 237, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.62);
}

.outcome-heading {
  margin-bottom: 25px;
}

.outcome-heading h2 {
  margin: 0;
  color: var(--violet-950);
  font-size: clamp(37px, 4vw, 56px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
  align-items: stretch;
  gap: 35px;
}

.outcome-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 397px;
  isolation: isolate;
}

.outcome-art-glow {
  position: absolute;
  inset: 28px 28px 12px 4px;
  z-index: -1;
  border-radius: 50% 44% 51% 41%;
  background:
    radial-gradient(circle at 33% 25%, rgba(255, 255, 255, 0.88), transparent 23%),
    linear-gradient(140deg, rgba(253, 224, 71, 0.25), rgba(124, 58, 237, 0.13));
}

.outcome-art img {
  width: min(100%, 337px);
  max-height: 405px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 19px 29px rgba(40, 16, 90, 0.14));
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.outcome-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.93);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 13px 32px rgba(40, 16, 90, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 23px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), var(--violet-100));
  box-shadow: 0 10px 22px rgba(61, 26, 123, 0.09);
}

.outcome-card p {
  margin: 0;
  color: var(--violet-950);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.34;
}

.outcome-card-wide {
  grid-column: 1 / -1;
}

.outcome-card-accent {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.82), transparent 27%),
    linear-gradient(135deg, rgba(253, 224, 71, 0.3), rgba(255, 255, 255, 0.78));
}

/* Safety section */
.safety-section {
  position: relative;
  padding: 42px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(250, 204, 21, 0.15), transparent 25%),
    radial-gradient(circle at 87% 18%, rgba(124, 58, 237, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(248, 244, 255, 0.72), rgba(255, 255, 255, 0.85));
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(570px, 1.1fr);
  align-items: center;
  gap: 43px;
}

.safety-intro h2 {
  max-width: 470px;
  margin: 0 0 25px;
  color: var(--violet-950);
  font-size: clamp(36px, 3.6vw, 51px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.safety-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  width: min(100%, 420px);
  min-height: 265px;
  isolation: isolate;
}

.safety-art-glow {
  position: absolute;
  inset: 38px 25px 4px;
  z-index: -1;
  border-radius: 48% 52% 49% 51%;
  background:
    radial-gradient(circle at 33% 20%, rgba(255, 255, 255, 0.9), transparent 23%),
    linear-gradient(145deg, rgba(253, 224, 71, 0.23), rgba(124, 58, 237, 0.14));
}

.safety-visual img {
  width: min(100%, 292px);
  max-height: 283px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(40, 16, 90, 0.14));
}

.safety-badge {
  position: absolute;
  right: 10px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.86), transparent 25%),
    linear-gradient(135deg, var(--yellow-100), rgba(255, 255, 255, 0.83));
  box-shadow:
    0 15px 30px rgba(40, 16, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.safety-badge strong {
  color: var(--violet-950);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.safety-badge span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.safety-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.safety-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 88px;
  padding: 12px 14px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.81);
  box-shadow:
    0 12px 28px rgba(40, 16, 90, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--violet-700);
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), var(--violet-100));
}

.safety-card p {
  margin: 0;
  color: var(--violet-950);
  font-size: 13.5px;
  font-weight: 740;
  line-height: 1.38;
}

.safety-card-important {
  grid-column: 1 / -1;
  padding-right: 20px;
  background:
    radial-gradient(circle at 94% 17%, rgba(255, 255, 255, 0.84), transparent 24%),
    linear-gradient(135deg, rgba(241, 234, 255, 0.9), rgba(253, 224, 71, 0.2));
}

.safety-card-important p {
  font-size: 14px;
  font-weight: 800;
}

/* Price section */
.price-section {
  position: relative;
  padding: 39px 0 47px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 45%, rgba(250, 204, 21, 0.17), transparent 29%),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.12), transparent 25%),
    rgba(255, 255, 255, 0.64);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(575px, 1.12fr);
  align-items: center;
  gap: 40px;
}

.price-summary h2 {
  margin: 0 0 21px;
  color: var(--violet-950);
  font-size: clamp(37px, 3.6vw, 51px);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -0.06em;
}

.price-card {
  max-width: 410px;
  padding: 21px 23px 23px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(137deg, rgba(253, 224, 71, 0.35), rgba(255, 255, 255, 0.84));
  box-shadow:
    0 20px 46px rgba(40, 16, 90, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 9px;
  color: var(--violet-950);
}

.price-value strong {
  font-size: clamp(55px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.price-value span {
  color: var(--violet-700);
  font-size: 24px;
  font-weight: 850;
}

.price-card p {
  max-width: 285px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.42;
}

.price-package {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  width: fit-content;
  min-width: 269px;
  padding: 9px 10px 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.69);
  box-shadow:
    0 12px 26px rgba(40, 16, 90, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.price-package-title {
  color: var(--violet-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-package-icons {
  display: flex;
  gap: 5px;
}

.price-package-icons i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 17px;
  font-style: normal;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), var(--violet-100));
}

.price-includes {
  padding: 20px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 15px 37px rgba(40, 16, 90, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.price-includes h3 {
  margin: 0 0 15px;
  color: var(--violet-950);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  min-height: 43px;
  padding: 11px 10px 10px 38px;
  border-radius: 15px;
  color: var(--violet-950);
  font-size: 12.5px;
  font-weight: 730;
  line-height: 1.32;
  background: rgba(247, 242, 255, 0.62);
}

.price-list li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--violet-700);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
  background: var(--yellow-100);
}

.price-list-feature {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 94% 15%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(135deg, rgba(253, 224, 71, 0.25), rgba(247, 242, 255, 0.68)) !important;
}

/* Contacts section */
.contacts-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 102px);
  padding: 42px 0 49px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 17%, rgba(250, 204, 21, 0.19), transparent 27%),
    radial-gradient(circle at 88% 72%, rgba(124, 58, 237, 0.16), transparent 27%),
    linear-gradient(180deg, rgba(247, 242, 255, 0.76), rgba(255, 255, 255, 0.94));
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(540px, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 34px;
}

.contacts-callout h2 {
  margin: 0 0 20px;
  color: var(--violet-950);
  font-size: clamp(40px, 4.2vw, 59px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.contacts-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 570px;
  margin-bottom: 21px;
}

.contacts-meta p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 17px;
  color: var(--violet-950);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 25px rgba(40, 16, 90, 0.055);
}

.contacts-meta p:last-child {
  flex-basis: 100%;
}

.contacts-meta span {
  font-size: 19px;
}

.contacts-meta strong {
  font-size: 14px;
  font-weight: 800;
}

.contacts-form-btn {
  min-height: 55px;
  padding-right: 22px;
}

.contacts-info {
  padding: 23px 22px 21px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.81);
  box-shadow:
    0 18px 43px rgba(40, 16, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.contacts-label {
  margin: 0 0 16px;
  color: var(--violet-700);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-people {
  display: grid;
  gap: 10px;
}

.contact-person {
  display: grid;
  grid-template-columns: 51px 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 19px;
  background: rgba(247, 242, 255, 0.66);
}

.contact-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 17px;
  color: var(--violet-700);
  font-size: 14px;
  font-weight: 900;
  background: var(--violet-100);
}

.contact-avatar-yellow {
  color: var(--violet-950);
  background: var(--yellow-100);
}

.contact-person h3 {
  margin: 0 0 4px;
  color: var(--violet-950);
  font-size: 16px;
  font-weight: 850;
}

.contact-person a {
  color: var(--violet-700);
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}

.contact-person a:hover {
  color: var(--violet-500);
}

.contacts-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  padding: 22px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 14%, rgba(253, 224, 71, 0.16), transparent 27%),
    linear-gradient(135deg, var(--violet-950), var(--violet-800));
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.14fr) auto minmax(190px, 0.72fr);
  align-items: center;
  gap: 38px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-logo .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 17px;
}

.footer-logo strong,
.footer-logo small {
  display: block;
  color: #fff;
  font-weight: 850;
  line-height: 1.07;
}

.footer-logo strong {
  font-size: 17px;
}

.footer-logo small {
  font-size: 14px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 650;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  font-weight: 760;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--yellow-400);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.footer-contact a {
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.footer-location {
  max-width: 235px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 12.5px !important;
  text-align: right;
}

.footer-social {
  display: flex;
  gap: 13px;
  margin-top: 3px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
}

.footer-form-link {
  margin-top: 7px;
  color: var(--yellow-400) !important;
  font-weight: 850 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 650;
}

/* Gentle motion */
.hero-art-blob,
.program-art-blob,
.outcome-art-glow,
.safety-art-glow {
  animation: softGlow 9s ease-in-out infinite alternate;
}

.program-art img,
.outcome-art img,
.safety-visual img {
  animation: softLift 7s ease-in-out infinite;
}

.contacts-form-btn {
  animation: ctaGlow 3.8s ease-in-out infinite;
}

@keyframes softGlow {
  from {
    transform: scale(0.985) rotate(-0.5deg);
  }
  to {
    transform: scale(1.025) rotate(0.75deg);
  }
}

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

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow:
      0 18px 40px rgba(234, 179, 8, 0.34),
      var(--soft-3d-inset);
  }
  50% {
    box-shadow:
      0 22px 46px rgba(234, 179, 8, 0.46),
      var(--soft-3d-inset);
  }
}

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

/* Content placeholders */
.placeholder-section {
  background: rgba(255, 255, 255, 0.52);
}

.placeholder-section.alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(250, 204, 21, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(247, 242, 255, 0.7), rgba(255, 255, 255, 0.9));
}

.placeholder-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--violet-950);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.placeholder-section p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--violet-500);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Floating actions and animation states */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 30px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(145deg, var(--violet-500), var(--violet-700));
  box-shadow:
    0 18px 42px rgba(109, 40, 217, 0.34),
    var(--soft-3d-inset);
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

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

.mobile-cta {
  display: none;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

/* Responsive layout */
@media (max-width: 1280px) {
  .container {
    width: min(100% - 36px, 1160px);
  }

  .main-nav {
    gap: 10px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(560px, 1.08fr) minmax(360px, 0.92fr);
    gap: 12px;
  }

  .hero-title {
    font-size: clamp(39px, 3.45vw, 57px);
    line-height: 1.05;
    letter-spacing: -0.014em;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-image-placeholder {
    right: -44px;
    width: min(126%, 700px);
  }

  .feature-chip {
    border-right: 0;
  }
}

@media (max-width: 1040px) {
  .site-header {
    top: 16px;
  }

  .section-hero {
    display: block;
  }

  .header-shell {
    min-height: 78px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .main-nav.open {
    position: fixed;
    top: 106px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
  }

  .main-nav.open a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .main-nav.open a:hover {
    background: var(--violet-100);
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-title {
    max-width: 720px;
    font-size: clamp(43px, 6.8vw, 65px);
    line-height: 1.04;
    letter-spacing: -0.016em;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-image-placeholder {
    right: 50%;
    width: min(100%, 720px);
    transform: translateX(50%);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    max-width: 760px;
  }

  .about-lead {
    max-width: 720px;
  }

  .about-art-slot {
    height: 238px;
  }

  .about-cards {
    max-width: 760px;
  }

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

  .audience-card {
    max-width: 760px;
  }

  .program-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program-timeline {
    max-width: 760px;
  }

  .program-art {
    justify-content: flex-start;
    min-height: 420px;
    max-width: 560px;
  }

  .outcome-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .outcome-art {
    justify-content: flex-start;
    min-height: 280px;
  }

  .outcome-art-glow {
    inset: 12px auto 0 0;
    width: min(100%, 430px);
  }

  .safety-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .safety-intro h2 {
    max-width: 680px;
  }

  .safety-cards {
    max-width: 760px;
  }

  .price-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-includes {
    max-width: 760px;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contacts-section {
    display: block;
    min-height: 0;
  }

  .contacts-info {
    max-width: 600px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-location {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-hero {
    padding-top: 110px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text-mobile {
    font-size: 15px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .header-shell {
    padding: 10px 12px 10px 14px;
    border-radius: 22px;
  }

  .hero-pill {
    max-width: 100%;
    font-size: clamp(24px, 6.2vw, 34px);
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(35px, 9.2vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.014em;
  }

  .title-line {
    white-space: normal;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    font-size: 16px;
  }

  .meta-divider {
    display: none;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-quote {
    padding: 20px 20px 20px 62px;
  }

  .quote-mark {
    left: 20px;
    font-size: 52px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-art {
    min-height: 310px;
    margin-top: 8px;
  }

  .hero-image-placeholder {
    right: 50%;
    width: min(104%, 460px);
  }

  .about-section {
    padding: 48px 0 54px;
  }

  .about-layout {
    gap: 24px;
  }

  .about-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .about-prompt {
    font-size: 16px;
  }

  .about-story {
    gap: 18px;
  }

  .about-art-slot {
    width: 100%;
    height: 204px;
  }

  .about-art-slot img {
    max-height: 226px;
  }

  .about-card {
    min-height: 0;
    padding: 9px 10px;
  }

  .about-card p {
    font-size: 13.5px;
  }

  .audience-section {
    padding: 50px 0 56px;
  }

  .audience-heading {
    margin-bottom: 24px;
  }

  .audience-heading h2 {
    font-size: clamp(31px, 9.5vw, 43px);
  }

  .audience-card {
    padding: 21px 19px 22px;
    border-radius: 25px;
  }

  .audience-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 24px;
  }

  .audience-card-head h3 {
    font-size: 23px;
  }

  .audience-list li {
    font-size: 14px;
  }

  .audience-card-parents p {
    font-size: 14.5px;
  }

  .program-section {
    padding: 44px 0 50px;
  }

  .program-heading {
    margin-bottom: 20px;
  }

  .program-heading h2 {
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .program-day {
    grid-template-columns: 48px 1fr;
    gap: 9px;
    padding: 10px 11px 10px 0;
  }

  .program-timeline::before {
    left: 23px;
  }

  .program-number {
    width: 38px;
    margin-left: 4px;
  }

  .program-art {
    min-height: 330px;
  }

  .program-art img {
    width: min(100%, 330px);
    max-height: 350px;
  }

  .program-art-label {
    right: 0;
    bottom: 20px;
  }

  .program-finale {
    margin-top: 14px !important;
  }

  .outcome-section {
    padding: 48px 0 52px;
  }

  .outcome-heading {
    margin-bottom: 22px;
  }

  .outcome-heading h2 {
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .outcome-art {
    min-height: 220px;
  }

  .outcome-art img {
    width: min(100%, 285px);
    max-height: 315px;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 74px;
    padding: 10px 13px 10px 10px;
  }

  .outcome-card-wide,
  .outcome-card-accent {
    grid-column: auto;
  }

  .outcome-card p {
    font-size: 13.5px;
  }

  .safety-section {
    padding: 47px 0 53px;
  }

  .safety-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .safety-visual {
    min-height: 240px;
  }

  .safety-visual img {
    width: min(100%, 260px);
    max-height: 248px;
  }

  .safety-badge {
    right: 0;
    bottom: 8px;
  }

  .safety-badge strong {
    font-size: 20px;
  }

  .safety-cards {
    grid-template-columns: 1fr;
  }

  .safety-card,
  .safety-card-important {
    grid-column: auto;
    min-height: 76px;
    padding: 10px 12px 10px 10px;
  }

  .safety-card p,
  .safety-card-important p {
    font-size: 13.5px;
  }

  .price-section {
    padding: 47px 0 53px;
  }

  .price-summary h2 {
    margin-bottom: 18px;
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .price-card {
    padding: 19px 18px 20px;
    border-radius: 25px;
  }

  .price-value strong {
    font-size: clamp(50px, 16vw, 62px);
  }

  .price-includes {
    padding: 18px 15px;
    border-radius: 24px;
  }

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

  .price-list-feature {
    grid-column: auto;
  }

  .contacts-section {
    padding: 47px 0 112px;
  }

  .contacts-callout h2 {
    margin-bottom: 18px;
    font-size: clamp(33px, 10vw, 47px);
  }

  .contacts-meta {
    display: grid;
  }

  .contacts-meta p:last-child {
    flex-basis: auto;
  }

  .contacts-form-btn {
    width: 100%;
    justify-content: center;
  }

  .contacts-info {
    padding: 19px 15px 17px;
    border-radius: 24px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .hero-feature-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .feature-chip {
    min-height: auto;
    padding: 12px;
  }

  .placeholder-section h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .placeholder-section p:not(.section-kicker) {
    font-size: 17px;
  }

  .back-to-top {
    right: 18px;
    bottom: 92px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 1002;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }

  .mobile-cta .btn {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 14px;
  }
}

@media (max-width: 440px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 22px;
  }

  .brand-text-mobile {
    font-size: clamp(12px, 3.65vw, 15px);
    letter-spacing: -0.035em;
  }

  .hero-title {
    font-size: clamp(33px, 9.6vw, 45px);
    line-height: 1.06;
    letter-spacing: -0.012em;
  }

  .accent-word {
    letter-spacing: -0.008em;
  }
}
