@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./manrope-cyrillic-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("./manrope-cyrillic-500.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("./manrope-cyrillic-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./manrope-cyrillic-700.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("./manrope-cyrillic-800.woff2") format("woff2");
}

:root {
  --navy: #0b2d5c;
  --navy-deep: #071d3d;
  --blue: #2678d9;
  --blue-dark: #1559b2;
  --sky: #eaf4ff;
  --sky-strong: #d8ebff;
  --lime: #c9e64e;
  --lime-soft: #e5f5a5;
  --ink: #101b2d;
  --muted: #607086;
  --paper: #f8fbfe;
  --white: #ffffff;
  --line: #d9e6f3;
  --shadow: 0 24px 70px rgba(22, 69, 120, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

main {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 19px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #435975;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--navy);
}

.section {
  margin-bottom: 104px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 54px;
  min-height: 700px;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6.7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: inline-block;
  padding: 0 0.12em 0.08em;
  color: var(--white);
  background: var(--blue);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover {
  box-shadow: 0 12px 28px rgba(11, 45, 92, 0.24);
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}

.hero-meta span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 18px 22px 32px;
}

.hero-wash {
  position: absolute;
  inset: -20px -18px 10px 4px;
  border-radius: 48% 52% 45% 55%;
  background: var(--sky);
  transform: rotate(5deg);
}

.hero-image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(11, 45, 92, 0.12);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 26px 54px rgba(22, 69, 120, 0.18);
  transform: rotate(-2deg);
}

.hero-image-card img {
  width: 100%;
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 16px;
  border: 2px solid var(--navy);
  border-radius: 14px;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.12);
}

.hero-sticker span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-sticker strong {
  font-size: 14px;
}

.hero-sticker-top {
  top: 28px;
  right: -18px;
  transform: rotate(4deg);
}

.hero-sticker-bottom {
  bottom: 0;
  left: -18px;
  background: var(--white);
  transform: rotate(-4deg);
}

.intro {
  padding: 0 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 74px;
  align-items: start;
}

.intro h2,
.section-head h2,
.route-panel h2,
.result h2,
.registration h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.2vw, 59px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.highlight {
  display: inline;
  padding: 0 0.08em 0.05em;
  background: var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.intro-copy {
  padding-top: 7px;
  color: var(--muted);
  font-size: 16px;
}

.intro-copy p {
  margin: 0 0 18px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.focus-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.focus-card:nth-child(2) {
  background: var(--sky);
}

.focus-card:nth-child(3) {
  background: var(--lime-soft);
}

.focus-card span,
.schedule-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.focus-card h3 {
  margin: 42px 0 9px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.route {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 14px;
}

.route-panel {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--navy);
}

.section-label-light {
  color: var(--lime);
}

.route-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--white);
}

.route-panel > p {
  position: relative;
  z-index: 1;
  max-width: 490px;
  margin: 28px 0 0;
  color: #c9dbef;
  font-size: 15px;
}

.route-bird {
  position: absolute;
  right: -88px;
  bottom: -120px;
  width: 380px;
  opacity: 0.28;
  transform: rotate(-8deg);
}

.route-steps {
  display: grid;
  gap: 14px;
}

.route-steps article {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 154px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.route-steps article:nth-child(2) {
  background: var(--sky);
}

.route-steps article:nth-child(3) {
  background: var(--lime-soft);
}

.route-steps article > span {
  padding-right: 20px;
  border-right: 2px solid var(--blue);
  color: var(--blue);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.09em;
}

.route-steps strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.route-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.program,
.team,
.faq {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head .section-label {
  margin-bottom: 15px;
}

.section-head > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
}

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

.schedule-card {
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fcfdff;
}

.schedule-card:nth-child(2),
.schedule-card:nth-child(5),
.schedule-card:nth-child(8) {
  background: var(--sky);
}

.schedule-card-featured {
  color: var(--white);
  background: var(--navy) !important;
}

.schedule-card-featured .schedule-number,
.schedule-card-featured .schedule-label,
.schedule-card-featured .schedule-date span,
.schedule-card-featured .schedule-description {
  color: #c9dbef;
}

.schedule-card-featured h3,
.schedule-card-featured .schedule-date strong,
.schedule-card-featured .schedule-teacher {
  color: var(--white);
}

.schedule-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.schedule-label {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.schedule-date {
  margin-top: 34px;
}

.schedule-date strong,
.schedule-date span {
  display: block;
}

.schedule-date strong {
  color: var(--navy);
  font-size: 18px;
}

.schedule-date span {
  margin-top: 3px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
}

.schedule-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.schedule-teacher {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.schedule-description {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.result {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.result-variant {
  grid-template-columns: 1fr;
}

.result-copy {
  padding: 50px 54px;
  border-radius: var(--radius-xl);
  background: var(--sky-strong);
}

.result-copy h2 {
  max-width: 650px;
}

.result-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #3e5873;
  font-size: 15px;
}

.result-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--navy-deep);
}

.result-note-mark {
  align-self: flex-start;
  margin-bottom: auto;
  color: var(--lime);
  font-size: 64px;
  line-height: 0.8;
}

.result-note strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.result-note p {
  margin: 13px 0 0;
  color: #c9dbef;
  font-size: 14px;
}

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

.team-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fcfdff;
}

.team-card:nth-child(2) {
  background: var(--sky);
}

.team-card:nth-child(3) {
  background: var(--lime-soft);
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.05em;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.team-card .team-credentials {
  line-height: 1.45;
}

.team-card .team-role {
  color: var(--blue-dark);
  font-weight: 800;
}

.included {
  width: min(1180px, calc(100% - 40px));
}

.included-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  padding: 54px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--navy);
}

