
:root {
  --font-accent: "Inter", "Segoe UI", Arial, sans-serif;
  --bg: #f7f3ee;
  --surface: #ffffff;
  --surface-soft: #fcfaf7;
  --text: #121417;
  --muted: #5f6570;
  --border: rgba(18, 20, 23, 0.08);
  --line: rgba(18, 20, 23, 0.12);
  --accent: #c59b61;
  --accent-dark: #8a6230;
  --dark: #121417;
  --dark-soft: #1d222a;
  --light: #f8f1e7;
  --shadow: 0 20px 60px rgba(18, 20, 23, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 108px;
  background:
    radial-gradient(circle at top left, rgba(197, 155, 97, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(18, 20, 23, 0.05), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
section { scroll-margin-top: 120px; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.container-main { width: min(1180px, calc(100% - 32px)); }
.bg-black { background: var(--dark); }
.distance-xxs { padding: 100px 0 40px; }

/* header */
.hero { position: relative; }
header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 1000;
}
.header__wrap {
  display: flex;
  padding: 12px 24px;
  justify-content: space-between;
  align-items: center;
  border-radius: 18px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(18, 20, 23, 0.12);
}
.header__wrap-col1,
.header__wrap-col1 svg { display: block; }
.header__wrap-col2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__wrap-col1-ul {
  gap: 38px;
  display: flex;
  align-items: center;
}
.header__link {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #003D3D;
  transition: width .25s ease;
}
.header__link:hover::after { width: 100%; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.acc-btn {
  padding: 12px 20px;
  background: linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
  color: var(--light) !important;
  box-shadow: 0 16px 30px rgba(255, 255, 255, 0.28);
}
.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
}
.burger-line {
  height: 2px;
  width: 100%;
  border-radius: 99px;
  background: var(--text);
}

/* hero */
.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero::after {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 100px;
  background: rgba(18, 20, 23, 0.08);
}
.hero__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 68px;
}
.hero__col-left {
  display: flex;
  width: 520px;
  flex-direction: column;
  gap: 30px;
}
.hero__col-left-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
  border: 1px solid #003D3D;
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-accent);
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}
.hero__div {
  width: 160px;
  height: 5px;
  border-radius: 999px;
  background:linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
}
.hero h2 {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}
.hero h2 span { font-weight: 700; color: var(--text); }
.hero__col-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero__col-row { display: flex; gap: 25px; }
.hero__up-triangle,
.hero__down-triangle {
  width: 280px;
  height: 254px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
}
.hero__up-triangle {
  border-radius: 1000px 20px 20px 20px;
  display: flex;
  justify-content: flex-end;
}
.hero__down-triangle {
  border-radius: 20px 20px 1000px 20px;
  display: flex;
  justify-content: flex-start;
}
.hero__up-quadro,
.hero__down-quadro {
  width: 269px;
  height: 205px;
  border-radius: 20px;
  background: linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
  box-shadow: var(--shadow);
}
.hero__up-quadro { display: flex; align-items: center; }
.hero__down-quadro { display: flex; }
.col-row-up { align-items: end; padding-right: 10px; }
.col-row-bottom { align-items: start; padding-left: 20px; }
.hero-btn {
  padding: 16px 32px;
  gap: 42px;
  background: var(--dark);
  box-shadow: 0 20px 32px rgba(18, 20, 23, 0.18);
}
.hero-btn p,
.register-btn p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.ico { display: flex; }
.blck-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.blck-text .text-title {
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.blck-text .text-subtitle {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.wht-text .text-title,
.wht-text .text-subtitle { color: #fff; }
.block-1 { padding: 128px 56px 0px 0px;}
.block-2 { padding-left: 40px; }
.block-3 { padding: 40px 0 0 40px; }
.block-4 { padding: 40px 0 0 40px; }
.hero__col-right-cicle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero__col-right-ico {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero__form-alt-btn{
  padding-top: 10px;
  text-align: center;
}

/* common */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.section-header--split {
    flex-direction: column;
    display: flex;
    grid-template-columns: 3.05fr .95fr;
    gap: 32px;
    align-items: start;
}
.section-header__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.land__div {
  width: 68px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
}
.land__div--light { background: rgba(255, 255, 255, 0.72); }
.section-kicker {
  color: #003D3D;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-kicker--light { color: rgba(248, 241, 231, 0.82); }
.section-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-accent);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-title--light { color: #fff; }
.section-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-description--narrow { max-width: 820px; }
.section-description--light { color: rgba(255,255,255,.78); }
.section-btn {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 32px rgba(18, 20, 23, 0.14);
}
.section-btn--light {
  background:linear-gradient(235deg, #008C63 1.68%, #00664E 24.43%, #003D3D 54.76%);
  color: #FFF;
}

/* promo */
.promo,
.about,
.program,
.take,
.team,
.register { padding: 100px 0; }
.promo__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.promo__feature {
/*   min-height: 250px; */
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.promo__feature--wide {
  background: linear-gradient(135deg, rgba(197,155,97,.14), rgba(255,255,255,.94));
}
.promo__feature-badge {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.promo__feature-number {
  color: #003D3D; 
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
.promo__feature h3,
.method-card h3,
.program__content h3,
.take-card h3,
.register__form-title,
.promo__feature--wide h3 {
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.promo__feature p,
.method-card p,
.program__content p,
.take-card p,
.register__form-text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.promo__feature p{
  font-size: 22px;
  line-height: normal;
}

.promo__feature p span{
  font-size: 16px;
  color: #5f65703d;
}

.promo__feature-flx{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.promo__feature-lrg-ac{
  background: linear-gradient(221deg, #003D3D -17.43%, #151515 23%, #151515 67%, #003D3D 118.51%);
}
.promo__feature-lrg-ac p{
  color: #ffffff;
}

.promo__feature-lrg p{
  font-weight: 500;
  font-size: 20px;
}

.promo--group{
  justify-content: center;
  align-self: center;
  width: 100%;
  display: flex;
  margin-top: 40px;
}

.promo__feature h3{
  font-size: 18px;
  font-weight: 500;
}

/* problems */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}
.problem-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
}

.problem-card p {
  margin: 0;
  font-size: 22px;
  line-height: 1.55;
}

.problem-card p span{
  font-weight: 600;
}

.problems__summary {
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: 28px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.problems__summary p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
}

/* method */
.method__cover {
  padding: 42px;
  border-radius: 36px;
  background: linear-gradient(135deg, #15171c 0%, #232933 100%);
  box-shadow: 0 30px 90px rgba(18, 20, 23, 0.18);
}
.method__meta {
  display: inline-flex;
  width: fit-content;
  margin: 6px 0 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.method__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.method-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.method-card__number,
.take-card__number {
  margin-bottom: 18px;
  color: #003D3D;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .12em;
}
.method-card h3 { color: #fff; }
.method-card p { color: rgba(255,255,255,.74); }

/* program */
.program__list {
  display: grid;
  gap: 18px;
}
.program__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.program__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(97, 197, 144, 0.12);
  color: #003D3D;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* take */
.take__cover {
  padding: 40px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.take__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.take-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(97, 197, 144, 0.12);
  border: 1px solid rgba(18,20,23,.06);
}

/* team */
.team__main-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* .team__items-wrap--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
} */
.team__item {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #fff;
  box-shadow: var(--shadow);
}
.team__item-ico {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d8d8d8;
}
.team__item-ico-2 {
  background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-1.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: center, center;
  background-position-y: -60px, 0;
  background-size: 120%, cover;
}
.team__item-ico-4 {
  background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-2.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: -20px, 0;
  background-position-y: -75px, 0;
  background-size: 120%, cover;
}

.team__item-ico-3 {
  background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-4.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: -20px, 0;
  background-position-y: -75px, 0;
  background-size: 120%, cover;
}
.team__item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 10px 12px;
}
.team__item-title {
  color: #000;
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.team__item-subtitle {
  color: #000;
  font-size: 15px;
  line-height: 1.65;
}
.team__item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
  text-decoration: none;
}
.team__item-btn-content-title {
  color: #000;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.team__item-btn-content-subtitle {
  color: #535353;
  font-size: 12px;
  line-height: 16px;
}

/* register */
.register__wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, #111317 0%, #232933 100%);
  box-shadow: 0 30px 90px rgba(18,20,23,.18);
}
.register__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.register__benefits {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.register__benefit {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  justify-content: center;
}
.register__benefit strong {
  min-width: 92px;
  color: var(--light);
  font-family: var(--font-accent);
  font-size: 20px;
  line-height: 1;
}
.register__benefit span {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.55;
}
.register__form-shell {
    align-self: center;
    height: max-content;
    justify-content: center;
    flex-direction: column;
    display: flex;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
}
.register__hook {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(18,20,23,.04);
  border: 1px dashed rgba(18,20,23,.18);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.register__actions { margin-top: 22px; }
.register-btn { width: 100%; justify-content: space-between; }

/* footer */
footer {
  position: relative;
  overflow: hidden;
}
.footer__main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.footer__main-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.footer__main-content-wrap-top {
  display: flex;
  width: 100%;
  padding: 40px 0;
  justify-content: space-between;
  align-items: center;
}
.footer__links-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-link-btn { transition: transform .25s ease; }
.footer-link-btn:hover { transform: scale(1.06); }
.footer__main-content-wrap-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.footer__main-content-col1 {
  display: flex;
  width: 695px;
  align-items: flex-start;
  gap: 60px;
}
.footer__main-content-col1,
.footer__main-content-col2 { flex: 1; }
.footer__main-content-col1-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__main-content-title {
  padding-bottom: 2px;
  color: #003D3D;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
}
.footer__main-content-subtitle,
.footer__main-content-col2 p,
.footer__main-bottom a,
.footer__main-bottom p {
  color: #F5F5F5;
  font-size: 18px;
  line-height: 28px;
}
.foot-lnk { text-decoration: none; }
.footer__main-content-col2 {
  display: flex;
  justify-content: end;
  align-items: flex-end;
}
.footer__main-content-col2 p {
  width: 50%;
  margin: 0;
  text-align: right;
}
.footer__main-bottom {
  border-top: 1px solid #898989;
  display: flex;
  width: 100%;
  padding-top: 50px;
  justify-content: space-between;
  align-items: center;
}
.footer__main-bottom a {
  text-decoration: none;
}
.footer__main-bottom a:hover { text-decoration: underline; }

/* tablet */
@media (max-width: 1024px) {
  body { padding-top: 96px; }
  .header__wrap-col1-ul {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: min(340px, calc(100vw - 20px));
    background: rgb(255, 255, 255);
    position: absolute;
    top: 74px;
    right: 0;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(18,20,23,.12);
  }
  .header__wrap-col1-ul.active { display: flex; }
  .burger-icon { display: flex; }
  .hero__wrap,
  .section-header--split,
  .register__wrap,
  .promo__grid,
  .take__grid,
  .team__items-wrap--two { grid-template-columns: 1fr; }
  .hero__wrap { flex-direction: column; align-items: stretch; }
  .hero__col-left { width: auto; }
  .promo__grid { display: grid; }
  .promo__feature,
  .promo__feature--wide { min-height: auto; }
  .method__grid,
  .problems__grid { grid-template-columns: 1fr 1fr; }
  .program__item { grid-template-columns: 180px 1fr; }
  .take__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer__main-content-wrap-bottom,
  .footer__main-content-wrap-top,
  .footer__main-bottom,
  .footer__main-content-col1 { flex-direction: column; }
  .footer__main-content-col1 { width: 100%; }
  .footer__main-content-col2 { justify-content: start; }
  .footer__main-content-col2 p {
    width: 100%;
    margin-top: 60px;
    text-align: left;
  }
  .footer__main-bottom { gap: 20px; }
}

/* mobile */
@media (max-width: 768px) {
  .container,
  .container-main { width: min(100% - 20px, 1180px); }
  .hero,
  .promo,
  .about,
  .method,
  .program,
  .take,
  .team,
  .register { padding: 56px 0; }
  .distance-xxs { padding: 56px 0 32px; }
  h1 { font-size: 46px; }
  .section-title { font-size: 30px; }
  .hero__div { width: 100px; }
  .hero__col-row { flex-direction: column; gap: 15px; }
  .hero__up-triangle,
  .hero__down-triangle,
  .hero__up-quadro,
  .hero__down-quadro {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .hero__up-triangle,
  .hero__down-triangle,
  .hero__up-quadro,
  .hero__down-quadro { aspect-ratio: unset; }
  .col-row-up,
  .col-row-bottom { padding: 0; align-items: stretch; }
  .hero__col-right-cicle,
  .hero__col-right-ico { display: none; }
  .block-1,
  .block-2,
  .block-3,
  .block-4,
  .blck-text { padding: 22px; }
  .blck-text { gap: 8px; }
  .blck-text .text-title { font-size: 30px; }
  .hero-btn,
  .register-btn { width: 100%; }
  .problems__grid,
  .method__grid,
  .take__grid { grid-template-columns: 1fr; }
  .problems__summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .program__item { grid-template-columns: 1fr; padding: 22px; }
  .program__time {
    width: fit-content;
    min-width: 0;
    font-size: 20px;
  }
  .take__cover,
  .method__cover,
  .register__wrap { padding: 24px; }
  .team__item-title { font-size: 26px; }
  .footer__main-content-subtitle,
  .footer__main-content-col2 p,
  .footer__main-bottom a,
  .footer__main-bottom p,
  .footer__main-content-title { font-size: 16px; line-height: 24px; }
}

/* *=====================* */
.promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo__grid > *:nth-child(4) {
  grid-column: 1 / -1;
}

.promo__grid > *:nth-child(5) {
  grid-column: 1 / -1;
}

/* .promo__grid > *:first-child {
    grid-column: 1 / -1;
} */

.promo__feature{
  font-size: 18px;
}

.w-btn{
  width: auto;
  font-weight: 500;
}

.problems__summary p{
  width: 770px;
  font-weight: 500;
}

.method__meta-row {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 6px 0 28px;
}

.method__meta-photo{
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.method__meta{
  margin: 0;
}

.method__meta-photo {
    background-image: url(../img/ico.jpg);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: 130%;
}

@media (max-width: 768px){
  .method__meta-row{
    gap: 12px;
    margin: 6px 0 20px;
    flex-direction: row;
  }

  .method__meta-photo{
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .method__meta{
    font-size: 12px;
    line-height: 1.4;
  }
}


@media (max-width: 768px) {
h1{
  font-size: 35px;
}
.hero__up-triangle{
  justify-content: start;
}
.promo__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.problems__grid{
  gap: 10px;
}
.problems__summary p{
  width: auto;
}
.problems__summary{
  align-items: center;
}
.method{
  padding-top: 0;
}
.section-header{
  margin-bottom: 10px;
}
.register__wrap{
  padding: 40px 16px;
}
.hero, .promo, .about, .method, .program, .take, .team, .register{
  padding-top: 0;
}
.register__benefit strong{
  min-width: auto;
  font-size: 16px;
}
.register__benefit{
  padding: 18px 10px;
}
.register__form-shell{
  padding: 12px 10px;
  padding-left: 20px;
}
}

.method .section-btn{
  display: flex;
  width: fit-content;
  font-weight: 600;
  margin: 0 auto;
}

/* 16. Pop-up Section Start */
.modal{
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgb(0 0 0 / 18%);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
.modal.is-open{ display: flex; }

.modal__dialog {
  position: relative;
  max-width: 720px;
  width: calc(100% - 40px);
  border: 2px solid #fff;             /* белая рамка */
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  overflow: hidden;                    /* чтобы блюр не “резался” по краям */
  background: #FFF;                    /* фон перенесём в ::before */
}


.modal__dialog p{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #215FCB;
    padding-bottom: 20px;
}

.modal__close{
  position: absolute; right: 15px;
    top: 15px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: transparent; font-size: 48px; line-height: 1;
  cursor: pointer; color:#000000;
  z-index: 10;
}

body.no-scroll{ overflow: hidden; }

.modal__title{
    color: #000000;
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding: 20px;
    /* background: url(../img/bg/bg-reg.avif) center center; */
    background-size: cover;
    border-radius: 24px;
    margin-bottom: 10px;
}

@media (max-width: 640px){
  .modal__dialog{ padding: 32px 20px; }
}

.hero__form-alt-btn{
  text-align: center;
}

.choice__card a{
  height: auto;
  text-decoration: none;
}

/* tablet + mobile */
@media (max-width: 991px) {
.problem-card p{
  font-size: 18px;
}

.promo__feature p{
  font-size: 18px;
  line-height: normal;
}

.promo__feature-lrg p{
  font-size: 18px;
}
}
/* 16. Pop-up Section End */