*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-green: #29b560;
  --color-green-dark: #17984a;
  --color-navy: #2c3e50;
  --color-navy-dark: #172333;
  --color-text: #354050;
  --color-muted: #697789;
  --color-line: #e8edf1;
  --color-card: #ffffff;
  --color-bg: #f6f8f7;
  --shadow-soft: 0 18px 60px rgba(23, 35, 51, 0.12);
  --shadow-card: 0 16px 40px rgba(44, 62, 80, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Manrope", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

body.is-menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section__head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__eyebrow,
.hero__eyebrow,
.banner__label,
.lead__eyebrow {
  margin: 0 0 14px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__title,
.banner__title,
.lead__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section__subtitle {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 18px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

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

.button:hover::after {
  transform: translateX(120%);
}

.button--primary {
  color: #fff;
  background: var(--color-green);
  box-shadow: 0 18px 32px rgba(41, 181, 96, 0.32);
}

.button--primary:hover {
  background: var(--color-green-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.button--dark {
  color: #fff;
  background: var(--color-navy-dark);
  white-space: nowrap;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid #dde4ea;
  border-radius: var(--radius-lg);
  color: #94a1ad;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 236, 240, 0.85)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(44, 62, 80, 0.04) 14px 28px);
}

.placeholder__label {
  padding: 10px 16px;
  border-radius: 999px;
  color: #7c8b99;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.header.is-scrolled,
.header.is-menu-open {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(44, 62, 80, 0.08);
  backdrop-filter: blur(18px);
}

.header__container {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  line-height: 0;
}

.header__logo-img {
  display: block;
  width: auto;
  height: 42px;
  /* В макете лого смещено вверх — чуть опускаем для выравнивания с меню */
  transform: translateY(5px);
}

.header__logo-img--dark {
  display: none;
}

.header.is-scrolled .header__logo-img--light,
.header.is-menu-open .header__logo-img--light {
  display: none;
}

.header.is-scrolled .header__logo-img--dark,
.header.is-menu-open .header__logo-img--dark {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__link,
.header__contact {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.header__link:hover,
.header__contact:hover {
  color: #fff;
}

.header.is-scrolled .header__link,
.header.is-scrolled .header__contact,
.header.is-menu-open .header__link,
.header.is-menu-open .header__contact {
  color: var(--color-navy);
}

.header__burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--color-green);
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: #fff;
  transition: transform 0.25s ease;
}

.header.is-menu-open .header__burger-line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.header.is-menu-open .header__burger-line:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(41, 181, 96, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(23, 35, 51, 0.96), rgba(44, 62, 80, 0.86)),
    var(--color-navy);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(41, 181, 96, 0.15);
}

.hero::after {
  top: 150px;
  left: -80px;
  width: 210px;
  height: 210px;
  background: rgba(41, 181, 96, 0.12);
  filter: blur(12px);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 60px;
}

.hero__title {
  max-width: 770px;
  margin: 0;
  font-size: clamp(43px, 6.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__visual {
  position: relative;
}

.placeholder--hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 7;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 18px, transparent 18px 36px);
  box-shadow: var(--shadow-soft);
}

.hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  right: -22px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 210px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--color-navy);
  background: #fff;
  box-shadow: var(--shadow-soft);
  animation: floatBadge 4s ease-in-out infinite;
}

.hero__badge-number {
  color: var(--color-green);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.hero__badge-text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.reason {
  background: #fff;
}

.reason__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.reason__text {
  margin: 0 0 22px;
  color: var(--color-muted);
  font-size: 19px;
}

.reason__panel {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(41, 181, 96, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(41, 181, 96, 0.09), rgba(255, 255, 255, 0.88));
}

.reason__panel-title {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: 22px;
  line-height: 1.18;
}

.reason__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font-weight: 600;
  list-style: none;
}

.reason__list li {
  position: relative;
  padding-left: 26px;
}

.reason__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--color-green);
  border-radius: 50%;
}

.reason__slider {
  position: relative;
  align-self: center;
}

.court-slider {
  display: grid;
  gap: 22px;
}

.court-slider__viewport {
  position: relative;
  min-height: 430px;
}

.court-slider__viewport::before {
  content: "";
  position: absolute;
  inset: 34px 18px -10px 64px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(41, 181, 96, 0.12), rgba(44, 62, 80, 0.06));
  transform: rotate(-2deg);
}

