:root {
  --bg: #050707;
  --panel: rgba(22, 24, 25, 0.88);
  --panel-strong: #17191a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(190, 255, 18, 0.5);
  --text: #f5f7f0;
  --muted: #a9aea5;
  --muted-2: #737a70;
  --accent: #bdff14;
  --accent-2: #9dd911;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
  --container: min(100% - clamp(32px, 8vw, 180px), 1680px);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--bg); }
body {
  color: var(--text);
  font-family: "Montserrat", "Arial", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 20%, rgba(188, 255, 20, 0.08), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.06), transparent 30rem),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 120px 120px, 120px 120px;
}
.page-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  opacity: 0.08;
}

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(24px, 3.6vw, 58px) 0 0; }
.section.compact { padding-top: clamp(18px, 2.8vw, 42px); }
.section-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { letter-spacing: -0.045em; line-height: 0.98; }
h2 { font-size: clamp(24px, 2.5vw, 34px); font-weight: 950; }
h3 { font-size: 18px; font-weight: 900; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: clamp(18px, 3vw, 48px); }
.brand { display: grid; gap: 1px; min-width: max-content; }
.brand span { font-size: clamp(24px, 2vw, 33px); line-height: 1; font-weight: 950; letter-spacing: -0.065em; }
.brand strong { color: var(--accent); font-style: italic; }
.brand small { color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 800; letter-spacing: 0.34em; }
.nav { display: flex; align-items: center; gap: clamp(20px, 3.1vw, 56px); font-size: 13px; font-weight: 800; }
.nav a, .footer a, .footer button { color: rgba(255,255,255,0.86); transition: color .25s ease, transform .25s ease; }
.nav a:hover, .footer a:hover, .footer button:hover { color: var(--accent); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 14px; min-width: max-content; }
.phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 900; font-size: 13px; }
.phone svg { color: var(--accent); width: 18px; height: 18px; }
.menu-toggle { display: none; width: 44px; height: 40px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,0.03); color: #fff; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 3px; }
.mobile-nav { border-top: 1px solid var(--line); padding: 10px 18px 18px; background: rgba(5,7,7,.96); }
.mobile-nav a { display: block; padding: 12px 0; color: #fff; font-weight: 850; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 950;
  font-size: 14px;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.16,1,.3,1), border-color .22s, background .22s, color .22s, box-shadow .22s;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #a9ed0c); color: #11180a; box-shadow: 0 12px 34px rgba(184, 255, 20, .18), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-accent:hover { background: linear-gradient(135deg, #d4ff36, var(--accent)); transform: translateY(-2px); }
.btn-outline, .btn-ghost { background: rgba(255,255,255,0.025); color: #fff; border-color: rgba(255,255,255,.72); }
.btn-outline:hover, .btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 16px; border-radius: 9px; font-size: 12px; }
.btn-mini { min-height: 40px; padding: 0 22px; border-radius: 8px; font-size: 12px; }
.btn svg { width: 17px; height: 17px; }
.link-arrow {
  border: 0;
  background: transparent;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow svg { transition: transform .22s ease; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 46%), radial-gradient(circle at 72% 20%, rgba(255,255,255,.075), transparent 36rem);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .94fr) minmax(520px, 1.06fr);
  align-items: stretch;
  min-height: clamp(390px, 30vw, 520px);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 5vw, 86px) 0; max-width: 640px; }
.eyebrow { color: rgba(255,255,255,.58); font-size: 13px; font-weight: 850; letter-spacing: .05em; margin-bottom: 18px; }
h1 { font-size: clamp(48px, 5.05vw, 82px); font-weight: 1000; max-width: 680px; }
h1 span { color: var(--accent); display: inline-block; }
.hero-lead { max-width: 520px; margin-top: 24px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.35vw, 21px); }
.hero-actions { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.05);
  isolation: isolate;
}
.hero-media::before, .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-media::before { background: linear-gradient(90deg, var(--bg) 0%, rgba(5,7,7,.48) 16%, rgba(5,7,7,0) 47%, rgba(5,7,7,.28) 100%); }
.hero-media::after { background: linear-gradient(180deg, rgba(5,7,7,0) 54%, rgba(5,7,7,.68) 100%); }
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(390px, 30vw, 520px);
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) saturate(.86) brightness(.82);
}

.benefits { padding: clamp(34px, 4vw, 58px) 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(22px, 3.4vw, 64px); }
.benefit { min-width: 0; }
.benefit svg { width: clamp(40px, 4vw, 58px); height: clamp(40px, 4vw, 58px); color: var(--accent); margin-bottom: 20px; stroke-width: 1.8; }
.benefit h3 { font-size: clamp(15px, 1.18vw, 19px); margin-bottom: 9px; }
.benefit p { font-size: 13px; max-width: 260px; }

