:root {
  /* FC Stuttgart-like vibe: black / yellow / white (+ red as optional accent) */
  --black: #000000;
  --bg: #0b0c0f;
  --bg2: #101218;

  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);

  --yellow: #ffdc00;
  --yellow2: #ffe65a;

  --red: #d40723; /* optional */

  --card: #121521;
  --card2: #0f1117;
  --line: rgba(255, 255, 255, 0.14);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --max: 1120px;
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07080b 0%, #0b0c10 60%, #07080b 100%);
  -webkit-text-size-adjust: 100%;
}

/* выделение текста (чтобы в textarea и на странице было видно) */
::selection {
  background: rgba(255, 220, 0, 0.35);
  color: rgba(0, 0, 0, 0.95);
}

body {
  position: relative;
}

body.isLocked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      900px 520px at 12% 12%,
      rgba(255, 220, 0, 0.05),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 88% 18%,
      rgba(255, 220, 0, 0.035),
      transparent 62%
    );
}

/* Фоновые мячи — ВАЖНО: низкая непрозрачность */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("./assets/ball.svg") 40px 20px / 520px 520px repeat;

  opacity: 0.45;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 86px;
}

/* ===== Skip link ===== */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: #000;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 220, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(255, 220, 0, 0.22);
}

.brand__name {
  font-size: 15px;
  opacity: 0.95;
}

.nav {
  position: relative;
}

.nav__burger {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.9);
}
.nav__list a:hover {
  text-decoration: none;
  border-color: rgba(255, 220, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.nav__cta {
  border-color: rgba(255, 220, 0, 0.35) !important;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  opacity: 0.95;
}
.phone:hover {
  text-decoration: none;
  color: var(--yellow);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.15px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.22);
  border-color: rgba(255, 220, 0, 0.35);
}

.btn--primary {
  background: var(--yellow);
  color: #000;
  border-color: rgba(255, 220, 0, 0.6);
  box-shadow: 0 18px 42px rgba(255, 220, 0, 0.22);
}
.btn--primary:hover {
  background: var(--yellow2);
  box-shadow: 0 22px 60px rgba(255, 220, 0, 0.26);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 220, 0, 0.35);
}
.btn--outline:hover {
  background: rgba(255, 220, 0, 0.1);
  border-color: rgba(255, 220, 0, 0.5);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  opacity: 0.9;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--small {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 1000;
}

/* ===== Hero ===== */
.hero {
  padding: 44px 0 20px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 220, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
}
.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.2);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.3px;
}
.hl {
  color: var(--yellow);
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero__stats li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.04);
}
.hero__stats strong {
  font-size: 18px;
  display: block;
  color: rgba(255, 255, 255, 0.96);
}
.hero__stats span {
  color: var(--muted);
  font-size: 13px;
}

/* Right hero */
.hero__right {
  display: grid;
  gap: 12px;
}

.hero__visual {
  border: 1px solid rgba(255, 220, 0, 0.22);
  border-radius: var(--radius);
  min-height: 260px;
  background:
    linear-gradient(120deg, rgba(255, 220, 0, 0.2), transparent 52%),
    url("./assets/ball.svg") right -72px bottom -82px / 330px 330px no-repeat,
    linear-gradient(145deg, #171a22 0%, #090a0e 68%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
}
.hero__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__visualKicker,
.hero__visual strong {
  position: absolute;
  left: 24px;
  z-index: 1;
}
.hero__visualKicker {
  top: 24px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 1000;
}
.hero__visual strong {
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
  color: rgba(255, 255, 255, 0.96);
  font-size: 28px;
  line-height: 1.08;
}

.hero__panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 16px;
}
.hero__panel h3 {
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}

.ctaStrip {
  margin: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 220, 0, 0.25);
  background: rgba(0, 0, 0, 0.35);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ctaStrip__title {
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Sections ===== */
.section {
  padding: 52px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head {
  margin: 0 0 18px;
}
.section__head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.2px;
  position: relative;
  display: inline-block;
}
.section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 58%;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0.9;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  padding: 16px;
  box-shadow: var(--shadow);
  transition:
    transform 0.9s ease,
    border-color 0.1s ease,
    box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 220, 0, 0.7);
  opacity: 0.55;
}
.card {
  transition:
    box-shadow 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease;
}

