/* VB PRO SPORT TENNIS — Lovable-style unified UI */
:root {
  --page-bg: #08080a;
  --panel: #1a1a1f;
  --panel-2: rgba(255, 255, 255, 0.04);
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --link: #d1d5db;
  --link-hover: #ffffff;
  --btn-primary-bg: #f3f4f6;
  --btn-primary-fg: #111827;
  --btn-primary-hover: #ffffff;
  --glow-magenta: rgba(200, 90, 180, 0.12);
  --glow-cyan: rgba(70, 200, 220, 0.08);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --footer-link: #9ca3af;
  --footer-link-hover: #f9fafb;
  --radius-panel: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --max: 1180px;
  --shadow-panel: 0 40px 100px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Кастомный скроллбар — палитра сайта (оранжевый / фиолетовый / индиго) */
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(167, 139, 250, 0.82) rgba(14, 14, 18, 0.98);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: rgba(14, 14, 18, 0.98);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.88) 0%,
    rgba(192, 132, 252, 0.92) 48%,
    rgba(99, 102, 241, 0.9) 100%
  );
  border-radius: 999px;
  border: 2px solid rgba(14, 14, 18, 0.98);
  min-height: 48px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #fb923c 0%,
    #d8b4fe 50%,
    #818cf8 100%
  );
}

::-webkit-scrollbar-corner {
  background: rgba(14, 14, 18, 0.98);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

/* Фиксированные градиентные сферы — не двигаются при скролле */
.page-spheres {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.65;
  transform: translateZ(0);
}

.bg-sphere--1 {
  width: min(120vw, 640px);
  height: min(120vw, 640px);
  left: -18%;
  top: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(236, 72, 153, 0.55) 0%, rgba(168, 85, 200, 0.2) 45%, transparent 68%);
}

.bg-sphere--2 {
  width: min(100vw, 520px);
  height: min(100vw, 520px);
  right: -14%;
  top: 28%;
  background: radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.5) 0%, rgba(79, 70, 229, 0.15) 50%, transparent 70%);
}

.bg-sphere--3 {
  width: min(90vw, 480px);
  height: min(90vw, 480px);
  left: 22%;
  bottom: -12%;
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.22) 0%, rgba(56, 189, 248, 0.08) 55%, transparent 72%);
}

.bg-sphere--4 {
  width: min(70vw, 380px);
  height: min(70vw, 380px);
  left: 48%;
  top: 52%;
  background: radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.35) 0%, rgba(147, 51, 234, 0.1) 50%, transparent 68%);
}

.bg-sphere--5 {
  width: min(85vw, 420px);
  height: min(85vw, 420px);
  left: -6%;
  bottom: 22%;
  background: radial-gradient(circle at 45% 55%, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.06) 55%, transparent 72%);
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-main {
  position: relative;
  z-index: 1;
  padding-top: 1.35rem;
}