.days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; max-width: 670px; margin-bottom: 18px; }
.days button {
  border: 1px solid rgba(255,255,255,.05);
  background: var(--panel);
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  height: 42px;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}
.days button.active, .days button:hover { background: var(--accent); color: #11180a; border-color: var(--accent); }
.schedule-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.session-card, .price-card, .review-card, .faq-item, .trial-form, .utility-card, .promo-card, .trainer-card {
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow);
}
.session-card {
  min-height: 148px;
  padding: 18px 17px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.time { font-size: 18px; font-weight: 950; color: #fff; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 5px; }
.session-card h3 { font-size: 17px; margin-top: 16px; }
.session-card p { color: rgba(255,255,255,.73); font-size: 13px; margin-top: 7px; }
.pill { display: inline-flex; min-height: 24px; align-items: center; padding: 0 9px; border-radius: 6px; color: #11180a; background: var(--accent); font-size: 11px; font-weight: 950; margin-top: 12px; }
.pill.gray { background: rgba(255,255,255,.18); color: #fff; }

.trainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trainer-card { border-radius: 9px; overflow: hidden; display: grid; grid-template-columns: minmax(126px, 38%) 1fr; min-height: 202px; }
.trainer-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.05); }
.trainer-card div { padding: 28px 24px 20px; min-width: 0; }
.trainer-card h3 { margin-bottom: 10px; }
.trainer-card p { font-size: 13px; min-height: 38px; }
ul { list-style: none; padding: 0; margin: 16px 0 16px; }
li { color: rgba(255,255,255,.82); font-size: 13px; margin: 8px 0; display: flex; align-items: center; gap: 8px; }
li svg { color: var(--accent); width: 16px; height: 16px; stroke-width: 2.6; flex: 0 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; border-radius: 10px; padding: 32px 28px 28px; min-height: 310px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(188,255,20,.5), 0 26px 90px rgba(188,255,20,.08), var(--shadow); }
.badge { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #101707; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 30px; border-radius: 7px; font-size: 11px; font-weight: 1000; }
.price-card h3 { font-size: 24px; }
.price { color: #fff; font-size: clamp(32px, 3vw, 46px); font-weight: 950; letter-spacing: -.06em; margin: 12px 0 2px; }
.price span { color: rgba(255,255,255,.62); font-size: 14px; letter-spacing: 0; }
.price-card .btn { width: 100%; margin-top: auto; }

.promo-card { border-radius: 10px; min-height: 192px; display: grid; grid-template-columns: minmax(230px, 31%) 1fr auto; align-items: center; gap: clamp(24px, 4vw, 70px); overflow: hidden; padding-right: clamp(22px, 5vw, 110px); }
.promo-card img { width: 100%; height: 100%; min-height: 192px; object-fit: cover; object-position: center top; filter: saturate(.85) contrast(1.08); }
.promo-card h2 { margin-bottom: 12px; }
.promo-price { color: #fff; font-size: clamp(22px, 2.5vw, 38px); font-weight: 950; letter-spacing: -.04em; margin-bottom: 8px; }
.promo-price span { color: var(--accent); }

.trial-form { border-radius: 10px; padding: 22px 24px; display: grid; grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, .8fr)) auto; gap: 14px; align-items: start; }
.form-title h2 { font-size: clamp(22px, 2vw, 31px); }
.form-title p { font-size: 13px; margin-top: 8px; }
label { display: grid; gap: 7px; min-width: 0; }
label span { color: rgba(255,255,255,.58); font-size: 0; }
input, select {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.065);
  color: #fff;
  border-radius: 7px;
  padding: 0 17px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select { appearance: auto; color: rgba(255,255,255,.74); }
input:focus, select:focus { border-color: rgba(188,255,20,.78); box-shadow: 0 0 0 3px rgba(188,255,20,.12); background: rgba(255,255,255,.095); }
.consent { grid-column: 2 / -1; color: rgba(255,255,255,.76); display: flex; align-items: center; gap: 8px; font-size: 12px; }
.consent input { width: 15px; height: 15px; accent-color: var(--accent); }
.form-status { grid-column: 2 / -1; color: var(--accent); font-weight: 850; min-height: 18px; font-size: 13px; }

.utility-stack { display: grid; gap: 14px; }
.utility-card { border-radius: 10px; padding: 22px 24px; display: grid; grid-template-columns: auto minmax(230px, 1fr) minmax(320px, 1.1fr) auto; align-items: center; gap: 28px; }
.utility-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 14px; color: var(--accent); background: radial-gradient(circle at 35% 20%, rgba(188,255,20,.32), rgba(188,255,20,.05)); box-shadow: inset 0 0 0 1px rgba(188,255,20,.18); }
.utility-icon svg { width: 36px; height: 36px; }
.utility-card h2 { font-size: clamp(22px, 2vw, 31px); margin-bottom: 7px; }
.utility-card p { font-size: 13px; max-width: 360px; }
.pay-logos { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 42px); color: rgba(255,255,255,.92); font-size: clamp(17px, 1.6vw, 27px); font-weight: 950; letter-spacing: -.04em; }
.pay-logos span:nth-child(1) { color: #2f79ff; }
.pay-logos span:nth-child(2) { color: #ff5e44; }
.pay-logos span:nth-child(3) { color: #45c36b; }
.account-card { grid-template-columns: minmax(230px, .75fr) 1fr auto; }
.account-features { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 18px; }
.account-features span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 750; }
.account-features svg { color: var(--accent); width: 30px; height: 30px; flex: 0 0 auto; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { border-radius: 9px; padding: 22px; display: grid; grid-template-columns: 70px 1fr; gap: 18px; min-height: 126px; }
.review-card img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.84); }
.review-card p { color: rgba(255,255,255,.78); font-size: 13px; margin-bottom: 13px; position: relative; }
.review-card p::before { content: "“"; color: var(--accent); font-size: 38px; line-height: 0; margin-right: 4px; vertical-align: -14px; }
.review-card b { color: #fff; font-size: 13px; }

.faq-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.faq-item { border-radius: 10px; min-height: 118px; padding: 18px 18px 16px; display: grid; align-content: start; gap: 10px; overflow: hidden; }
.faq-item h3 { font-size: 16px; line-height: 1.15; letter-spacing: -.03em; }
.faq-item p { font-size: 13px; color: rgba(255,255,255,.68); }

.footer { margin-top: clamp(34px, 5vw, 80px); padding: 34px 0 42px; border-top: 1px solid var(--line); background: rgba(4, 6, 6, .86); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: clamp(24px, 5vw, 86px); align-items: start; }
.footer h3 { font-size: 13px; letter-spacing: -.02em; margin-bottom: 12px; }
.footer a, .footer p, .footer button { display: block; margin: 7px 0; color: rgba(255,255,255,.74); font-size: 13px; }
.footer button { background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
.footer-brand { margin-bottom: 28px; }
.copy { margin-top: 32px; color: rgba(255,255,255,.46) !important; }
.footer-legal { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.46); font-size: 12px; }
.footer-legal button, .inline-policy { border: 0; background: transparent; color: var(--accent); padding: 0; cursor: pointer; font-weight: 850; text-decoration: underline; text-decoration-color: rgba(188,255,20,.35); text-underline-offset: 3px; }
.inline-policy { display: inline; margin: 0; font-size: inherit; }
.privacy-box { display: grid; gap: 14px; }
.privacy-box h3 { font-size: 17px; margin-top: 6px; }
.privacy-box p { color: rgba(255,255,255,.76); }
.privacy-box a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; display: grid; place-items: center; margin: 0; font-weight: 900; color: rgba(255,255,255,.82); }
.socials a:hover { border-color: var(--accent); }
.to-top { position: fixed; right: 32px; bottom: 32px; z-index: 19; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--accent); background: rgba(5,7,7,.72); color: var(--accent); display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(10px); }
.to-top svg { transform: rotate(-90deg); width: 24px; height: 24px; }

.modal { position: fixed; inset: 0; display: none; z-index: 50; padding: 20px; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(12px); }
.modal-card { position: relative; width: min(860px, calc(100vw - 40px)); max-height: min(86dvh, 900px); overflow: auto; border-radius: 22px; border: 1px solid rgba(255,255,255,.16); background: #111313; box-shadow: 0 30px 120px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.06); }
.modal-card.wide { width: min(1120px, calc(100vw - 40px)); }
.modal-close { position: sticky; top: 14px; float: right; z-index: 3; width: 42px; height: 42px; margin: 14px 14px 0 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.modal-close:hover { color: var(--accent); border-color: var(--accent); }
.modal-content { padding: 34px; clear: both; }
.modal-content h2 { margin-bottom: 16px; }
.modal-content .lead { margin-bottom: 24px; max-width: 680px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-grid label span { font-size: 12px; color: rgba(255,255,255,.68); font-weight: 800; }
.booking-grid .full { grid-column: 1 / -1; }
.booking-grid button { grid-column: 1 / -1; }
.modal-list { display: grid; gap: 12px; margin-top: 18px; }
.modal-row { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); border-radius: 12px; padding: 16px; }
.modal-row b { color: #fff; }
.modal-row span { color: var(--accent); font-weight: 950; }
.modal-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.modal-gallery img { border-radius: 14px; aspect-ratio: 1 / 1.1; object-fit: cover; width: 100%; height: auto; border: 1px solid rgba(255,255,255,.12); }
.compare-table { display: grid; grid-template-columns: 1fr repeat(3, minmax(0, .75fr)); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; }
.compare-table div { padding: 14px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.compare-table div:nth-child(4n) { border-right: 0; }
.compare-table .head { color: #fff; font-weight: 950; background: rgba(255,255,255,.06); }
.compare-table .yes { color: var(--accent); font-weight: 950; }

.reveal { opacity: 0; transform: translateY(14px); animation: reveal .6s cubic-bezier(.16,1,.3,1) forwards; animation-delay: var(--delay, 0ms); }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (min-width: 1900px) {
  :root { --container: min(100% - 220px, 1780px); }
  .hero-grid { grid-template-columns: minmax(520px, .9fr) minmax(680px, 1.1fr); min-height: 560px; }
  .hero-media img { min-height: 560px; object-position: center center; }
  .hero-copy { max-width: 760px; }
}

@media (max-width: 1180px) {
  :root { --container: min(100% - 40px, 1080px); }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions .phone, .header-actions .btn-small { display: none; }
  .hero-grid { grid-template-columns: 1fr 1.05fr; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .trainer-grid, .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
  .trainer-card { grid-template-columns: 220px 1fr; }
  .promo-card { grid-template-columns: 260px 1fr; padding: 0; }
  .promo-card .btn { margin: 0 24px 24px; grid-column: 2; justify-self: start; }
  .utility-card, .account-card { grid-template-columns: 1fr; align-items: start; }
  .pay-logos { justify-content: start; flex-wrap: wrap; }
  .account-features { grid-template-columns: repeat(2, 1fr); }
  .trial-form { grid-template-columns: 1fr 1fr; }
  .form-title { grid-column: 1 / -1; }
  .trial-form .btn { grid-column: span 1; }
  .consent, .form-status { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 760px); }
  .header-inner { min-height: 68px; }
  .brand span { font-size: 24px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 42px 0 28px; max-width: none; }
  .hero-media { min-height: 360px; border-left: 0; border-top: 1px solid rgba(255,255,255,.07); border-radius: 16px 16px 0 0; }
  .hero-media img { min-height: 360px; object-position: center top; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .days { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .section-head { align-items: flex-start; }
  .trainer-card { grid-template-columns: 170px 1fr; }
  .promo-card { grid-template-columns: 1fr; gap: 0; padding: 0 0 22px; }
  .promo-card img { min-height: 260px; max-height: 320px; }
  .promo-copy { padding: 24px; }
  .promo-card .btn { grid-column: 1; margin: 0 24px; justify-self: stretch; }
  .trial-form { grid-template-columns: 1fr; }
  .trial-form .btn { grid-column: 1; }
  .account-features { grid-template-columns: 1fr; }
  .reviews-grid { gap: 12px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-content { padding: 28px 22px 24px; }
  .booking-grid { grid-template-columns: 1fr; }
  .modal-gallery { grid-template-columns: repeat(2, 1fr); }
  .compare-table { grid-template-columns: 1fr 1fr; }
  .compare-table div:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 520px) {
  :root { --container: min(100% - 22px, 430px); }
  body { font-size: 14px; }
  .site-header { position: sticky; }
  .header-inner { gap: 10px; }
  .hero-copy { padding-top: 34px; }
  h1 { font-size: clamp(39px, 13vw, 56px); }
  .hero-actions, .section-head { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 50px; padding-inline: 18px; }
  .hero-media, .hero-media img { min-height: 300px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { display: grid; grid-template-columns: 48px 1fr; gap: 0 16px; }
  .benefit svg { grid-row: span 2; margin-bottom: 0; }
  .schedule-grid, .days { grid-template-columns: 1fr; }
  .days { gap: 7px; }
  .trainer-card { grid-template-columns: 1fr; }
  .trainer-card img { height: 300px; object-position: center top; }
  .price-card { padding: 26px 20px 22px; }
  .promo-card img { min-height: 220px; }
  .utility-card { padding: 20px; gap: 18px; }
  .pay-logos { gap: 14px; font-size: 17px; }
  .review-card { grid-template-columns: 56px 1fr; padding: 18px; }
  .review-card img { width: 56px; height: 56px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
  .to-top { right: 14px; bottom: 14px; width: 46px; height: 46px; }
  .modal { padding: 10px; }
  .modal-card { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 16px; }
  .modal-gallery { grid-template-columns: 1fr; }
  .modal-row { grid-template-columns: 1fr; gap: 6px; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-table div { border-right: 0 !important; }
}
