body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #2b2b44;
  margin: 0;
}
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 0.8em 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.logo-title {
  font-weight: bold;
  font-size: 2em;
  color: #e073b7;
  margin-left: 24px;
  margin-right: 30px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nav-link {
  color: #7e6c98;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2em;
  transition: color 0.18s;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 0.5em;
}
.nav-link:hover { color: #e073b7; }

.section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px #e4d3fa25;
  margin: 36px auto;
  padding: 38px 0 38px 0;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-hero {
  background: #fff5f9;
  margin-bottom: 0;
}
.hero-title {
  font-size: 2.4em;
  color: #e073b7;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.25em;
  color: #7863ab;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}
.hero-subtitle .accent {
  color: #6e86f2;
  font-weight: 700;
}
.results-list {
  list-style: disc;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 22px;
  font-size: 1.1em;
  color: #4a4570;
  max-width: 640px;
  text-align: left;
}
.results-list li {
  margin-bottom: 10px;
}
.btn.main-btn {
  background: linear-gradient(90deg, #e073b7 0%, #6e86f2 100%);
  color: #fff;
  padding: 0.9em 2.2em;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 16px #e4d3fa44;
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.22s, box-shadow 0.22s;
  text-align: center;
  display: inline-block;
}
.btn.main-btn:hover {
  background: linear-gradient(90deg, #6e86f2 0%, #e073b7 100%);
  box-shadow: 0 2px 24px #e073b766;
}
.hero-image-wrap {
  margin: 32px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-image {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 32px #e073b744;
  object-fit: cover;
  background: #f0eafc;
  display: block;
}
.section-title {
  font-size: 2rem;
  color: #6e86f2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.stages-grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.stage-block {
  background: #f7f2ff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #e073b726;
  padding: 2em 1.5em 1.3em 1.5em;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 18px;
  color: #4a4570;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stage-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin-bottom: 1em;
  background: #e073b7;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 12px #e073b744;
  display: block;
}
.stage-title {
  font-size: 1.15em;
  font-weight: bold;
  color: #6e86f2;
  margin-bottom: 0.7em;
  text-align: center;
}
.stage-block ul {
  list-style: disc inside;
  margin: 0 0 0.7em 0;
  padding: 0;
  font-size: 1em;
  color: #4a4570;
  text-align: left;
}
.section-form {
  background: #f9f7ff;
  padding: 34px 0 42px 0;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 36px auto;
  border-radius: 20px;
  box-shadow: 0 2px 24px #e4d3fa25;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
.form-input {
  width: 100%;
  padding: 1em;
  border-radius: 9px;
  border: 2px solid #e073b7;
  background: #fff;
  color: #2b2b44;
  font-size: 1.07rem;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: border 0.2s;
  text-align: center;
}
.form-input:focus {
  border-color: #6e86f2;
  outline: none;
}
.form-note {
  color: #7e6c98;
  font-size: 0.95em;
  text-align: center;
  margin: 14px auto 0 auto;
}
.modal-backdrop {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,44,78,0.36);
  align-items: center;
  justify-content: center;
}
.modal-backdrop.active {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #6e86f233;
  padding: 2.1em 1.6em 2em 1.6em;
  max-width: 350px;
  width: 100%;
  text-align: center;
  position: relative;
  margin: auto;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 1.8em;
  color: #7e6c98;
  cursor: pointer;
}
.modal-title {
  font-size: 1.13em;
  color: #6e86f2;
  font-weight: 700;
  margin-bottom: 18px;
}
.code-form {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
}
.code-form .form-input {
  text-align: center;
}
.toast {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  background: #e073b7;
  color: #fff;
  padding: 0.7em 1.6em;
  border-radius: 999px;
  box-shadow: 0 2px 16px #e073b799;
  font-size: 1em;
  z-index: 200;
  text-align: center;
}
.toast.active {
  display: block;
}
.reviews-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-top: 30px;
  width: 100%;
}
.review-block {
  background: #f7f2ff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #e073b726;
  padding: 1.2em 1.3em 1.05em 1.3em;
  min-width: 200px;
  max-width: 290px;
  color: #4a4570;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.review-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
  border: 2.5px solid #e073b7;
  box-shadow: 0 0 4px #fff;
}
.review-name-age {
  font-size: 1.07em;
  font-weight: 700;
  color: #6e86f2;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-align: center;
}
.review-text {
  font-size: 1em;
  margin-bottom: 12px;
  font-family: inherit;
  color: #4a4570;
  line-height: 1.5;
  text-align: center;
}
.footer {
  background: #f0eafc;
  padding: 18px 0;
  margin-top: 48px;
  width: 100%;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  color: #6e86f2;
  font-size: 1.08em;
  text-align: center;
}
.footer a {
  color: #e073b7;
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .container { max-width: 100vw; }
  .header-flex { flex-direction: column; gap: 14px; }
  .nav { gap: 24px; }
  .section { padding: 24px 0 24px 0;}
  .stages-grid { gap: 20px; }
}
@media (max-width: 700px) {
  .logo-title { font-size: 1.4em; margin-left: 0; margin-right: 0; }
  .nav { gap: 12px; }
  .section-title { font-size: 1.3em; }
  .hero-title { font-size: 1.2em; }
  .hero-image { max-width: 90vw; }
  .stage-img { width: 140px; height: 140px; }
  .stage-block, .review-block { min-width: 90vw; max-width: 96vw; }
  .modal { max-width: 97vw; padding: 1.7em 0.6em 1.6em 0.6em; }
}