@media (min-width: 768px) {
  .site-main {
    padding-top: 1.85rem;
  }
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Shared panel — same family as footer */
.surface-panel {
  background: var(--panel);
  border-radius: var(--radius-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .surface-panel {
    padding: 2.25rem 2.5rem;
  }
}

.surface-panel--hero {
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .surface-panel--hero {
    padding: 2.5rem 2.5rem;
  }
}

.site-main .section {
  padding: 0;
}

.site-main .section.hero {
  padding-top: 0.35rem;
}

/* Секции без полноширинного фона — только контент по сетке */
.site-main .section--flow {
  padding: 2.75rem 0;
}

@media (min-width: 768px) {
  .site-main .section--flow {
    padding: 3.5rem 0;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0 0;
  background: transparent;
}

.header__wrap {
  max-width: min(100% - 2rem, var(--max));
}

.header__panel {
  background: rgba(26, 26, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.65rem 1rem 0.65rem 1.15rem;
}

.header__inner--global {
  grid-template-columns: auto 1fr auto;
}

.header__inner--global .nav--global {
  justify-self: center;
}

.nav__list--global {
  gap: 0.5rem 1.35rem;
}

@media (min-width: 1024px) {
  .nav__list--global {
    gap: 0.5rem 1.75rem;
  }
}

.nav__list--global a {
  font-weight: 600;
  font-size: 0.875rem;
}

.header__lk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.header__lk:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.header__lk--active {
  color: var(--text);
  border-color: rgba(192, 132, 252, 0.45);
  background: rgba(192, 132, 252, 0.1);
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.15);
}

.header__lk-icon {
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .header__inner {
    padding: 0.7rem 1.35rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__muted {
  font-weight: 500;
  color: var(--text-muted);
}

.nav {
  position: relative;
  justify-self: center;
}

.nav__toggle {
  display: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav__list a:hover {
  color: var(--text);
}

.nav__list a.is-active {
  color: var(--text);
  font-weight: 600;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn__arrow {
  flex-shrink: 0;
  opacity: 0.85;
}

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.75rem;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
  text-decoration: none;
  background: var(--btn-primary-hover);
  color: var(--btn-primary-fg);
}

.btn--outline {
  background: transparent;
  color: var(--link);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  text-decoration: none;
  background: var(--panel-2);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--block {
  width: 100%;
}

.header__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text-muted);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.header__avatar:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

@media (max-width: 960px) {
  .header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .header__inner--global {
    grid-template-columns: 1fr auto auto;
  }

  .header__inner--global .nav--global {
    justify-self: end;
  }

  .nav {
    justify-self: end;
    order: 2;
  }

  .header__actions {
    order: 3;
  }

  .header__lk {
    order: 3;
  }

  .header__inner--global .header__lk {
    order: 3;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.4rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list li a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
  }

  .nav__list li a:hover {
    background: var(--panel-2);
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem 2.5rem;
  align-items: center;
}

.hero__copy {
  text-align: left;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__media {
  position: relative;
  border-radius: calc(var(--radius-panel) - 6px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 5.5;
  max-height: min(72vh, 560px);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    max-height: 380px;
    aspect-ratio: 16 / 10;
    order: -1;
  }
}

/* Sections typography */
.section {
  position: relative;
  z-index: 1;
}

.section__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.section__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Why */
.why__head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.why__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why__intro {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

/* Spotlight cards (why / about / services) */
.spotlight-grid {
  display: grid;
  gap: 1rem;
}

.spotlight-grid--why {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .spotlight-grid--why {
    grid-template-columns: 1fr;
  }
}

.spotlight-grid--services {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .spotlight-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .spotlight-grid--services {
    grid-template-columns: 1fr;
  }
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 280px;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spotlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.spotlight-card__media {
  position: absolute;
  inset: 0;
}

.spotlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 10, 18, 0.92) 0%,
    rgba(8, 10, 18, 0.45) 42%,
    rgba(8, 10, 18, 0.12) 100%
  );
  pointer-events: none;
}

.spotlight-card__scrim--deep {
  background: linear-gradient(
    to top,
    rgba(6, 8, 14, 0.95) 0%,
    rgba(6, 8, 14, 0.55) 45%,
    rgba(6, 8, 14, 0.2) 100%
  );
}

.spotlight-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.spotlight-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.35rem;
}

.spotlight-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.spotlight-card__title--lg {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.spotlight-card__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.spotlight-card__subtitle--lead {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.65rem;
}

.spotlight-card__detail {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.spotlight-card__detail:last-child {
  margin-bottom: 0;
}

.spotlight-card__inline-link {
  color: #a5d4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spotlight-card__inline-link:hover {
  color: #cfe8ff;
}

.spotlight-card--about {
  min-height: min(420px, 70vw);
}

.spotlight-card__body--about {
  max-width: 36rem;
}

.spotlight-card--service {
  cursor: pointer;
  min-height: 300px;
}

.spotlight-card--service:focus-within {
  outline: 2px solid rgba(165, 212, 255, 0.9);
  outline-offset: 3px;
}

.spotlight-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.spotlight-card__link:focus {
  outline: none;
}

.spotlight-card__cta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 4;
  pointer-events: none;
}

/* Services */
.services__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.services__head .section__subtitle {
  margin-top: 0.35rem;
}

.services__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.services__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: default;
  user-select: none;
}

.services__pill--active {
  color: #fff;
  background: #12121a;
  border-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 1.35rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: var(--text-muted);
}

.card__badge svg {
  flex-shrink: 0;
}

.card__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.card__text {
  margin: 0 0 0.9rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.55;
}

.card__link {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--link);
}

.card__link:hover {
  color: var(--link-hover);
}

/* Тренеры — карточки (светлый блок на тёмном фоне) */
.coaches__head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-inline: auto;
}

.coaches__intro {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.coaches__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .coaches__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .coaches__grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.coaches {
  scroll-margin-top: 5.5rem;
}

.coach-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.coach-card__photo {
  position: relative;
  aspect-ratio: 3 / 3.6;
  background: linear-gradient(160deg, #5b2d7e 0%, #3d1458 45%, #2a0d40 100%);
  overflow: hidden;
}

.coach-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.coach-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
  color: #111827;
}

.coach-card__name {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
}

.coach-card__stats {
  margin: 0 0 0.85rem;
  padding: 0;
}

.coach-card__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.coach-card__stat dt {
  margin: 0;
  font-weight: 500;
  color: #64748b;
}

.coach-card__stat dd {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.coach-card__desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #334155;
  flex-grow: 1;
}

.coach-card__btn {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #0f172a;
  background: #8ee1ca;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.coach-card__btn:hover {
  background: #7dd4bc;
  color: #0f172a;
  text-decoration: none;
}

.coach-card__btn:active {
  transform: scale(0.98);
}

/* FAQ */
.faq__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq__list {
  max-width: 640px;
  margin-inline: auto;
}

.faq__item {
  padding: 1rem 1.15rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item summary {
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq__item a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact */
.contact__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact__intro .section__title {
  margin-bottom: 0.35rem;
}

.contact__lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9375rem;
}

.contact__phone-label {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact__phone {
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact__phone:hover {
  color: var(--link);
  text-decoration: none;
}

.contact__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  max-width: 26rem;
  font-weight: 400;
  line-height: 1.55;
}

.contact__note a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.form {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

@media (min-width: 769px) {
  .form {
    padding: 1.65rem 1.5rem;
  }
}

.form__field {
  display: block;
  margin-bottom: 1rem;
}

.form__field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form__field input,
.form__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--text-dim);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form__success {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Footer */
.footer-zone {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 2.5rem;
}

.lovable-footer {
  border: none;
}

.footer__panel {
  background: var(--panel);
  border-radius: var(--radius-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
  padding: 2rem 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .footer__panel {
    padding: 2.25rem 2.5rem 1.65rem;
  }
}

.footer__brand-row {
  margin-bottom: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--footer-link-hover);
}

.footer__logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.footer__logo-icon {
  display: flex;
  flex-shrink: 0;
}

.footer__logo-text {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f3f4f6;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.55rem;
}

.footer__list li:last-child {
  margin-bottom: 0;
}

.footer__link {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--footer-link-hover);
  text-decoration: none;
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--footer-link);
}

.footer__lang-icon {
  display: flex;
  color: var(--footer-link);
  opacity: 0.85;
}

.footer__lang-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--footer-link);
  transition: color 0.15s ease;
}

.footer__lang-btn:hover:not(:disabled) {
  color: var(--footer-link-hover);
}

.footer__lang-btn.is-active {
  color: var(--footer-link-hover);
}

.footer__lang-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.footer__lang-sep {
  color: rgba(156, 163, 175, 0.5);
  font-size: 0.75rem;
  user-select: none;
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
}

.footer__copy-link {
  color: #9ca3af;
  text-decoration: none;
}

.footer__copy-link:hover {
  color: #e5e7eb;
  text-decoration: none;
}

/* Страница магазина */
.shop-hero .surface-panel--hero {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .shop-hero .surface-panel--hero {
    padding-bottom: 2.5rem;
  }
}

.shop-hero__inner {
  max-width: 42rem;
}

.shop-hero__lead {
  max-width: none;
}

.shop-hero__lead a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card__list a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-section__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.shop-section__intro {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

.shop-cat-nav-section .shop-section__head {
  margin-bottom: 1.25rem;
}

.shop-cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-cat-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.shop-cat-nav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.shop-cat-nav__link:focus-visible {
  outline: 2px solid rgba(192, 132, 252, 0.65);
  outline-offset: 2px;
}

.shop-category {
  scroll-margin-top: 5.75rem;
}

.shop-category .shop-section__head {
  margin-bottom: 1.5rem;
}

.shop-category__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c084fc;
}

.shop-category--badminton .shop-category__label {
  color: #7dd3fc;
}

.shop-category--table .shop-category__label {
  color: #fcd34d;
}

.shop-category--big .shop-category__label {
  color: #86efac;
}

.shop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .shop-grid--2 {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 901px) {
  .shop-grid--2 .product-card--wide {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

.product-card__tag {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.product-card__tag--accent {
  color: #c084fc;
}

.product-card__price {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.product-card__period {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-card__list {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.product-card__list li {
  margin-bottom: 0.35rem;
}

.product-card__btn {
  margin-top: auto;
}

.product-card--featured {
  border-color: rgba(192, 132, 252, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.12);
}

.shop-note {
  margin: 2rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 40rem;
}

.shop-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Страница расписания */
.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;
}

.schedule-hero__inner {
  max-width: 40rem;
}

.schedule-hero__lead {
  max-width: none;
}

.schedule-toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem 1.75rem;
  margin-bottom: 1.25rem;
}

.schedule-toolbar__col--select {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 auto;
  width: min(100%, 22rem);
}

.schedule-toolbar__col--date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  flex: 0 1 auto;
  min-width: 0;
}

@media (max-width: 720px) {
  .schedule-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-toolbar__col--select {
    width: 100%;
    max-width: 24rem;
  }

  .schedule-toolbar__col--date {
    justify-content: center;
  }
}

.schedule-select-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.schedule-select-wrap {
  position: relative;
  display: block;
}

.schedule-select {
  appearance: none;
  width: 100%;
  max-width: none;
  padding: 0.65rem 2.5rem 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.schedule-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.schedule-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.schedule-select-chevron {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  display: flex;
}

.schedule-select-hint {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.schedule-toolbar__center {
  text-align: center;
  min-width: 12rem;
}

.schedule-toolbar__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.schedule-toolbar__date {
  margin: 0.15rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.schedule-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.schedule-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.schedule-toolbar__today {
  margin-left: 0.25rem;
}

@media (max-width: 520px) {
  .schedule-toolbar__today {
    width: 100%;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.schedule-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.schedule-legend__swatch {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.schedule-legend__item--free .schedule-legend__swatch {
  background: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.35);
}

.schedule-legend__item--busy .schedule-legend__swatch {
  background: rgba(251, 113, 133, 0.4);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.35);
}

.schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem 0.5rem;
}

.schedule-table {
  --schedule-cols: 3;
  min-width: min(100%, calc(7rem + var(--schedule-cols) * 5.5rem));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.schedule-table__row {
  display: grid;
  grid-template-columns: 7rem repeat(var(--schedule-cols, 3), minmax(4.75rem, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-table__row:first-child {
  border-top: none;
}

.schedule-table__row--head {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.schedule-table__corner,
.schedule-table__head-cell {
  padding: 0.65rem 0.75rem;
  text-align: center;
  color: var(--text-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-table__corner {
  text-align: left;
  color: var(--text-dim);
}

.schedule-table__head-cell:last-child {
  border-right: none;
}

.schedule-table__time {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}

.schedule-table__slot {
  padding: 0.45rem 0.5rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
}

.schedule-table__slot:last-child {
  border-right: none;
}

.schedule-table__slot--free {
  background: rgba(52, 211, 153, 0.12);
  color: #a7f3d0;
}

.schedule-table__slot--busy {
  background: rgba(251, 113, 133, 0.14);
  color: #fecdd3;
}

.schedule-table__slot-label {
  pointer-events: none;
}

.schedule-disclaimer {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 48rem;
}

.schedule-disclaimer a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Личный кабинет */
.lk-top {
  padding-bottom: 0;
}

.lk-top__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
}

.lk-top__user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lk-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #a855f7 50%, #6366f1 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  overflow: hidden;
}

.lk-avatar--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lk-top__hello {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lk-top__name {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lk-top__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lk-main-section {
  padding-top: 1.25rem;
}

.lk-tabs-shell {
  padding: 0;
  overflow: hidden;
}

.lk-tablist-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}

.lk-tablist {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem;
  padding: 0.5rem 0.65rem;
  min-width: min-content;
}

@media (min-width: 720px) {
  .lk-tablist {
    flex-wrap: wrap;
    padding: 0.65rem 0.85rem 0.5rem;
  }
}

.lk-tab {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lk-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lk-tab[aria-selected="true"] {
  color: var(--text);
  background: rgba(192, 132, 252, 0.14);
  border-color: rgba(192, 132, 252, 0.35);
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.2);
}

.lk-tab:focus-visible {
  outline: 2px solid rgba(192, 132, 252, 0.65);
  outline-offset: 2px;
}

.lk-tabpanels {
  min-width: 0;
}

.lk-tabpanel {
  padding: 1.35rem 1.5rem 1.65rem;
  outline: none;
}

.lk-tabpanel[hidden] {
  display: none !important;
}

.lk-photo-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-photo__frame {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.3);
}

.lk-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lk-photo__meta {
  flex: 1;
  min-width: 12rem;
}

.lk-photo__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lk-photo__upload {
  cursor: pointer;
  display: inline-flex;
}

.lk-photo__hint {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 22rem;
}

.lk-block__head {
  margin-bottom: 1.25rem;
}

.lk-block__title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lk-block__intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 42rem;
}

.lk-block__intro a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lk-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.25rem;
}

.lk-form__full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .lk-form__grid {
    grid-template-columns: 1fr;
  }
}

.lk-form__footer {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.lk-form__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #a7f3d0;
}

.lk-subhead {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lk-subhead--spaced {
  margin-top: 1.5rem;
}

.lk-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.lk-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.lk-table th,
.lk-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.15);
}

.lk-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.lk-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
}

.lk-badge--ok {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.15);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.25);
}

.lk-badge--wait {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.22);
}

.lk-badge--muted {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.lk-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.lk-footnote--tight {
  margin-top: 1rem;
}

.lk-footnote a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lk-profile-passes {
  margin-top: 1.75rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-profile-passes__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lk-profile-passes__intro {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.lk-pass-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lk-pass-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.lk-pass-card--active {
  border-color: rgba(192, 132, 252, 0.35);
  background: rgba(192, 132, 252, 0.06);
}

.lk-pass-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.lk-pass-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.lk-pass-card__meta {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.lk-pass-card__meta strong {
  color: var(--text);
  font-weight: 600;
}

.lk-progress {
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lk-progress__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #c084fc);
}

.lk-pay-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lk-pay-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-pay-item:first-child {
  padding-top: 0;
}

.lk-pay-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lk-pay-item__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.lk-pay-item__date {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.lk-pay-item__sum {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.lk-settings-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lk-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lk-settings-row:first-child {
  padding-top: 0;
}

.lk-settings-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lk-settings-row__title {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.lk-settings-row__desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lk-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.lk-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lk-switch__ui {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lk-switch__ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.lk-switch input:checked + .lk-switch__ui {
  background: rgba(52, 211, 153, 0.35);
  border-color: rgba(52, 211, 153, 0.45);
}

.lk-switch input:checked + .lk-switch__ui::after {
  transform: translate(1.2rem, -50%);
}

.lk-switch input:focus-visible + .lk-switch__ui {
  outline: 2px solid rgba(192, 132, 252, 0.6);
  outline-offset: 2px;
}

/* Как добраться */
.directions-hero__inner {
  max-width: 40rem;
}

.directions-hero__lead {
  max-width: none;
}

.directions-info {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .directions-info {
    grid-template-columns: 1fr;
  }
}

.directions-card {
  padding: 1.25rem 1.35rem;
}

.directions-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.directions-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.directions-card__text a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.directions-map-wrap {
  margin-top: 0.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.directions-map {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.directions-note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 42rem;
}

.directions-map-block {
  margin-top: 2.5rem;
}

.directions-map-block .section__title {
  margin-bottom: 0.75rem;
}

.directions-map-block__intro {
  margin-bottom: 1rem;
}

.page-directions .hero__lead a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Админ: корты и площадки */
.page-admin .admin-page-head {
  padding: 1.5rem 1.5rem 1.65rem;
  margin-bottom: 1.25rem;
}

.admin-page-head__badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fecdd3;
  background: rgba(251, 113, 133, 0.2);
  border: 1px solid rgba(251, 113, 133, 0.35);
  border-radius: 8px;
}

.admin-page-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.admin-page-head__lead {
  margin: 0 0 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 46rem;
}

.admin-page-head__lead a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-page-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-toast {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: var(--radius-sm);
}

.admin-panel {
  padding: 1.35rem 1.5rem 1.5rem;
  margin-bottom: 1.25rem;
}

.admin-panel__title {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
}

.admin-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.admin-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.2);
}

.admin-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.admin-table__actions {
  white-space: nowrap;
}

.admin-code {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #e9d5ff;
}

.admin-pill {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 6px;
}

.admin-pill--ok {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.12);
}

.admin-pill--off {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.25rem;
}

@media (max-width: 720px) {
  .admin-form__grid {
    grid-template-columns: 1fr;
  }
}

.admin-form__check {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.35rem;
}

.admin-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.admin-checkbox-label input {
  width: 1rem;
  height: 1rem;
  accent-color: #c084fc;
}

.admin-form .form__field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.admin-form .form__field select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.admin-form__footer {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-footer-note {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.admin-footer-note a {
  color: var(--link);
}

.admin-footer-bar {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

/* Виджет чата (нижний правый угол) */
.chat-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 240;
  pointer-events: none;
}

.chat-widget.is-open {
  pointer-events: auto;
}

.chat-widget__overlay {
  position: fixed;
  inset: 0;
  z-index: 238;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.chat-widget.is-open .chat-widget__overlay {
  pointer-events: auto;
  opacity: 1;
}

.chat-widget__fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 241;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  color: #111827;
  background: linear-gradient(135deg, #f97316 0%, #c084fc 55%, #6366f1 100%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__fab:hover {
  transform: scale(1.05);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}

.chat-widget__fab:focus-visible {
  outline: 2px solid rgba(192, 132, 252, 0.9);
  outline-offset: 3px;
}

.chat-widget__fab-icon {
  display: flex;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.chat-widget__panel {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 239;
  width: min(calc(100vw - 2rem), 22rem);
  max-height: min(70vh, 26rem);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.94) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.chat-widget.is-open .chat-widget__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.chat-widget__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.chat-widget__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.chat-widget__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.chat-widget__body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.chat-widget__hint {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.chat-widget__hint a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-widget__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.chat-widget__input {
  width: 100%;
  min-height: 5.5rem;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  resize: vertical;
  box-sizing: border-box;
}

.chat-widget__input:focus {
  outline: none;
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.12);
}

.chat-widget__footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-widget__send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .chat-widget__panel {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    width: calc(100vw - 1.25rem);
    right: max(0.625rem, env(safe-area-inset-right, 0px));
  }

  .chat-widget__fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }
}