.card:hover {
  border-color: rgba(255, 220, 0, 0.25);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.65);
}
.card h3 {
  margin: 0 0 8px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card__top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 220, 0, 0.12);
  border: 1px solid rgba(255, 220, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  font-size: 12px;
}

.card.person {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-weight: 1000;
  flex: 0 0 auto;
}

.card--tight {
  padding: 14px;
}
.card--accent {
  border-color: rgba(255, 220, 0, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 220, 0, 0.12),
    rgba(255, 255, 255, 0.03)
  );
}
.link {
  display: inline-block;
  margin-top: 10px;
  color: var(--yellow);
  font-weight: 900;
}
.link:hover {
  text-decoration: none;
  opacity: 0.92;
}

/* ===== Check list ===== */
.check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.check li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.12);
}

/* ===== Table ===== */
.scheduleTools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.scheduleFilter {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}
.scheduleFilter:hover,
.scheduleFilter.isActive {
  background: var(--yellow);
  color: #000;
  border-color: rgba(255, 220, 0, 0.72);
}
.scheduleFilter:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.2);
}
.tableWrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: rgba(255, 255, 255, 0.03);
}
.tableWrap:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.16);
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.table th,
.table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
}
.table th {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.04);
}
.table tbody tr:hover {
  background: rgba(255, 220, 0, 0.06);
}
.table tr[hidden] {
  display: none !important;
}
.scheduleType {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 220, 0, 0.14);
  border: 1px solid rgba(255, 220, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 1000;
}
.scheduleType--personal {
  background: rgba(255, 255, 255, 0.08);
}
.mapLink {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 220, 0, 0.45);
  text-underline-offset: 3px;
}
.mapLink:hover {
  color: var(--yellow);
}
.scheduleNote {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(255, 220, 0, 0.34);
  border-radius: 16px;
  background: rgba(255, 220, 0, 0.06);
  color: var(--muted);
}
.scheduleNote strong {
  color: rgba(255, 255, 255, 0.95);
}

/* ===== Note ===== */
.note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(255, 220, 0, 0.35);
  border-radius: 16px;
  background: rgba(255, 220, 0, 0.06);
  color: rgba(255, 255, 255, 0.78);
}
.note strong {
  color: rgba(255, 255, 255, 0.95);
}

/* ===== Prices ===== */
.price__value {
  margin: 10px 0 12px;
  font-size: 28px;
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.96);
}
.price__badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}
.price--best {
  border-color: rgba(255, 220, 0, 0.5);
}
.price__badge--best {
  border-color: rgba(255, 220, 0, 0.4);
  background: rgba(255, 220, 0, 0.12);
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.95);
}
.faq__item p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* ===== Contact ===== */
.contactGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.contactList {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.contactList span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 1000;
}
.contactBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ===== Form ===== */
.form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.form__row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
label span {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 1000;
  font-size: 13px;
}
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
input:focus,
textarea:focus {
  border-color: rgba(255, 220, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.18);
}

/* ===== Footer ===== */
.footer {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
}
.toTop {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 220, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.toTop:hover {
  text-decoration: none;
  background: rgba(255, 220, 0, 0.12);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.modal[aria-hidden="false"] {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.modal__panel {
  position: relative;
  width: min(520px, calc(100% - 24px));
  margin: 10vh auto 0;
  max-height: calc(100dvh - 24px);
  overflow: auto;
  border: 1px solid rgba(255, 220, 0, 0.22);
  border-radius: 20px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 16px;
}
.modal__panel h3 {
  margin: 0 0 8px;
}
.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  cursor: pointer;
}
.modal__close:hover {
  border-color: rgba(255, 220, 0, 0.25);
}

/* ===== Bottom sheet ===== */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.sheet[aria-hidden="false"] {
  display: block;
}

.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.sheet__panel {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 0, 0.28);
  background: rgba(10, 10, 12, 0.985); /* почти непрозрачная => читабельно */
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  padding: 12px;
}

.sheet__grab {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin: 4px auto 10px;
}

.sheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.sheet__title {
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 3px;
}
.sheet__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.sheet__x {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.sheet__x:hover {
  border-color: rgba(255, 220, 0, 0.22);
  background: rgba(255, 220, 0, 0.1);
}

.sheet__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.sheet__btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 1000;
}
.sheet__btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.sheet__btn--vk {
  border-color: rgba(255, 220, 0, 0.45);
  background: rgba(255, 220, 0, 0.2);
  color: #000;
}
.sheet__btn--vk:hover {
  background: rgba(255, 220, 0, 0.26);
}

.sheet__btn--copy {
  border-color: rgba(255, 220, 0, 0.28);
}

/* состояние после копирования (под JS) */
.sheet__btn--copy.isCopied {
  border-color: rgba(255, 220, 0, 0.65);
  background: rgba(255, 220, 0, 0.22);
  color: #000;
}

.sheet__msg {
  width: 100%;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 220, 0, 0.32);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.98);

  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.15px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);

  resize: none;
  outline: none;
  max-height: 160px;
}
.sheet__msg:focus {
  outline: none;
  border-color: rgba(255, 220, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 220, 0, 0.16);
}

