/* ===== Variables ===== */
:root {
  --color-bg: #0d0d0d;
  --color-bg-alt: #141414;
  --color-bg-card: #1a1a1a;
  --color-surface: #222222;
  --color-text: #e8e8e8;
  --color-text-muted: #999999;
  --color-accent: #c41e3a;
  --color-accent-hover: #e02545;
  --color-gold: #c9a227;
  --color-border: #2a2a2a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --header-height: 72px;
  --radius: 8px;
  --transition: 0.25s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--color-bg-alt);
}

/* ===== Parallax ===== */
.section--parallax,
.hero--parallax {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section--parallax {
  background: transparent;
}

.section--parallax.section--dark {
  background: transparent;
}

.parallax-bg {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  height: 150%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

.parallax-bg--hero { background-image: url('../images/hero-ring.jpg'); }
.parallax-bg--about { background-image: url('../images/about-training.jpg'); }
.parallax-bg--process { background-image: url('../images/process-bag.jpg'); }
.parallax-bg--schedule { background-image: url('../images/schedule-bag.jpg'); }
.parallax-bg--coaches { background-image: url('../images/coaches-sparring.jpg'); }
.parallax-bg--pricing { background-image: url('../images/pricing-gloves.jpeg'); }
.parallax-bg--contacts { background-image: url('../images/contacts-ring.jpg'); }

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.88) 0%,
    rgba(13, 13, 13, 0.82) 50%,
    rgba(13, 13, 13, 0.9) 100%
  );
  pointer-events: none;
}

.parallax-overlay--dark {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.93) 0%,
    rgba(14, 14, 14, 0.86) 50%,
    rgba(10, 10, 10, 0.94) 100%
  );
}

.parallax-overlay--hero {
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(13, 13, 13, 0.55) 50%,
    rgba(196, 30, 58, 0.2) 100%
  );
}

.section__content {
  position: relative;
  z-index: 2;
}

.section--parallax .process__step,
.section--parallax .program-card,
.section--parallax .coach-card,
.section--parallax .price-card,
.section--parallax .schedule-table,
.section--parallax .schedule-empty,
.section--parallax .schedule-note,
.section--parallax .pricing-info,
.section--parallax .contacts__note,
.section--parallax .schedule-tab:not(.schedule-tab--active) {
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section--parallax .schedule-tab--active {
  backdrop-filter: none;
}

.section--parallax .price-card--featured {
  background: linear-gradient(
    180deg,
    rgba(196, 30, 58, 0.15) 0%,
    rgba(26, 26, 26, 0.85) 45%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section--parallax .schedule-table th {
  background: rgba(34, 34, 34, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .parallax-bg {
    top: 0;
    height: 100%;
    transform: none !important;
  }
}

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
}

.logo__image {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
}

.hero--parallax .hero__content {
  position: relative;
  z-index: 2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 70% 50%, rgba(196, 30, 58, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding: 80px 24px;
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
}

.hero__stats span {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.about__text strong {
  color: var(--color-text);
}

.about__features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.15);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.about__features strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.about__features p {
  font-size: 14px;
  margin: 0;
}

.about__visual {
  position: relative;
}

.about__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(13, 13, 13, 0.6) 0%, transparent 50%),
    url('../images/woman-ring.jpg') center / cover no-repeat;
  border: 1px solid var(--color-border);
}

.about__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-accent);
  padding: 20px 28px;
  border-radius: var(--radius);
}

.about__badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

