:root {
  --red: #ff1a0a;
  --red-dark: #d91408;
  --red-soft: rgba(255, 26, 10, 0.12);
  --red-glow: rgba(255, 26, 10, 0.35);
  --black: #080808;
  --gray-900: #141414;
  --gray-800: #222;
  --gray-700: #4a4a4a;
  --gray-500: #8a8a8a;
  --gray-200: #e8e8e8;
  --gray-100: #f3f3f3;
  --white: #ffffff;
  --container-max: 1240px;
  --gutter: 24px;
  --container: min(var(--container-max), calc(100% - var(--gutter) * 2));
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Archivo", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 20px rgba(8, 8, 8, 0.06);
  --shadow: 0 16px 48px rgba(8, 8, 8, 0.1);
  --shadow-md: 0 8px 32px rgba(8, 8, 8, 0.08);
  --shadow-lg: 0 24px 64px rgba(8, 8, 8, 0.12);
  --shadow-red: 0 20px 50px rgba(255, 26, 10, 0.28);
  --shadow-red-sm: 0 8px 28px rgba(255, 26, 10, 0.22);
  --header-h: 76px;
  --hero-h: clamp(560px, calc(100svh - var(--header-h)), 820px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --section-gap: clamp(64px, 8vw, 96px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

/* Display type — только крупные заголовки и цифры */
.section-title,
.hero__title,
.stat__value,
.program-card h3,
.results__intro h3,
.price-card__price,
.cta__content h2,
.lead-form h3,
.schedule h3,
.values h3,
.social h2,
.modal-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.045em;
  line-height: 0.95;
}

.title-sep {
  display: inline-block;
  margin-inline: 0.08em;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.55em;
  color: var(--red);
  letter-spacing: 0;
  vertical-align: middle;
  line-height: 1;
}

.label-caps {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent {
  color: var(--red);
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-title {
  margin: 0 0 52px;
  font-size: clamp(2.35rem, 4.8vw, 3.15rem);
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 42px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 16px var(--red-glow);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: min(100%, 340px);
  height: 8px;
  background:
    linear-gradient(90deg, var(--red) 0%, var(--red) 50%, rgba(255, 26, 10, 0.15) 85%, transparent 100%);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
  border-radius: 2px;
}

.section-title--center {
  display: block;
  text-align: center;
}

.section-title--center::before {
  left: 50%;
  transform: translateX(-50%);
}

.section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 65%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 24px 56px rgba(255, 26, 10, 0.28);
}

.btn--outline {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  flex-shrink: 0;
  border: 1px solid rgba(255, 26, 10, 0.08);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.benefit-chip:hover .icon-badge {
  transform: scale(1.05);
}

.benefit-chip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-chip strong {
  display: block;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.benefit-chip p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.45;
}

.benefit-chip--compact .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.78rem;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--red);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 0.2s var(--ease-out), color 0.2s;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease-out);
}

.link-arrow:hover {
  color: var(--red-dark);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.link-arrow--block {
  margin-top: 12px;
}

.inline-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--red);
  text-decoration: underline;
  cursor: pointer;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(8, 8, 8, 0.06);
  transition: box-shadow 0.25s, background 0.25s;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 32px rgba(8, 8, 8, 0.08);
  border-bottom-color: rgba(255, 26, 10, 0.12);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

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

.logo__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 26, 10, 0.35);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__text strong {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
}

.logo__text small {
  font-size: 0.58rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
}

.logo--light {
  color: var(--white);
}

.logo--light .logo__text small {
  color: rgba(255, 255, 255, 0.65);
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  padding: 6px 0;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  --hero-cut-top: 57%;
  --hero-cut-bottom: 45%;
  --hero-seam: 51%;
  --hero-skew: -8.5deg;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 10, 0.2) 30%, rgba(255, 26, 10, 0.2) 70%, transparent);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: var(--hero-h);
  max-height: var(--hero-h);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero__grid > * {
  grid-area: 1 / 1;
  grid-column: 1 / -1;
  min-height: 0;
}

.hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  top: 50%;
  left: calc(var(--hero-seam) - 9%);
  height: 94%;
  width: auto;
  min-width: calc(100% - var(--hero-seam) + 12%);
  max-width: none;
  object-fit: cover;
  object-position: 58% 12%;
  transform: translateY(-50%);
  filter: contrast(1.1) saturate(1.04) brightness(0.78);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 72%, rgba(8, 8, 8, 0.42) 100%);
  pointer-events: none;
}

.hero__panel {
  position: relative;
  z-index: 2;
  align-self: stretch;
  justify-self: stretch;
  background: var(--white);
  clip-path: polygon(0 0, var(--hero-cut-top) 0, var(--hero-cut-bottom) 100%, 0 100%);
  box-shadow: 8px 0 32px rgba(8, 8, 8, 0.1);
  pointer-events: none;
}

.hero__seam {
  position: relative;
  z-index: 3;
  align-self: stretch;
  justify-self: start;
  width: clamp(56px, 6.5vw, 96px);
  margin-left: calc(var(--hero-seam) - clamp(40px, 4.5vw, 72px));
  pointer-events: none;
  transform: skewY(var(--hero-skew));
  transform-origin: center center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='400' filter='url(%23n)' opacity='0.85'/%3E%3C/svg%3E");
  background-size: 100% 220px;
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.hero__seam::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 1.5px 1px at 32% 8%, rgba(8, 8, 8, 0.45) 0, transparent 100%),
    radial-gradient(ellipse 1px 1.5px at 58% 14%, rgba(255, 26, 10, 0.28) 0, transparent 100%),
    radial-gradient(ellipse 1px 1px at 44% 22%, rgba(8, 8, 8, 0.35) 0, transparent 100%),
    radial-gradient(ellipse 1.5px 1px at 68% 31%, rgba(8, 8, 8, 0.4) 0, transparent 100%),
    radial-gradient(ellipse 1px 1px at 38% 39%, rgba(255, 26, 10, 0.22) 0, transparent 100%),
    radial-gradient(ellipse 1px 1.5px at 52% 47%, rgba(8, 8, 8, 0.38) 0, transparent 100%),
    radial-gradient(ellipse 1.5px 1px at 72% 55%, rgba(8, 8, 8, 0.42) 0, transparent 100%),
    radial-gradient(ellipse 1px 1px at 42% 63%, rgba(8, 8, 8, 0.32) 0, transparent 100%),
    radial-gradient(ellipse 1px 1.5px at 60% 71%, rgba(255, 26, 10, 0.2) 0, transparent 100%),
    radial-gradient(ellipse 1.5px 1px at 34% 79%, rgba(8, 8, 8, 0.4) 0, transparent 100%),
    radial-gradient(ellipse 1px 1px at 66% 87%, rgba(8, 8, 8, 0.36) 0, transparent 100%),
    radial-gradient(ellipse 1px 1.5px at 48% 95%, rgba(255, 26, 10, 0.18) 0, transparent 100%);
  opacity: 0.7;
  pointer-events: none;
}

.hero__seam::after {
  content: "";
  position: absolute;
  inset: 4% 18%;
  background:
    linear-gradient(168deg, transparent 44%, rgba(8, 8, 8, 0.14) 49.5%, transparent 55%),
    linear-gradient(172deg, transparent 62%, rgba(8, 8, 8, 0.1) 67%, transparent 72%),
    linear-gradient(165deg, transparent 28%, rgba(8, 8, 8, 0.12) 33%, transparent 38%);
  opacity: 0.55;
  pointer-events: none;
}

.hero__content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 4;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero__content-shell {
  display: flex;
  align-items: center;
}

.hero__content-inner {
  width: min(640px, calc(var(--hero-cut-bottom) - 2%));
  max-width: 100%;
  padding-block: clamp(36px, 5vw, 64px);
  padding-left: 20px;
  border-left: 4px solid var(--red);
  animation: hero-in 0.9s var(--ease-out) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__eyebrow {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.3;
}

.hero__title {
  margin: 0 0 14px;
  line-height: 0.92;
  text-wrap: balance;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.25rem, 2.4rem + 4.2vw, 6.75rem);
  letter-spacing: 0.035em;
  line-height: 0.92;
}

.hero__title-line--accent {
  color: var(--red);
  margin-top: -0.04em;
}

.hero__subtitle {
  margin: 0 0 28px;
  max-width: 36ch;
  font-size: clamp(0.8125rem, 0.78rem + 0.25vw, 0.875rem);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gray-800);
}

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

.hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.45;
  color: var(--gray-800);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero__features li:hover {
  border-color: rgba(255, 26, 10, 0.15);
  box-shadow: var(--shadow-md);
}

.hero__features svg {
  color: var(--red);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--red-glow));
}

.hero__actions {
  display: grid;
  gap: 14px;
  max-width: 440px;
}

.hero__actions .btn--lg {
  min-height: 58px;
  padding-inline: 36px;
  box-shadow: var(--shadow-red), 0 0 0 1px rgba(255, 26, 10, 0.1);
}

.hero__actions .btn--lg:hover {
  box-shadow: 0 28px 60px rgba(255, 26, 10, 0.35), 0 0 24px rgba(255, 26, 10, 0.15);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.hero__note svg {
  color: var(--black);
  flex-shrink: 0;
}


/* Stats */
.stats {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  border-block: 1px solid rgba(8, 8, 8, 0.06);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 26, 10, 0.06) 0%, transparent 25%, transparent 75%, rgba(255, 26, 10, 0.06) 100%);
  pointer-events: none;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 48px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 26, 10, 0.15);
}

.stat__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--red-soft) 0%, rgba(255, 26, 10, 0.06) 100%);
  color: var(--red);
  flex-shrink: 0;
  border: 1px solid rgba(255, 26, 10, 0.1);
}

.stat__value {
  display: block;
  font-size: 2.15rem;
  color: var(--black);
  letter-spacing: 0.06em;
}

.stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: var(--fw-medium);
  color: var(--gray-700);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* Programs */
.programs {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

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

.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 26, 10, 0.12);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card__media {
  position: relative;
  overflow: hidden;
}

.program-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.45), transparent 55%);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.program-card:hover .program-card__media::after {
  opacity: 0.55;
}

.program-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.program-card:hover .program-card__media img {
  transform: scale(1.06);
}

.program-card h3,
.program-card p,
.program-card .link-arrow {
  padding-inline: 18px;
}

.program-card h3 {
  margin: 16px 0 8px;
  font-size: 1.45rem;
}

.program-card p {
  margin: 0 0 16px;
  flex: 1;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: var(--gray-700);
  line-height: 1.55;
}

.program-card .link-arrow {
  padding-bottom: 20px;
}

/* Results */
.results__panel {
  background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 50%, #eaeaea 100%);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.results__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent 80%);
}

.results__grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 32px;
  align-items: start;
}

.results__intro h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
}

.results__intro p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
}

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

.result-case__photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.result-case__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.result-case__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(8, 8, 8, 0.82);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  border-radius: 6px;
}

.result-case__photo img {
  width: 200%;
  max-width: none;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.result-case__photo--before img {
  margin-left: 0;
}

.result-case__photo--after img {
  margin-left: -100%;
}

.result-case__photo--after .result-case__tag {
  left: auto;
  right: 10px;
}

.result-case__metric {
  text-align: center;
  min-width: 90px;
}

.result-case__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--red);
  text-shadow: 0 0 32px rgba(255, 26, 10, 0.25);
  letter-spacing: 0.04em;
}

.result-case__metric span {
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  color: var(--gray-700);
}

.results__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Benefits strip */
.benefits-strip {
  padding: 52px 0;
  background:
    linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  border-block: 1px solid rgba(8, 8, 8, 0.06);
  position: relative;
}

.benefits-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits-strip .benefit-chip {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.benefits-strip .benefit-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 26, 10, 0.12);
}

.benefits-strip .icon-badge {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red-sm);
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.pricing__layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr minmax(220px, 260px);
  gap: 32px;
  align-items: start;
}

.pricing__benefits {
  display: grid;
  gap: 22px;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 26, 10, 0.1);
}

.price-card:hover::after {
  transform: scaleX(1);
}

.price-card--featured {
  border: 2px solid var(--red);
  transform: translateY(-10px);
  box-shadow: var(--shadow-red);
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 26, 10, 0.02) 100%);
  padding-top: 46px;
}

.price-card--featured::after {
  transform: scaleX(1);
  height: 4px;
}

.price-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 64px rgba(255, 26, 10, 0.32);
}