.sheet__hint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.sheet__btn {
  min-height: 46px;
  border-radius: 14px;
  font-weight: 1000;
  letter-spacing: 0.2px;
}

.sheet__btn--vk {
  background: var(--yellow) !important;
  color: #000 !important;
  border-color: rgba(255, 220, 0, 0.7) !important;
  box-shadow: 0 14px 34px rgba(255, 220, 0, 0.18);
}
.sheet__btn--vk:hover {
  background: var(--yellow2) !important;
  box-shadow: 0 18px 46px rgba(255, 220, 0, 0.22);
}

.sheet__btn--tg {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 220, 0, 0.35) !important;
}
.sheet__btn--tg:hover {
  background: rgba(255, 220, 0, 0.1) !important;
  border-color: rgba(255, 220, 0, 0.55) !important;
}

.sheet__btn--copy {
  background: rgba(255, 220, 0, 0.18) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 220, 0, 0.35) !important;
}
.sheet__btn--copy:hover {
  background: rgba(255, 220, 0, 0.24) !important;
  border-color: rgba(255, 220, 0, 0.55) !important;
}

.sheet__btn--copy.isCopied {
  background: var(--yellow) !important;
  color: #000 !important;
  border-color: rgba(255, 220, 0, 0.75) !important;
}

.mobileActions {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1040px) {
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .cards,
  .cards--3 {
    grid-template-columns: 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .hero {
    padding: 28px 0 12px;
  }
  h1 {
    font-size: 31px;
    line-height: 1.06;
  }
  .lead {
    font-size: 15px;
    line-height: 1.55;
  }
  .hero__actions {
    gap: 8px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 210px;
  }
  .hero__visual strong {
    font-size: 24px;
  }
  .section {
    padding: 38px 0;
  }
  .header__right {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .nav__list {
    position: absolute;
    right: 0;
    top: 56px;
    width: min(320px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 220, 0, 0.18);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: none;
  }
  .nav__list.isOpen {
    display: flex;
  }
  .nav__list a {
    width: 100%;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .tableWrap {
    border: 0;
    overflow: visible;
    background: transparent;
  }
  .table {
    display: block;
    min-width: 0;
  }
  .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .table tbody {
    display: grid;
    gap: 10px;
  }
  .table tr {
    display: grid;
    gap: 9px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }
  .table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .table td {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 0;
    border: 0;
  }
  .table td::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-weight: 900;
  }
  .table td.schedulePlace {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .mobileActions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 220, 0, 0.22);
    border-radius: 18px;
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.5);
  }
  .mobileActions__btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 220, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 1000;
    cursor: pointer;
  }
  .mobileActions__btn:hover {
    text-decoration: none;
  }
  .mobileActions__btn--primary {
    background: var(--yellow);
    color: #000;
    border-color: rgba(255, 220, 0, 0.7);
  }
}
@media (max-width: 520px) {
  .badge {
    align-items: flex-start;
    border-radius: 16px;
  }
  .cards--4 {
    grid-template-columns: 1fr;
  }
  .scheduleTools {
    display: grid;
    grid-template-columns: 1fr;
  }
  .modal__panel {
    margin: 12px auto 0;
  }
  .sheet__panel {
    bottom: 0;
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
  .sheet__actions {
    grid-template-columns: 1fr;
  }
  .sheet__msg {
    font-size: 16px;
  } /* на мобиле лучше не мельчить */
}