.about__badge strong {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Process ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.process__step {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: border-color var(--transition);
}

.process__step:hover {
  border-color: var(--color-accent);
}

.process__number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(196, 30, 58, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.process__step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.process__step p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.programs__title {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

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

.program-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.program-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.program-card__age {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.program-card > p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.program-card ul li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.program-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ===== Schedule ===== */
.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.schedule-tab {
  flex: 1;
  min-width: 48px;
  padding: 12px 8px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.schedule-tab:hover {
  border-color: var(--color-accent);
  color: #fff;
}

.schedule-tab--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.schedule-table th,
.schedule-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.schedule-table th {
  background: var(--color-surface);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.schedule-table td {
  font-size: 15px;
  color: var(--color-text);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover td {
  background: rgba(196, 30, 58, 0.05);
}

.schedule-empty {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.schedule-empty p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.schedule-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.schedule-note strong {
  color: var(--color-gold);
}

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

.coach-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.coach-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.4);
}

.coach-card__photo {
  height: 220px;
  background-size: cover;
  background-position: center top;
}

.coach-card__photo--1 {
  background-image: url('../images/woman-ring.jpg');
}

.coach-card__photo--2 {
  background-image: url('../images/coach-petrov.jpg');
}

.coach-card__photo--3 {
  background-image: url('../images/coach-morozova.jpeg');
}

.coach-card__photo--4 {
  background-image: url('../images/coaches-sparring.jpg');
}

.coach-card__photo--5 {
  background-image: url('../images/coach-volkov.jpg');
}

.coach-card__photo--6 {
  background-image: url('../images/contacts-ring.jpg');
}

.coach-card__body {
  padding: 24px;
}

.coach-card__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.coach-card__role {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.coach-card__body > p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.coach-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coach-card__tags li {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: rgba(196, 30, 58, 0.12);
  color: var(--color-accent);
  border-radius: 4px;
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.price-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.08) 0%, var(--color-bg-card) 40%);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.price-card__amount {
  margin-bottom: 4px;
}

.price-card__amount span {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1;
}

.price-card__period {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.price-card ul {
  flex: 1;
  margin-bottom: 20px;
}

.price-card ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.price-card__note {
  font-size: 13px;
  color: var(--color-gold);
  font-style: italic;
}

.pricing-info {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
}

.pricing-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.pricing-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pricing-info__grid strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.pricing-info__grid ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.pricing-info__grid ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ===== Contacts ===== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacts__aside {
  display: grid;
  gap: 24px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacts__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contacts__item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.contacts__item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.contacts__item a {
  color: var(--color-text);
}

.contacts__item a:hover {
  color: var(--color-accent);
}

.contacts__note {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.contact-form {
  width: 100%;
  margin-top: 48px;
  padding: 28px;
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.contact-form__header {
  margin-bottom: 24px;
}

.contact-form--submitted .contact-form__header {
  margin-bottom: 0;
}

.contact-form--submitted .contact-form__header .section__desc {
  display: none;
}

.contact-form--submitted .contact-form__alert--success {
  margin-bottom: 0;
}

.contact-form__body {
  overflow: hidden;
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 12px;
}

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

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

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span,
.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.7);
  color: var(--color-text);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__field small,
.contact-form__field-error {
  font-size: 13px;
  color: #ff8d8d;
}

.contact-form__alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
}

.contact-form__alert--success {
  color: #d8f7df;
  background: rgba(35, 110, 63, 0.25);
  border-color: rgba(76, 175, 80, 0.45);
}

.contact-form__alert--error {
  color: #ffd6d6;
  background: rgba(139, 31, 31, 0.25);
  border-color: rgba(244, 67, 54, 0.45);
}

.contact-form__submit {
  margin-top: 24px;
}

.contacts__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.5) 100%),
    url('../images/hero-ring.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts__map-placeholder {
  text-align: center;
  padding: 24px;
}

.contacts__map-placeholder span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.contacts__map-placeholder p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo--footer .logo__text {
  font-size: 18px;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__nav a:hover {
  color: var(--color-accent);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .pricing-info__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 768px) {
  .contact-form {
    padding: 22px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-alt);
    flex-direction: column;
    padding: calc(var(--header-height) + 32px) 32px 32px;
    gap: 0;
    border-left: 1px solid var(--color-border);
    transition: right var(--transition);
  }

  .nav--open {
    right: 0;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle--active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__badge {
    left: 16px;
    bottom: -16px;
  }

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

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

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

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

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

  .hero__stats {
    gap: 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .schedule-table th:nth-child(3),
  .schedule-table td:nth-child(3) {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