.price-card__badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 26, 10, 0.35);
}

.price-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.price-card__price {
  margin: 0 0 12px;
  font-size: 2.75rem;
}

.price-card__price--accent {
  color: var(--red);
}

.price-card__desc {
  margin: 0 0 22px;
  font-size: 0.78rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.price-card .btn {
  margin-top: auto;
}

.schedule {
  padding: 26px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}

.schedule h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-size: 1.25rem;
  border-bottom: 2px solid rgba(255, 26, 10, 0.15);
}

.schedule__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 0;
}

.schedule__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(8, 8, 8, 0.08);
}

.schedule__list time {
  font-weight: var(--fw-semibold);
  color: var(--red);
}

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

.trainer-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 26, 10, 0.1);
}

.trainer-card img {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red-soft);
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.12);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.trainer-card:hover img {
  border-color: var(--red);
  box-shadow: 0 16px 36px rgba(255, 26, 10, 0.18);
}

.trainer-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  text-transform: none;
}

.trainer-card p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  color: var(--gray-700);
  line-height: 1.5;
}

.trainers__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* Reviews */
.reviews__slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.review-card {
  padding: 26px 26px 26px 30px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--red-soft);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--red);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review-card p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--gray-700);
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card footer img,
.review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-card footer img {
  object-fit: cover;
}

.review-card__avatar {
  display: block;
  overflow: hidden;
}

.review-card__avatar svg {
  display: block;
  width: 48px;
  height: 48px;
}

.review-card footer strong {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
}

.review-card footer span {
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  color: var(--gray-500);
}

.reviews__nav {
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.reviews__nav:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red-sm);
  transform: scale(1.05);
}

.reviews {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Values */
.values {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.88) 50%, rgba(8, 8, 8, 0.92) 100%),
    url("assets/cta-bg.png") center / cover no-repeat;
  color: var(--white);
  position: relative;
  border-top: 3px solid var(--red);
}

.values::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 26, 10, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.values__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.values article {
  text-align: center;
  padding: 28px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.values article:hover {
  border-color: rgba(255, 26, 10, 0.25);
  transform: translateY(-4px);
}

.values__icon {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  line-height: 0;
}

.values__icon img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.values h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.values p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* CTA */
.cta {
  position: relative;
  padding: 72px 0;
  color: var(--white);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.82) 42%, rgba(8, 8, 8, 0.5) 100%),
    url("assets/cta-bg.png") center / cover no-repeat;
  background-color: var(--black);
}

.cta__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 26, 10, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
}

.cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 40px;
  align-items: start;
}

.cta__content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.cta__content > p {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  line-height: 1.55;
}

.cta__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.cta__benefits li {
  display: flex;
  gap: 18px;
  align-items: center;
}

.cta__benefits .cta__benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 26, 10, 0.16);
  border: 1px solid rgba(255, 26, 10, 0.24);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(255, 26, 10, 0.12);
}

.cta__benefits .cta__benefit-icon svg {
  width: 26px;
  height: 26px;
}

.cta__benefits strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta__benefits span {
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.lead-form {
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  color: var(--black);
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 64px rgba(8, 8, 8, 0.4), 0 0 40px rgba(255, 26, 10, 0.08);
  backdrop-filter: blur(12px);
}

.lead-form h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 10px;
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.lead-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.74rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.lead-form__privacy input {
  width: auto;
  margin-top: 3px;
}

/* Contact bar */
.contact-bar {
  background:
    linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
  color: var(--white);
  padding: 48px 0;
  position: relative;
}

.contact-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 10, 0.4) 50%, transparent);
}

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

.contact-bar article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-bar__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--red);
  background: rgba(255, 26, 10, 0.1);
  border: 1px solid rgba(255, 26, 10, 0.2);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.contact-bar article:hover .contact-bar__icon {
  background: rgba(255, 26, 10, 0.18);
  border-color: rgba(255, 26, 10, 0.35);
}

.contact-bar__icon svg {
  width: 36px;
  height: 36px;
}

.contact-bar strong {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-bar p {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
}

.contact-bar article > div span {
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.55);
}

.contact-bar a {
  color: inherit;
  text-decoration: none;
}

.contact-bar a:hover {
  color: var(--red);
}