.court-slider__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  min-height: 0;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
  transform: translate(36px, 34px) scale(0.92) rotate(2deg);
  opacity: 0.62;
  transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.55s ease;
}

.court-slider__slide.is-active {
  z-index: 2;
  transform: translate(0, 0) scale(1) rotate(0deg);
  opacity: 1;
  box-shadow: var(--shadow-soft);
}

.court-slider__slide.is-leaving {
  transform: translate(-28px, 22px) scale(0.94) rotate(-2deg);
}

.court-slider__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.court-slider__badge {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.court-slider__badge-number {
  color: var(--color-green);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.court-slider__badge-text {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.22;
}

.court-slider__controls {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.court-slider__button {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--color-navy);
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.court-slider__button:hover {
  background: var(--color-green);
  transform: translateY(-2px);
}

.court-slider__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-38%, -50%) rotate(45deg);
}

.court-slider__button--next::before {
  transform: translate(-62%, -50%) rotate(-135deg);
}

.court-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.court-slider__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #cbd5dc;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.court-slider__dot.is-active {
  width: 30px;
  background: var(--color-green);
}

.banner {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--color-green), #8fd348);
}

.banner__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.banner__label {
  color: rgba(255, 255, 255, 0.84);
}

.banner__title {
  max-width: 780px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.coaches {
  background: var(--color-bg);
}

.coaches__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.coach-card {
  --coach-photo-height: 440px;
  position: relative;
  display: grid;
  grid-template-rows: var(--coach-photo-height) 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.coach-card--secret {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(41, 181, 96, 0.28), transparent 34%),
    linear-gradient(145deg, #111a25, #263849);
  box-shadow: 0 24px 70px rgba(23, 35, 51, 0.24);
  outline: 2px solid rgba(41, 181, 96, 0.24);
  outline-offset: -2px;
}

.coach-card--secret::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(41, 181, 96, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.coach-card__photo {
  position: relative;
  width: 100%;
  height: var(--coach-photo-height);
  min-height: var(--coach-photo-height);
  border: 0;
  border-radius: 0;
}

.coach-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card__photo--secret::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(17, 26, 37, 0.84)),
    radial-gradient(circle at 82% 16%, rgba(41, 181, 96, 0.26), transparent 32%);
  pointer-events: none;
}

.coach-card__secret-badge {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 26, 37, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.coach-card__body {
  padding: 34px;
}

.coach-card__role {
  margin: 0 0 10px;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.coach-card__name {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: 28px;
  line-height: 1.15;
}

.coach-card__list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--color-muted);
  list-style: none;
}

.coach-card__list li {
  position: relative;
  padding-left: 20px;
}

.coach-card__list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

.coach-card__text {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.coach-card--secret .coach-card__role {
  color: #7ee39e;
}

.coach-card--secret .coach-card__name {
  color: #fff;
}

.coach-card--secret .coach-card__list,
.coach-card--secret .coach-card__text {
  color: rgba(255, 255, 255, 0.78);
}

.coach-card--secret .coach-card__list li::before {
  background: #7ee39e;
  box-shadow: 0 0 18px rgba(126, 227, 158, 0.75);
}

.benefits {
  background: #fff;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.audience-card,
.review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 34px rgba(44, 62, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover,
.audience-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 181, 96, 0.35);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  min-height: 250px;
  padding: 30px;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(41, 181, 96, 0.09);
}

.benefit-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--color-green);
  background: rgba(41, 181, 96, 0.11);
  font-weight: 900;
}

.benefit-card__title,
.audience-card__title {
  margin: 28px 0 10px;
  color: var(--color-navy);
  font-size: 22px;
  line-height: 1.18;
}

.benefit-card__text,
.audience-card__text {
  margin: 0;
  color: var(--color-muted);
}

.audience {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 220px;
  padding: 28px;
}

.audience-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-green);
}

.reviews {
  background: var(--color-navy);
}

.reviews .section__title {
  color: #fff;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 280px;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.review-card__text {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.review-card__author {
  color: #fff;
  font-weight: 800;
}

