:root {
  --bg: #f1f1f1;
  --surface: #fff;
  --text: #1f1b20;
  --muted: #67606a;
  --pink: #f25492;
  --pink-dark: #dc397a;
  --pink-soft: #ffeaf3;
  --line: #f0a9c7;
  --shadow: 0 18px 48px rgba(31, 27, 32, 0.08);
  --radius: 28px;
  --container: 1200px;
  --font: "Inter", "Roboto", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.section {
  padding: 56px 0;
}

.section--muted {
  background: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 18px, var(--container));
  margin: 12px auto 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-size: 13px;
}

.nav {
  display: none;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding-top: 34px;
  background: linear-gradient(180deg, #fff 0 72%, var(--bg) 72%);
}

.hero__grid {
  display: grid;
  gap: 28px;
}

.hero__content {
  display: grid;
  align-content: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: clamp(21px, 5.3vw, 39px);
  line-height: 1.02;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(27px, 6vw, 46px);
  line-height: 1.1;
}

h2 span,
.section-heading span {
  color: var(--pink);
}

h3 {
  font-size: 22px;
  line-height: 1.16;
}

.hero__lead {
  color: var(--pink-dark);
  font-size: clamp(21px, 5vw, 31px);
  font-weight: 800;
  line-height: 1.18;
}

.hero__text {
  margin-bottom: 26px;
  font-size: 16px;
}

.hero__note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 75% 50%, rgba(242, 84, 146, 0.16) 0 28%, transparent 29%),
    linear-gradient(180deg, #fff 0%, var(--pink-soft) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero__stat {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(31, 27, 32, 0.14);
}

.hero__stat strong {
  color: var(--pink);
  font-size: 28px;
  line-height: 1;
}

.hero__stat small {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 14px 28px rgba(242, 84, 146, 0.25);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

.button--small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading--left {
  text-align: left;
}

.trust-card,
.cta-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.fact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  min-height: 32px;
  padding-left: 42px;
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 40%, #fff 40% 58%, transparent 58%),
    var(--pink);
  transform: rotate(-13deg);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.mini-gallery picture,
.press-grid picture {
  overflow: hidden;
  border-radius: 22px;
  background: var(--pink-soft);
}

.mini-gallery img,
.press-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swipe-note {
  margin: 12px 0 0;
  color: var(--pink);
  font-size: 12px;
  text-align: center;
}

.social-proof {
  background: var(--surface);
}

.social-proof__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.center-title {
  margin: 48px 0 18px;
  text-align: center;
}

.center-title:first-child {
  margin-top: 0;
}

.program-grid {
  display: grid;
  gap: 18px;
}

.program-card {
  overflow: hidden;
  display: grid;
  border: 2px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(31, 27, 32, 0.06);
}

.program-card picture {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.program-card > div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px;
}

.program-card p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: var(--pink-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.results {
  background: var(--surface);
}

.result-stats,
.guarantee-grid {
  display: grid;
  gap: 16px;
}

.result-stats div,
.guarantee-grid article,
.faq-list details {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.result-stats strong {
  display: block;
  color: var(--pink);
  font-size: 34px;
  line-height: 1;
}

.result-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.cta-section {
  background: linear-gradient(135deg, var(--pink), #ff80b4);
}

.cta-card {
  text-align: center;
}

.cta-card p {
  color: var(--muted);
  font-size: 18px;
}

.students {
  background: var(--surface);
}

.student-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 220px);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pink) #f6d3e1;
}

.student-strip picture {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: var(--pink-soft);
  scroll-snap-align: start;
}

.student-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer {
  padding: 42px 0;
  color: #fff;
  background: #252329;
}

.footer__grid {
  display: grid;
  gap: 22px;
}

.footer__copy,
.footer__links,
.footer__social {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer__links,
.footer__social {
  display: grid;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 32, 0.58);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(720px, 94vh);
  overflow-y: auto;
  padding: 26px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal__lead {
  color: var(--muted);
}

.modal__options {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.modal__options button {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.modal__options button.is-selected {
  border-color: var(--pink);
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.modal__submit {
  width: 100%;
}

.modal__submit.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

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

  .program-card {
    grid-template-columns: minmax(220px, 40%) 1fr;
  }

  .program-card picture {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .result-stats,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: stretch;
  }

  .hero__content {
    min-height: 600px;
    padding: 46px;
    text-align: left;
  }

  .hero__media {
    min-height: 600px;
  }

  .trust-card {
    padding: 32px;
  }

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

  .mini-gallery picture {
    min-height: 450px;
  }

  .social-proof__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

  .program-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1.25fr 0.95fr 0.8fr;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 14px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .hero__media {
    min-height: 390px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }
}
