:root {
  --ink: #25243a;
  --muted: #6a667b;
  --pink: #ff6fae;
  --pink-dark: #db4d8b;
  --violet: #806cff;
  --mint: #70d6c8;
  --yellow: #ffd166;
  --cream: #fff9f6;
  --shadow: 0 26px 75px rgba(64, 48, 116, 0.12);
  --shadow-soft: 0 16px 46px rgba(64, 48, 116, 0.08);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 209, 102, 0.25), transparent 25rem),
    radial-gradient(circle at 90% 8%, rgba(128, 108, 255, 0.16), transparent 29rem),
    linear-gradient(180deg, #fffaf7, #f8f6ff 48%, #fffaf7);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(255, 111, 174, 0.26); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding-block: 110px; }

.glass {
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(1.24);
  -webkit-backdrop-filter: blur(24px) saturate(1.24);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.ambient__blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(26px);
  animation: ambient 18s ease-in-out infinite;
}

.ambient__blob--pink { width: 390px; height: 390px; top: 34%; left: -200px; background: rgba(255, 111, 174, 0.13); }
.ambient__blob--mint { width: 470px; height: 470px; top: 48%; right: -250px; background: rgba(112, 214, 200, 0.15); animation-delay: -7s; }
.ambient__blob--violet { width: 350px; height: 350px; bottom: -210px; left: 34%; background: rgba(128, 108, 255, 0.11); animation-delay: -12s; }

.header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 50;
  padding-inline: 20px;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1180px, 100%);
  min-height: 72px;
  margin-inline: auto;
  padding: 10px 12px 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.87);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.69);
  box-shadow: 0 12px 44px rgba(52, 45, 90, 0.09);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 18px; font-weight: 840; letter-spacing: -0.04em; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }

.brand__face {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  background: linear-gradient(145deg, #ff9cc6, #ff6fae);
  box-shadow: 0 10px 24px rgba(255, 86, 160, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: rotate(-3deg);
}

.brand__eye { position: absolute; top: 13px; width: 4px; height: 5px; border-radius: 50%; background: white; }
.brand__eye--left { left: 13px; }
.brand__eye--right { right: 13px; }
.brand__smile { position: absolute; top: 20px; left: 12px; width: 18px; height: 10px; border-bottom: 2.5px solid white; border-radius: 0 0 16px 16px; }

.nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-inline: auto; }
.nav a { position: relative; color: #504b64; font-size: 13px; font-weight: 680; transition: color 180ms ease; }
.nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; border-radius: 2px; background: var(--pink); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-3px); }
.button:focus-visible, .nav a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(128, 108, 255, 0.32); outline-offset: 3px; }
.button--dark { min-height: 48px; padding-inline: 19px; border-radius: 15px; background: var(--ink); color: white; box-shadow: 0 10px 24px rgba(37, 36, 58, 0.18); }
.button--primary { background: linear-gradient(135deg, var(--pink), #f25a9b); color: white; box-shadow: 0 16px 34px rgba(234, 77, 145, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.button--primary:hover { box-shadow: 0 20px 44px rgba(234, 77, 145, 0.36); }
.button--glass { border: 1px solid rgba(88, 77, 122, 0.13); background: rgba(255, 255, 255, 0.61); color: var(--ink); box-shadow: 0 12px 32px rgba(68, 52, 126, 0.07); backdrop-filter: blur(18px); }
.button--white { background: white; color: #5d50ce; box-shadow: 0 18px 38px rgba(36, 27, 110, 0.22); }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 64px;
  align-items: center;
  min-height: 780px;
  padding-top: 156px;
  padding-bottom: 86px;
}

.hero__copy { position: relative; z-index: 2; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0; color: #716c87; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 99px; background: rgba(255, 255, 255, 0.55); box-shadow: 0 10px 28px rgba(67, 51, 113, 0.08); backdrop-filter: blur(18px); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(112, 214, 200, 0.14); }
.hero h1 { max-width: 700px; margin: 25px 0 22px; font-size: clamp(54px, 6.1vw, 83px); font-weight: 850; line-height: 0.96; letter-spacing: -0.067em; }
.hero h1 em { display: block; background: linear-gradient(96deg, var(--pink) 8%, var(--violet) 92%); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }
.hero__lead { max-width: 590px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.68; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__stats { display: flex; align-items: center; margin-top: 45px; }
.hero__stats div { display: flex; flex-direction: column; min-width: 112px; padding-right: 26px; }
.hero__stats div + div { padding-left: 26px; border-left: 1px solid rgba(58, 49, 86, 0.12); }
.hero__stats strong { font-size: 25px; font-weight: 840; letter-spacing: -0.05em; }
.hero__stats span { margin-top: 3px; color: #807b92; font-size: 11px; font-weight: 660; }

.hero-art { position: relative; min-height: 560px; isolation: isolate; }
.hero-art::before { position: absolute; top: 50%; left: 50%; z-index: -3; width: 430px; height: 430px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 111, 174, 0.24), rgba(128, 108, 255, 0.2) 58%, rgba(112, 214, 200, 0.18)); filter: blur(12px); content: ""; transform: translate(-50%, -50%); }
.hero-art__orbit { position: absolute; top: 50%; left: 50%; z-index: -1; border: 1px solid rgba(105, 89, 161, 0.12); border-radius: 50%; }
.hero-art__orbit--one { width: 520px; height: 360px; transform: translate(-50%, -50%) rotate(-17deg); }
.hero-art__orbit--two { width: 420px; height: 520px; transform: translate(-50%, -50%) rotate(36deg); }

.hero-card { position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; width: 340px; height: 430px; padding: 28px; border-radius: 48px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.35)); box-shadow: 0 42px 100px rgba(71, 56, 130, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.82); transform: translate(-50%, -50%) rotate(3deg); }
.hero-card small { align-self: flex-start; padding: 8px 11px; border-radius: 99px; background: rgba(255, 255, 255, 0.61); color: #625d77; font-size: 9px; font-weight: 820; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-card > p { max-width: 220px; margin: 24px 0 0; font-size: 21px; font-weight: 840; line-height: 1.14; letter-spacing: -0.04em; text-align: center; }

.smiley { position: relative; width: 216px; height: 216px; margin-top: 36px; border: 1px solid rgba(255, 255, 255, 0.76); border-radius: 50%; background: radial-gradient(circle at 33% 23%, rgba(255, 255, 255, 0.9), transparent 20%), linear-gradient(145deg, #ffcf6e, #ff9f69 68%, #ff86ab); box-shadow: 0 28px 52px rgba(238, 121, 95, 0.3), inset -14px -15px 30px rgba(210, 83, 106, 0.16), inset 10px 10px 26px rgba(255, 255, 255, 0.33); transform: rotate(-5deg); }
.smiley__eye { position: absolute; top: 72px; width: 17px; height: 24px; border-radius: 50%; background: var(--ink); box-shadow: inset 4px 3px 0 rgba(255, 255, 255, 0.25); }
.smiley__eye--left { left: 61px; }
.smiley__eye--right { right: 61px; }
.smiley__mouth { position: absolute; top: 103px; left: 55px; width: 108px; height: 64px; border-bottom: 11px solid var(--ink); border-radius: 0 0 90px 90px; }
.smiley__cheek { position: absolute; top: 114px; width: 29px; height: 14px; border-radius: 50%; background: rgba(230, 81, 130, 0.38); filter: blur(2px); }
.smiley__cheek--left { left: 27px; }
.smiley__cheek--right { right: 27px; }

.toy { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.86); box-shadow: 0 22px 48px rgba(54, 44, 95, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.68); animation: float 5.6s ease-in-out infinite; backdrop-filter: blur(12px); }
.toy--letter { top: 58px; left: 14px; width: 98px; height: 98px; border-radius: 30px; background: linear-gradient(145deg, rgba(128, 108, 255, 0.94), rgba(104, 85, 229, 0.8)); color: white; font-size: 42px; font-weight: 840; transform: rotate(-12deg); }
.toy--star { top: 28px; right: 34px; width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(145deg, #ffe78d, #ffc855); color: #b97b00; font-size: 28px; animation-delay: -1.8s; }
.toy--heart { right: 0; bottom: 76px; width: 84px; height: 84px; border-radius: 28px; background: linear-gradient(145deg, rgba(112, 214, 200, 0.96), rgba(73, 190, 175, 0.8)); color: white; font-size: 28px; transform: rotate(11deg); animation-delay: -3.2s; }
.mini-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 14px; background: rgba(255, 255, 255, 0.68); box-shadow: 0 14px 34px rgba(65, 51, 105, 0.13); color: #57516c; font-size: 12px; font-weight: 750; backdrop-filter: blur(18px); }
.mini-note i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--mint); color: white; font-size: 10px; font-style: normal; }
.mini-note--calm { bottom: 54px; left: 38px; transform: rotate(-4deg); }
.mini-note--fun { top: 146px; right: -17px; transform: rotate(5deg); }

.ticker { position: relative; z-index: 3; overflow: hidden; border-block: 1px solid rgba(116, 100, 157, 0.08); background: rgba(255, 255, 255, 0.48); backdrop-filter: blur(20px); }
.ticker__track { display: flex; align-items: center; justify-content: center; gap: 24px; min-width: max-content; padding: 18px 24px; color: #68627b; font-size: 12px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.ticker__track i { color: var(--pink); font-style: normal; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading > div { max-width: 720px; }
.section-heading h2, .gkp h2, .approach h2, .teacher h2, .contacts h2 { margin: 14px 0 0; font-size: clamp(39px, 4.7vw, 62px); font-weight: 850; line-height: 1.02; letter-spacing: -0.056em; }
.section-heading > p { max-width: 330px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program { position: relative; display: flex; flex-direction: column; min-height: 450px; padding: 23px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.82); border-radius: 32px; box-shadow: var(--shadow-soft); transition: transform 220ms ease, box-shadow 220ms ease; }
.program:hover { box-shadow: var(--shadow); transform: translateY(-7px); }
.program--pink { background: linear-gradient(155deg, rgba(255, 244, 249, 0.94), rgba(255, 219, 234, 0.75)); }
.program--violet { background: linear-gradient(155deg, rgba(246, 243, 255, 0.95), rgba(224, 217, 255, 0.77)); }
.program--mint { background: linear-gradient(155deg, rgba(243, 255, 252, 0.95), rgba(207, 244, 237, 0.77)); }
.program::after { position: absolute; right: -70px; bottom: -80px; width: 190px; height: 190px; border: 1px solid rgba(255, 255, 255, 0.76); border-radius: 50%; background: rgba(255, 255, 255, 0.28); box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.1); content: ""; }
.program__top { display: flex; align-items: center; justify-content: space-between; color: #676178; font-size: 10px; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; }
.program__top > span { color: rgba(77, 68, 103, 0.48); }
.program__mark { display: grid; place-items: center; width: 108px; height: 108px; margin: 36px 0 26px; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 32px; background: rgba(255, 255, 255, 0.48); box-shadow: 0 16px 34px rgba(65, 50, 108, 0.1); color: #524a67; font-size: 34px; font-weight: 850; letter-spacing: -0.06em; transform: rotate(-4deg); backdrop-filter: blur(12px); }
.program--violet .program__mark { color: var(--violet); transform: rotate(4deg); }
.program--mint .program__mark { color: #2c9e91; }
.program h3 { margin: 0; font-size: 25px; font-weight: 830; letter-spacing: -0.045em; }
.program > p { margin: 12px 0 24px; color: #666176; font-size: 14px; line-height: 1.65; }
.program > a { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; width: fit-content; min-width: 160px; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(72, 61, 101, 0.12); font-size: 13px; font-weight: 800; }
.program > a span { transition: transform 180ms ease; }
.program > a:hover span { transform: translate(3px, -3px); }

.format { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; padding: 18px; border-radius: 26px; }
.format > div { display: flex; align-items: center; gap: 14px; padding: 5px 24px; }
.format > div + div { border-left: 1px solid rgba(79, 67, 109, 0.1); }
.format b { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 15px; background: white; box-shadow: 0 8px 22px rgba(64, 49, 105, 0.09); color: var(--pink-dark); font-size: 15px; }
.format p { display: flex; flex-direction: column; margin: 0; }
.format strong { font-size: 14px; }
.format p span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.gkp { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; padding: 72px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 44px; background: radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.22), transparent 32%), linear-gradient(135deg, #6657e5, #836cf8 45%, #54bdb3 110%); box-shadow: 0 38px 90px rgba(91, 73, 201, 0.25); color: white; }
.gkp::before, .gkp::after { position: absolute; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; content: ""; }
.gkp::before { width: 360px; height: 360px; left: -200px; bottom: -230px; }
.gkp::after { width: 280px; height: 280px; right: -150px; top: -170px; }
.kicker--light { color: rgba(255, 255, 255, 0.65); }
.gkp__copy, .gkp__benefits { position: relative; z-index: 2; }
.gkp h2 { color: white; }
.gkp__copy > p:not(.kicker) { max-width: 480px; margin: 23px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.7; }
.gkp__numbers { display: flex; gap: 12px; margin: 32px 0; }
.gkp__numbers span { display: flex; align-items: baseline; gap: 6px; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; background: rgba(255, 255, 255, 0.11); color: rgba(255, 255, 255, 0.75); font-size: 11px; backdrop-filter: blur(12px); }
.gkp__numbers strong { color: white; font-size: 20px; }
.gkp__benefits { align-self: center; padding: 13px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 28px; background: rgba(255, 255, 255, 0.11); backdrop-filter: blur(18px); }
.gkp__benefits > div { display: grid; grid-template-columns: 34px 1fr 28px; gap: 14px; align-items: center; padding: 15px 13px; border-radius: 17px; }
.gkp__benefits > div + div { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.gkp__benefits span { color: rgba(255, 255, 255, 0.45); font-size: 11px; font-weight: 780; }
.gkp__benefits p { margin: 0; font-size: 14px; font-weight: 680; }
.gkp__benefits i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(255, 255, 255, 0.17); font-size: 11px; font-style: normal; }

.section-heading--center { align-items: center; }
.individual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.individual-card { min-height: 580px; padding: 38px; border-radius: 34px; }
.individual-card__top { display: flex; align-items: center; justify-content: space-between; }
.individual-card__top > span { color: var(--pink); font-size: 12px; font-weight: 840; letter-spacing: 0.12em; }
.individual-card__top small { padding: 8px 12px; border-radius: 99px; background: rgba(128, 108, 255, 0.08); color: #675baf; font-size: 11px; font-weight: 780; }
.individual-card h3 { max-width: 470px; margin: 48px 0 16px; font-size: clamp(31px, 3vw, 42px); font-weight: 830; line-height: 1.07; letter-spacing: -0.046em; }
.individual-card > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 35px 0 0; padding: 0; list-style: none; }
.chips li { padding: 10px 13px; border: 1px solid rgba(82, 69, 119, 0.08); border-radius: 12px; background: rgba(255, 255, 255, 0.72); color: #605a70; font-size: 11px; font-weight: 720; }
.individual-card__meta { display: flex; gap: 34px; margin-top: 38px; padding-top: 25px; border-top: 1px solid rgba(75, 63, 106, 0.1); }
.individual-card__meta span { display: flex; flex-direction: column; color: var(--muted); font-size: 11px; }
.individual-card__meta strong { margin-bottom: 4px; color: var(--ink); font-size: 14px; }
.individual-card--special { position: relative; overflow: hidden; background: radial-gradient(circle at 86% 18%, rgba(112, 214, 200, 0.26), transparent 23%), rgba(255, 255, 255, 0.5); }
.skill-orbit { position: relative; width: 340px; height: 205px; margin: 30px auto 0; border: 1px solid rgba(128, 108, 255, 0.15); border-radius: 50%; }
.skill-orbit::before { position: absolute; inset: 26px 48px; border: 1px solid rgba(255, 111, 174, 0.15); border-radius: 50%; content: ""; }
.skill-orbit span { position: absolute; padding: 9px 12px; border: 1px solid rgba(255, 255, 255, 0.88); border-radius: 99px; background: rgba(255, 255, 255, 0.76); box-shadow: 0 10px 24px rgba(65, 51, 105, 0.09); color: #625b73; font-size: 11px; font-weight: 740; }
.skill-orbit span:nth-child(1) { top: -15px; left: 128px; }
.skill-orbit span:nth-child(2) { top: 83px; right: -24px; }
.skill-orbit span:nth-child(3) { bottom: -14px; left: 122px; }
.skill-orbit span:nth-child(4) { top: 83px; left: -20px; }
.skill-orbit i { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 68px; height: 68px; border-radius: 24px; background: linear-gradient(145deg, var(--violet), #a798ff); box-shadow: 0 17px 34px rgba(112, 91, 224, 0.25); color: white; font-size: 24px; font-style: normal; transform: translate(-50%, -50%) rotate(5deg); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-size: 13px; font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.approach { padding-block: 110px; background: #242238; color: white; }
.approach__inner { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 90px; }
.approach h2 { color: white; }
.approach__intro > p:not(.kicker) { margin: 22px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 15px; line-height: 1.7; }
.approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.approach__grid article { min-height: 220px; padding: 25px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 25px; background: rgba(255, 255, 255, 0.055); transition: background 180ms ease, transform 180ms ease; }
.approach__grid article:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-4px); }
.approach__grid article > span { color: rgba(255, 255, 255, 0.32); font-size: 11px; font-weight: 800; }
.approach__grid h3 { margin: 55px 0 10px; font-size: 22px; letter-spacing: -0.03em; }
.approach__grid p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 13px; line-height: 1.6; }
.approach__grid article:first-child { background: linear-gradient(145deg, rgba(255, 111, 174, 0.22), rgba(255, 255, 255, 0.05)); }
.approach__grid article:last-child { background: linear-gradient(145deg, rgba(112, 214, 200, 0.18), rgba(255, 255, 255, 0.05)); }

.teacher { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; padding: 34px; border-radius: 42px; }
.teacher__photo { position: relative; min-height: 650px; }
.teacher__backdrop { position: absolute; inset: 35px 0 0 35px; border-radius: 35px; background: linear-gradient(145deg, #ffcae1, #d8d1ff 62%, #c7f3eb); transform: rotate(3deg); }
.teacher__photo img { position: absolute; inset: 0 28px 35px 0; width: calc(100% - 28px); height: calc(100% - 35px); border-radius: 35px; object-fit: cover; object-position: center top; box-shadow: 0 24px 56px rgba(62, 47, 106, 0.16); }
.teacher__badge { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255, 255, 255, 0.87); border-radius: 20px; background: rgba(255, 255, 255, 0.76); box-shadow: 0 18px 42px rgba(58, 46, 96, 0.16); backdrop-filter: blur(18px); }
.teacher__badge > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; background: linear-gradient(145deg, #ff8cbc, var(--pink)); color: white; }
.teacher__badge p { display: flex; flex-direction: column; margin: 0; }
.teacher__badge strong { font-size: 12px; }
.teacher__badge small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.teacher__copy { display: flex; flex-direction: column; justify-content: center; padding: 35px 30px 35px 0; }
.teacher__copy > p:not(.kicker) { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.teacher blockquote { margin: 30px 0 0; padding: 20px 22px; border-left: 3px solid var(--pink); border-radius: 0 16px 16px 0; background: rgba(255, 111, 174, 0.065); color: #5a526b; font-size: 15px; font-style: italic; font-weight: 680; line-height: 1.5; }

.section--faq { padding-top: 28px; }
.faq { border-top: 1px solid rgba(74, 62, 104, 0.12); }
.faq details { border-bottom: 1px solid rgba(74, 62, 104, 0.12); }
.faq summary { display: grid; grid-template-columns: 46px 1fr 28px; gap: 20px; align-items: center; min-height: 88px; padding: 10px 4px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary > span { color: rgba(79, 67, 109, 0.38); font-size: 11px; font-weight: 800; }
.faq summary strong { font-size: 18px; letter-spacing: -0.02em; }
.faq summary i { position: relative; width: 28px; height: 28px; border-radius: 50%; background: rgba(128, 108, 255, 0.08); }
.faq summary i::before, .faq summary i::after { position: absolute; top: 13px; left: 8px; width: 12px; height: 2px; border-radius: 2px; background: var(--violet); content: ""; transition: transform 180ms ease; }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details > p { max-width: 720px; margin: -2px 0 24px 66px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contacts { padding-block: 100px; background: radial-gradient(circle at 10% 10%, rgba(255, 111, 174, 0.22), transparent 30%), radial-gradient(circle at 90% 90%, rgba(112, 214, 200, 0.18), transparent 28%), #292641; color: white; }
.contacts__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 80px; align-items: center; }
.contacts h2 { color: white; }
.contacts__copy > p:not(.kicker) { max-width: 500px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.62); font-size: 15px; line-height: 1.7; }
.contact-cards { display: grid; gap: 10px; margin-top: 35px; }
.contact-cards a { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 19px; background: rgba(255, 255, 255, 0.05); transition: background 180ms ease, transform 180ms ease; }
.contact-cards a:hover { background: rgba(255, 255, 255, 0.09); transform: translateX(4px); }
.contact-cards a > span { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 14px; background: rgba(255, 255, 255, 0.1); }
.contact-cards p { display: flex; flex-direction: column; margin: 0; }
.contact-cards small { color: rgba(255, 255, 255, 0.46); font-size: 10px; }
.contact-cards strong { margin-top: 4px; font-size: 14px; }

.form { padding: 34px; border: 1px solid rgba(255, 255, 255, 0.78); border-radius: 34px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 38px 90px rgba(8, 5, 31, 0.28); color: var(--ink); }
.form header { display: flex; flex-direction: column; margin-bottom: 25px; }
.form header > span { color: var(--pink-dark); font-size: 10px; font-weight: 840; letter-spacing: 0.14em; text-transform: uppercase; }
.form header strong { margin-top: 8px; font-size: 25px; letter-spacing: -0.035em; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form label:not(.consent) { display: flex; flex-direction: column; margin-bottom: 12px; }
.form label > span { margin: 0 0 7px 3px; color: #5e586d; font-size: 11px; font-weight: 740; }
.form label > span small { color: #9994a5; font-weight: 560; }
.form input:not([type="checkbox"]), .form select, .form textarea { width: 100%; border: 1px solid rgba(78, 67, 106, 0.1); border-radius: 14px; background: #f8f7fb; color: var(--ink); font-size: 13px; transition: border 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.form input:not([type="checkbox"]), .form select { height: 52px; padding-inline: 15px; }
.form textarea { min-height: 88px; padding: 14px 15px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: #aaa6b3; }
.form input:not([type="checkbox"]):focus, .form select:focus, .form textarea:focus { border-color: rgba(128, 108, 255, 0.4); background: white; box-shadow: 0 0 0 4px rgba(128, 108, 255, 0.07); outline: none; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 3px 0 15px; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 0; flex: none; accent-color: var(--violet); }
.consent span { margin: 0 !important; color: #858091 !important; font-size: 10px !important; line-height: 1.45; }
.button--form { width: 100%; background: var(--ink); color: white; box-shadow: 0 14px 30px rgba(37, 36, 58, 0.22); }
.form__hint { margin: 11px 0 0; color: #9994a5; font-size: 9px; line-height: 1.5; text-align: center; }
.prepared { margin-top: 18px; padding: 18px; border: 1px solid rgba(112, 214, 200, 0.32); border-radius: 18px; background: rgba(112, 214, 200, 0.08); animation: reveal 300ms ease both; }
.prepared[hidden] { display: none; }
.prepared > strong { color: #287a70; font-size: 14px; }
.prepared > p { margin: 6px 0 13px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.prepared__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.prepared .button { min-height: 43px; padding-inline: 15px; border-radius: 12px; font-size: 11px; }

.footer { padding-block: 68px 28px; background: #1e1c2d; color: white; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.9fr; gap: 80px; }
.brand--footer .brand__text strong { color: white; }
.brand--footer .brand__text small { color: rgba(255, 255, 255, 0.42); }
.footer__grid > div > p { margin: 21px 0 0; color: rgba(255, 255, 255, 0.45); font-size: 13px; }
.footer nav { display: flex; flex-direction: column; gap: 10px; }
.footer nav strong { margin-bottom: 5px; color: rgba(255, 255, 255, 0.35); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.footer nav a { width: fit-content; color: rgba(255, 255, 255, 0.72); font-size: 12px; transition: color 180ms ease; }
.footer nav a:hover { color: white; }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.3); font-size: 9px; }
.mobile-cta { display: none; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes ambient { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(24px, -18px, 0) scale(1.08); } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .nav { gap: 17px; }
  .hero { grid-template-columns: 1fr 0.86fr; gap: 24px; }
  .hero h1 { font-size: clamp(54px, 6.7vw, 70px); }
  .hero-card { width: 300px; height: 405px; }
  .smiley { width: 194px; height: 194px; }
  .smiley__eye { top: 64px; }
  .smiley__eye--left { left: 54px; }
  .smiley__eye--right { right: 54px; }
  .smiley__mouth { top: 92px; left: 49px; width: 97px; height: 58px; }
  .mini-note--fun { right: 0; }
  .gkp { gap: 38px; padding: 55px; }
  .contacts__grid { gap: 45px; }
}

@media (max-width: 860px) {
  .header { top: 10px; padding-inline: 12px; }
  .header__inner { min-height: 66px; border-radius: 20px; }
  .header__button { display: none; }
  .menu-button { display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; border: 0; border-radius: 14px; background: var(--ink); cursor: pointer; }
  .menu-button span { width: 18px; height: 2px; border-radius: 2px; background: white; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: grid; gap: 4px; padding: 10px; border: 1px solid rgba(255, 255, 255, 0.88); border-radius: 20px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 22px 56px rgba(48, 38, 82, 0.17); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; backdrop-filter: blur(22px); }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 14px; border-radius: 12px; font-size: 14px; }
  .nav a:hover { background: rgba(128, 108, 255, 0.07); }
  .nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 140px; padding-bottom: 65px; }
  .hero__copy { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero h1 { max-width: 700px; margin-inline: auto; font-size: clamp(51px, 10vw, 76px); }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero-art { width: min(580px, 100%); margin: 18px auto 0; }
  .programs { grid-template-columns: 1fr 1fr; }
  .program:last-child { grid-column: 1 / -1; min-height: 390px; }
  .format { grid-template-columns: 1fr; }
  .format > div + div { border-top: 1px solid rgba(79, 67, 109, 0.1); border-left: 0; }
  .gkp, .individual, .approach__inner, .teacher, .contacts__grid { grid-template-columns: 1fr; }
  .gkp { gap: 45px; }
  .individual-card { min-height: auto; }
  .teacher__photo { min-height: 610px; }
  .teacher__copy { padding: 25px 16px 20px; }
  .contacts__grid { gap: 55px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding-block: 78px; }
  .brand__face { width: 38px; height: 38px; border-radius: 13px; }
  .brand__eye { top: 12px; }
  .brand__eye--left { left: 12px; }
  .brand__eye--right { right: 12px; }
  .brand__smile { top: 19px; left: 11px; width: 16px; }
  .brand__text strong { font-size: 16px; }
  .brand__text small { font-size: 8px; }
  .hero { padding-top: 123px; }
  .hero h1 { margin-top: 20px; font-size: clamp(43px, 13vw, 61px); }
  .hero__lead { font-size: 15px; line-height: 1.62; }
  .hero__actions { display: grid; width: 100%; }
  .hero__actions .button { width: 100%; }
  .hero__stats { margin-top: 36px; }
  .hero__stats div { width: 33.333%; min-width: 0; padding-right: 10px; }
  .hero__stats div + div { padding-left: 10px; }
  .hero__stats strong { font-size: 20px; }
  .hero__stats span { font-size: 9px; }
  .hero-art { min-height: 465px; margin-top: 5px; transform: scale(0.9); }
  .hero-card { width: 275px; height: 365px; border-radius: 38px; }
  .smiley { width: 170px; height: 170px; margin-top: 29px; }
  .smiley__eye { top: 55px; width: 14px; height: 20px; }
  .smiley__eye--left { left: 48px; }
  .smiley__eye--right { right: 48px; }
  .smiley__mouth { top: 77px; left: 43px; width: 85px; height: 54px; border-bottom-width: 9px; }
  .smiley__cheek { top: 96px; }
  .hero-card > p { margin-top: 18px; font-size: 18px; }
  .hero-art__orbit--one { width: 400px; height: 280px; }
  .hero-art__orbit--two { width: 320px; height: 420px; }
  .toy--letter { top: 63px; left: -10px; width: 74px; height: 74px; border-radius: 23px; font-size: 32px; }
  .toy--star { top: 44px; right: 1px; width: 58px; height: 58px; }
  .toy--heart { right: -14px; bottom: 68px; width: 66px; height: 66px; border-radius: 21px; }
  .mini-note--calm { left: -8px; bottom: 43px; }
  .mini-note--fun { top: 153px; right: -28px; }
  .ticker__track { justify-content: flex-start; animation: ticker 18s linear infinite; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2, .gkp h2, .approach h2, .teacher h2, .contacts h2 { font-size: 39px; }
  .section-heading > p { margin-top: 16px; }
  .programs { grid-template-columns: 1fr; }
  .program, .program:last-child { grid-column: auto; min-height: 410px; }
  .format > div { padding: 8px; }
  .gkp { gap: 36px; padding: 34px 22px; border-radius: 32px; }
  .gkp h2 { font-size: 42px; }
  .gkp__numbers { flex-direction: column; }
  .gkp__numbers span { justify-content: center; }
  .button--white { width: 100%; padding-inline: 12px; }
  .gkp__benefits > div { grid-template-columns: 27px 1fr 26px; gap: 8px; padding-inline: 7px; }
  .gkp__benefits p { font-size: 12px; }
  .individual-card { padding: 27px 22px; border-radius: 28px; }
  .individual-card h3 { margin-top: 37px; font-size: 33px; }
  .individual-card__meta { gap: 18px; }
  .skill-orbit { width: 270px; height: 175px; transform: scale(0.9); }
  .skill-orbit span:nth-child(1) { left: 98px; }
  .skill-orbit span:nth-child(3) { left: 92px; }
  .approach { padding-block: 78px; }
  .approach__inner { gap: 42px; }
  .approach__grid { grid-template-columns: 1fr; }
  .approach__grid article { min-height: 190px; }
  .teacher { gap: 30px; padding: 18px; border-radius: 32px; }
  .teacher__photo { min-height: 460px; }
  .teacher__backdrop { inset: 25px 0 0 25px; }
  .teacher__photo img { inset: 0 18px 25px 0; width: calc(100% - 18px); height: calc(100% - 25px); }
  .teacher__copy { padding-inline: 4px; }
  .teacher h2 { font-size: 48px; }
  .section--faq { padding-top: 18px; }
  .faq summary { grid-template-columns: 30px 1fr 26px; gap: 10px; min-height: 82px; }
  .faq summary strong { font-size: 15px; }
  .faq details > p { margin-left: 40px; font-size: 13px; }
  .contacts { padding-block: 76px 105px; }
  .contacts h2 { font-size: 43px; }
  .form { padding: 24px 18px; border-radius: 28px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .prepared__actions { display: grid; }
  .prepared .button { width: 100%; }
  .footer { padding-bottom: 90px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer__grid > div { grid-column: 1 / -1; }
  .footer__bottom { display: grid; gap: 8px; }
  .mobile-cta { position: fixed; right: 14px; bottom: 13px; left: 14px; z-index: 45; display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 20px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 17px; background: rgba(37, 36, 58, 0.93); box-shadow: 0 18px 45px rgba(24, 19, 54, 0.34); color: white; font-size: 13px; font-weight: 800; backdrop-filter: blur(18px); }
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-42%); } }

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