.location {
  background: #fff;
}

.location__container {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
}

.location__contacts {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.location__contact {
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.location__contact:hover {
  color: var(--color-green-dark);
}

.location__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 18px;
  list-style: none;
}

.location__list li {
  position: relative;
  padding-left: 28px;
}

.location__list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--color-green);
  border-radius: 50%;
}

.location__map {
  overflow: hidden;
  height: 520px;
  min-height: 520px;
  border: 1px solid #dde4ea;
  border-radius: var(--radius-lg);
}

.location__map > ymaps,
.location__map > [class*="ymaps"] {
  width: 100%;
  height: 100%;
}

.lead {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(41, 181, 96, 0.32), transparent 30%),
    linear-gradient(135deg, #172333, #2c3e50);
}

.lead::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(41, 181, 96, 0.16);
  border-radius: 50%;
}

.lead__container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.lead__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.lead__title {
  color: #fff;
}

.lead__text {
  max-width: 720px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.lead__form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.lead__field {
  display: grid;
  gap: 8px;
}

.lead__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.lead__input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  outline: 0;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lead__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead__input:focus {
  border-color: var(--color-green);
  background: rgba(255, 255, 255, 0.15);
}

.lead__button {
  height: 58px;
}

.lead__button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.lead__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead__input.is-invalid {
  border-color: #ff8f8f;
  background: rgba(255, 120, 120, 0.16);
}

.lead__status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.lead__status.is-success {
  color: #b8f0c8;
}

.lead__status.is-error {
  color: #ffb4b4;
}

.footer {
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #172333 0%, #1f2d3f 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer__logo-img {
  display: block;
  width: auto;
  height: 52px;
  transform: translateY(6px);
}

.footer__tagline {
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.5;
}

.footer__contacts {
  display: grid;
  gap: 10px;
  justify-self: center;
}

.footer__contact {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.footer__contact:hover {
  color: var(--color-green);
}

.footer__meta {
  justify-self: end;
  text-align: right;
}

.footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__credits {
  padding-top: 22px;
  text-align: center;
}

.footer__credits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer__credits-link {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer__credits-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1040px) {
  .hero__container,
  .reason__grid,
  .location__container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .placeholder--hero {
    min-height: 420px;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header__logo-img {
    height: 34px;
    transform: translateY(4px);
  }

  .footer__logo-img {
    height: 44px;
  }

  .section {
    padding: 76px 0;
  }

  .header__nav {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .header.is-menu-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__link {
    padding: 14px 8px;
    color: var(--color-navy);
  }

  .header__contacts {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .hero {
    padding: 118px 0 70px;
  }

  .hero__text,
  .reason__text,
  .section__subtitle,
  .lead__text {
    font-size: 17px;
  }

  .hero__actions,
  .banner__container {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__badge {
    right: 16px;
    bottom: 20px;
  }

  .reason__slider,
  .coaches__grid,
  .benefits__grid,
  .audience__grid,
  .reviews__grid,
  .lead__form {
    grid-template-columns: 1fr;
  }

  .court-slider__viewport {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .court-slider__viewport::before {
    inset: 24px 12px -8px 36px;
  }

  .court-slider__slide {
    transform: translate(18px, 18px) scale(0.94) rotate(2deg);
  }

  .court-slider__badge {
    right: 14px;
    bottom: 14px;
    max-width: 190px;
    padding: 13px 15px;
  }

  .coach-card {
    --coach-photo-height: 280px;
    grid-template-columns: 1fr;
  }

  .coach-card__photo {
    width: 100%;
  }

  .banner__container,
  .lead__container {
    padding: 28px;
  }

  .location__map {
    height: 360px;
    min-height: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer__tagline {
    max-width: none;
    margin-inline: auto;
  }

  .footer__contacts {
    justify-self: center;
  }

  .footer__meta {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .hero__title {
    font-size: 38px;
  }

  .section__title,
  .lead__title {
    font-size: 31px;
  }

  .placeholder--hero {
    min-height: 320px;
  }

  .coach-card__body,
  .benefit-card,
  .review-card,
  .audience-card {
    padding: 24px;
  }
}