.included-panel h2 {
  max-width: 470px;
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 57px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

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

.included-list li {
  display: flex;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(201, 219, 239, 0.27);
  color: #e6f0fb;
  font-size: 13px;
}

.included-list span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.registration {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 54px;
  border: 1px solid #cfe3f7;
  border-radius: var(--radius-xl);
  background: var(--sky);
}

.registration h2 {
  max-width: 660px;
}

.registration-main > p {
  margin: 24px 0 26px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
}

.registration-main small {
  display: block;
  max-width: 570px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.registration-side {
  display: grid;
  align-content: center;
  gap: 12px;
}

.price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 21px;
  border: 1px solid rgba(11, 45, 92, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
}

.price-tag span {
  color: var(--muted);
  font-size: 12px;
}

.price-tag strong {
  color: var(--navy);
  font-size: 20px;
  text-align: right;
}

.price-tag-muted {
  background: var(--lime-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  margin: -4px 50px 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: var(--blue);
}

.final-cta .section-label {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
}

.final-cta p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #dcecff;
  font-size: 15px;
}

.final-cta .button {
  flex: 0 0 auto;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  padding: 30px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
    gap: 30px;
    padding: 44px;
  }

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

  .schedule-card {
    min-height: 290px;
  }
}

@media (max-width: 840px) {
  .section {
    margin-bottom: 76px;
  }

  .hero,
  .intro-grid,
  .route,
  .result,
  .included-panel,
  .registration {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 530px);
    margin-inline: auto;
  }

  .intro-grid {
    gap: 26px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .focus-card:last-child,
  .team-card:last-child {
    grid-column: 1 / -1;
  }

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

  .schedule-card:nth-child(8) {
    background: var(--sky);
  }

  .schedule-card:nth-child(odd) {
    background: #fcfdff;
  }

  .schedule-card-featured {
    background: var(--navy) !important;
  }

  .included-panel {
    gap: 34px;
  }

  .result-note {
    min-height: 300px;
  }

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

@media (max-width: 620px) {
  .site-header,
  .section,
  .included,
  .footer {
    width: min(100% - 24px, 560px);
  }

  .site-header {
    min-height: 72px;
  }

  .nav {
    gap: 0;
  }

  .nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 11px;
  }

  .section-label {
    margin-bottom: 13px;
  }

  .hero {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 68px);
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-meta strong {
    font-size: 16px;
  }

  .hero-meta span {
    font-size: 9px;
  }

  .hero-visual {
    padding: 12px 8px 28px;
  }

  .hero-sticker-top {
    right: -8px;
  }

  .hero-sticker-bottom {
    left: -8px;
  }

  .intro {
    padding-inline: 8px;
  }

  .intro h2,
  .section-head h2,
  .route-panel h2,
  .result h2,
  .registration h2,
  .final-cta h2,
  .included-panel h2 {
    font-size: 37px;
  }

  .focus-grid,
  .team-grid,
  .schedule-grid,
  .included-list {
    grid-template-columns: 1fr;
  }

  .focus-card:last-child,
  .team-card:last-child {
    grid-column: auto;
  }

  .focus-card {
    min-height: 185px;
  }

  .focus-card h3 {
    margin-top: 30px;
  }

  .route-panel,
  .result-copy,
  .result-note,
  .program,
  .team,
  .faq,
  .included-panel,
  .registration,
  .final-cta {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .route-panel {
    min-height: 390px;
  }

  .route-steps article {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: 145px;
    padding: 22px 18px;
  }

  .route-steps article > span {
    padding-right: 13px;
    font-size: 42px;
  }

  .route-steps strong {
    font-size: 20px;
  }

  .schedule-card,
  .team-card {
    min-height: 245px;
  }

  .schedule-date {
    margin-top: 24px;
  }

  .result-note {
    min-height: 270px;
  }

  .included-list li {
    padding: 14px 0;
  }

  .registration-side {
    gap: 8px;
  }

  .price-tag {
    padding: 16px 17px;
  }

  .faq-item summary {
    padding: 18px 0;
    font-size: 14px;
  }

  .faq-item p {
    margin-right: 0;
    font-size: 13px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-inline: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .faq-icon {
    transition: none;
  }
}