/* Social */
.social {
  padding: 52px 0;
  background:
    linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 26, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.social h2 {
  margin: 0 0 28px;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}

.social h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--red);
}

.social__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.social__grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  text-decoration: none;
  color: inherit;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s;
}

.social__label {
  display: block;
  width: 100%;
  text-align: center;
}

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

.social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 0;
  transition: color 0.2s var(--ease-out), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social__grid a:hover .social__icon {
  color: var(--red);
  background: rgba(255, 26, 10, 0.1);
  border-color: rgba(255, 26, 10, 0.3);
  box-shadow: 0 0 24px rgba(255, 26, 10, 0.15);
}

.social__icon svg {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0 32px;
}

.footer__brand p {
  margin: 16px 0 0;
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.55;
  max-width: 280px;
}

.footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__col strong {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__col a,
.footer__link-btn {
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer__col a:hover,
.footer__link-btn:hover {
  color: var(--red);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.74rem;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

/* Modal */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-root[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-card {
  position: relative;
  width: min(820px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.modal-card--wide {
  width: min(1120px, calc(100vw - 40px));
}

.modal-card h2 {
  margin: 0 32px 20px 0;
  font-size: 1.8rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--gray-200);
}

body.modal-open {
  overflow: hidden;
}

.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-form label.full {
  grid-column: 1 / -1;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-grid figcaption {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--gray-700);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
}

.price-table td:last-child {
  white-space: nowrap;
  font-weight: var(--fw-semibold);
  color: var(--red);
}

.schedule-full {
  display: grid;
  gap: 8px;
}

.schedule-full div {
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.86rem;
}

.reviews-modal-list {
  display: grid;
  gap: 16px;
}

.trainers-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.trainer-modal-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
}

.trainer-modal-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.trainer-modal-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.trainer-modal-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.45;
}

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

.program-detail img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.86rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.toast[hidden] {
  display: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .programs__grid,
  .trainers__grid,
  .values__grid,
  .benefits-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews__track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

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

@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

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

  .header__inner > .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    --hero-seam: 100%;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    max-height: none;
  }

  .hero__media {
    grid-area: 1 / 1;
    position: relative;
    height: clamp(320px, 52vw, 440px);
    min-height: 320px;
    max-height: 440px;
  }

  .hero__photo {
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 58% 18%;
    filter: contrast(1.06) saturate(1.04) brightness(0.86);
  }

  .hero__panel,
  .hero__seam {
    display: none;
  }

  .hero__content {
    grid-area: 2 / 1;
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .hero__content-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: var(--gutter);
  }

  .hero__content-inner {
    width: 100%;
    padding-left: 16px;
    border-left-width: 3px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 36px 0;
  }

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

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

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

  .cta__bg {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.78) 100%),
      url("assets/cta-bg.png") center / cover no-repeat;
  }
}

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

  .programs__grid,
  .pricing__cards,
  .trainers__grid,
  .values__grid,
  .benefits-strip__grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .reviews__track {
    grid-auto-columns: 100%;
  }

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

  .reviews__nav {
    display: none;
  }

  .result-case__photos {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .result-case__metric {
    order: -1;
  }

  .result-case__photo {
    width: 100%;
    max-width: 280px;
  }

  .cta__benefits {
    gap: 18px;
  }

  .cta__benefits .cta__benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .cta__benefits .cta__benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-bar__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .modal-form,
  .program-detail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .hero__content-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .program-card:hover,
  .trainer-card:hover,
  .review-card:hover,
  .price-card:hover,
  .stat:hover,
  .benefits-strip .benefit-chip:hover,
  .values article:hover {
    transform: none;
  }
}

@media (min-width: 1025px) {
  .hero__photo {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: max(480px, calc(100vw - var(--hero-cut-bottom)));
    height: 100%;
    min-width: 0;
    max-width: 1280px;
    transform: none;
    object-position: 62% 12%;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1320px;
    --gutter: 40px;
    --hero-layout-w: min(100vw, 1920px);
  }

  .hero__grid {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .hero__photo {
    width: max(520px, calc(var(--hero-layout-w) * 0.55));
    max-width: 1080px;
    object-position: 64% 8%;
  }
}

@media (min-width: 2560px) {
  :root {
    --container-max: 1320px;
  }
}
