.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 clamp(60px, 10vw, 200px);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  max-width: 780px;
}

.hero__label {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  margin-bottom: 52px;
  opacity: 0.85;
  max-width: 540px;
}

.hero__btn {
  display: inline-block;
  padding: 17px 52px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5, #5BC4F5);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  border-radius: 10px;
  transition: background-position 0.5s ease;
}

.hero__btn:hover {
  background-position: right;
}

/* ── Coaching section ── */
.coaching {
  padding: 100px var(--site-padding);
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.coaching::before,
.coaching::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(91,196,245,0.12), rgba(123,92,245,0.12));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -40px;
  left: -60px;
}

.coaching::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  top: auto;
  left: auto;
  bottom: -40px;
  right: -60px;
}

.coaching__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
}

.coaching__label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.coaching__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.1;
}

.coaching__intro-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  color: #666;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.9;
}

.coaching__intro-right strong {
  color: #0d1b2e;
  font-weight: 700;
}

/* ── Cards ── */
.coaching__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 540px;
  cursor: pointer;
}

.card__img-wrap {
  position: absolute;
  inset: 0;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__img-wrap img {
  transform: scale(1.05);
}

.card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 24px;
  background: #fff;
  transition: background 0.4s ease;
}

.card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2e;
  text-align: center;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.card__line {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  transition: opacity 0.4s ease;
}

.card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.6;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.card:hover .card__body {
  background: linear-gradient(to bottom, #5BC4F5, #7B5CF5);
}

.card:hover .card__title {
  color: #fff;
}

.card:hover .card__line {
  opacity: 0;
}

.card:hover .card__desc {
  max-height: 80px;
  opacity: 1;
}

.coaching__cta {
  margin-top: 56px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.coaching__cta-link {
  font-weight: 700;
  color: #3b4fd8;
  text-decoration: none;
  transition: opacity 0.2s;
}

.coaching__cta-link:hover {
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .coaching__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coaching__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ── Coach section ── */
.coach {
  padding: 100px var(--site-padding);
  background: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(91,196,245,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Photo column */
.coach__photo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.coach__circle {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

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

/* Middle column */
.coach__middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coach__label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coach__title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.1;
}

/* Features column */
.coach__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
}

.coach__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coach__feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.3;
  display: flex;
  gap: 6px;
}

.coach__chevron {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.1;
}

.coach__feature-desc {
  font-size: 16px;
  color: #888;
  line-height: 1.65;
}

/* ── Reviews section ── */
.reviews {
  padding: 100px var(--site-padding);
  background: #09132e;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.reviews__label {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.reviews__title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 28px;
}

.reviews__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.reviews__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews__card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews__text {
  font-size: 18px;
  color: #2a2a2a;
  line-height: 1.8;
  flex: 1;
}

.reviews__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
}

.reviews__tag {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e5e5;
  outline: 3px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #5BC4F5, 0 0 0 4px #7B5CF5;
}

.reviews__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2e;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.reviews__role {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .reviews {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Steps section ── */
.steps {
  padding: 100px var(--site-padding);
  background: #f0f2f5;
}

.steps__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.steps__label {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}

.steps__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.1;
}

.steps__btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5, #5BC4F5);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-position 0.5s ease;
}

.steps__btn:hover {
  background-position: right;
}

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

.steps__card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.steps__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.steps__icon {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(71%) sepia(57%) saturate(600%) hue-rotate(163deg) brightness(102%) contrast(95%);
}

.steps__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #e8eaf0;
  line-height: 1;
}

.steps__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b2e;
}

.steps__card-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .steps__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ── Stats section ── */
.stats {
  padding: 56px var(--site-padding);
  background: #f0f2f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stats__card {
  background: #09132e;
  border-radius: 16px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
}

.stats__num {
  font-size: 4rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.stats__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* ── Blog intro ── */
.blog-intro {
  padding: 100px var(--site-padding);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.blog-intro__label {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0d1b2e;
}

.blog-intro__label--grad {
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-intro__title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.1;
}

.blog-intro__right {
  font-size: clamp(15px, 1.2vw, 17px);
  color: #666;
  line-height: 1.9;
}

.blog-intro__right strong {
  color: #0d1b2e;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .blog-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Promo banner ── */
.promo {
  padding: 0 var(--site-padding) 100px;
  background: #fff;
}

.promo__inner {
  background: #eaecf8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}

.promo__left {
  position: relative;
  flex-shrink: 0;
  width: 440px;
  height: 260px;
  display: flex;
  align-items: flex-end;
}

.promo__shape--back {
  position: absolute;
  inset: 0;
  background: #7B5CF5;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.promo__shape--front {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #3b4fd8, #5BC4F5);
  clip-path: polygon(0 0, 76% 0, 54% 100%, 0 100%);
}

.promo__person {
  position: absolute;
  bottom: 0;
  left: 10px;
  height: 270px;
  object-fit: contain;
  z-index: 2;
}

.promo__offer {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.promo__offer strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 2px;
}

.promo__content {
  flex: 1;
  padding: 32px 40px;
}

.promo__tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}

.promo__title {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.4;
}

.promo__btn {
  display: inline-block;
  margin-right: 48px;
  padding: 18px 48px;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5, #5BC4F5);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-position 0.5s ease;
}

.promo__btn:hover {
  background-position: right;
}

@media (max-width: 1024px) {
  .promo__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
  }

  .promo__left {
    width: 100%;
    height: 180px;
  }

  .promo__btn {
    margin-right: 0;
  }
}

/* ── Together section ── */
.together {
  padding: 100px var(--site-padding);
  background: #f8f9ff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.together__label {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(to right, #5BC4F5, #7B5CF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: inline-block;
}

.together__title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.1;
}

.together__right {
  font-size: clamp(15px, 1.2vw, 17px);
  color: #666;
  line-height: 1.9;
}

.together__right strong {
  color: #0d1b2e;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .together {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1200px) {
  .coach {
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto;
  }

  .coach__features {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .coach {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coach__photo-col {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .coach__circle {
    width: 260px;
    height: 260px;
  }

  .coach__features {
    grid-template-columns: 1fr;
  }
}
