:root {
  --bg: #0a0a0b;
  --bg-header: #0d0d0e;
  --red: #e2222c;
  --red-dark: #b6141d;
  --white: #ffffff;
  --green: #45c47d;
  --gray: #9a9a9f;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.logo__n1 {
  font-size: 26px;
  color: var(--red);
}
.logo__text {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

/* Nav (desktop) */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 30px;
  margin-right: auto;
}
.nav__link {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--icon { display: flex; align-items: center; color: var(--white); }

/* Right actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  white-space: nowrap;
}
/* Соцмережі в хедері */
.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  margin-right: -6px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.social:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  transform: scale(1.05);
}

.call-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.call-btn:hover {
  background: rgba(226,34,44,0.12);
  transform: scale(1.05);
}
.call-btn__emoji {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transform-origin: 50% 62%;
  animation: callRing 5s ease-in-out infinite;
}

/* легке погойдування "дзвінка" з довгою паузою між заходами */
@keyframes callRing {
  0%, 14%, 100% { transform: rotate(0deg); }
  3%            { transform: rotate(-7deg); }
  6%            { transform: rotate(6deg); }
  9%            { transform: rotate(-4deg); }
  12%           { transform: rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .call-btn__emoji { animation: none; }
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-header);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 24px 20px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile__link {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile__phone {
  margin-top: 16px;
  text-align: center;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  padding: 12px;
  border: 1.5px solid var(--red);
  border-radius: 10px;
}

.nav-mobile__socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.nav-mobile__social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.nav-mobile__social:hover { background: rgba(255,255,255,0.06); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav { display: none; }
  .phone { display: none; }
  .socials { display: none; }   /* переїжджають у мобільне меню */
  .burger { display: flex; }
  .header__inner { gap: 16px; padding: 0 16px; }
}

@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .logo__n1 { font-size: 22px; }
  .logo__text { font-size: 12px; }
  .call-btn { width: 42px; height: 42px; }
}

main {
  min-height: calc(100vh - var(--header-h));
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 24px 88px;
  background: var(--bg);
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero__main {
  flex: 1 1 auto;
  min-width: 0;
}

.hero__title {
  font-size: clamp(30px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 720px;
  margin-bottom: 32px;
}

/* ===== PLACE CARD (Google Maps style) ===== */
.place-card {
  flex: 0 0 400px;
  background: #202124;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.35);
}

.place-card__map {
  position: relative;
  height: 210px;
}
.place-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(92%) hue-rotate(180deg) brightness(0.92) contrast(0.95) saturate(0.7);
}

.place-card__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}
.place-card__marker-pulse {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: rgba(226,34,44,0.55);
  animation: markerPulse 2s ease-out infinite;
}
@keyframes markerPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Адреса — окремим блоком над картою */
.place-card__addr {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.place-card__addr span {
  font-weight: 600;
  color: #9aa0a6;
}

.place-card__place-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 8px);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 8px rgba(0,0,0,0.8);
  pointer-events: none;
}

.place-card__body { padding: 16px 18px 18px; }

.place-card__hours { margin-bottom: 10px; }
.place-card__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #9aa0a6;
  padding: 3px 0;
}
.place-card__hours-row span:last-child { color: #e8eaed; font-weight: 700; }

.place-card__status {
  font-size: 13px;
  font-weight: 500;
  color: #9aa0a6;
  margin-bottom: 16px;
}
.place-card__status .is-open { color: var(--green); font-weight: 700; }
.place-card__status .is-closed { color: var(--red); font-weight: 700; }

.place-card__actions {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.place-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  font-family: inherit;
}
.place-action__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  color: #e8eaed;
  transition: background 0.15s ease;
}
.place-action:hover .place-action__icon { background: rgba(255,255,255,0.08); }

.place-action--primary .place-action__icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.place-action--primary:hover .place-action__icon { background: var(--red-dark); }

.place-action__label {
  font-size: 12px;
  font-weight: 600;
  color: #9aa0a6;
}

/* Lead form */
.lead-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 560px;
}

.lead-form__input {
  flex: 1 1 105px;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-form__input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form__input:focus { border-color: var(--red); background: rgba(255,255,255,0.05); }

/* Phone field with static +380 prefix */
.phone-field {
  flex: 0 1 205px;
  min-width: 195px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0 20px;
  transition: border-color 0.2s ease;
}
.phone-field:hover { border-color: var(--green); }
.phone-field:focus-within {
  border-color: var(--green);
  background: rgba(255,255,255,0.05);
}
.phone-field__prefix {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-right: 5px;
  flex-shrink: 0;
}

.phone-field__entry {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
}
.phone-field__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  white-space: pre;
}
.phone-field__ghost-typed { color: transparent; }
.phone-field__ghost-rest { color: rgba(255,255,255,0.26); }
/* риска-каретка під наступною позицією для цифри */
.phone-field__next {
  position: relative;
  color: rgba(255,255,255,0.26);
}
.phone-field__next::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 17px;
  border-radius: 2px;
  background: var(--gray);
  animation: phoneCaretBlink 1.06s steps(1, end) infinite;
}

@keyframes phoneCaretBlink {
  0%, 50%      { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-field__next::after { animation: none; }
}

.phone-field__input {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  caret-color: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 0;
}

/* Time picker */
.time-field {
  position: relative;
  flex: 1 1 125px;
  min-width: 0;
  display: flex;
}
.time-field__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.time-field__trigger:hover,
.time-field.is-open .time-field__trigger {
  border-color: var(--green);
}

.time-picker {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 260px;
  max-width: 90vw;
  background: #17171a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 20;
}

.time-picker__list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.time-picker__list::-webkit-scrollbar { width: 6px; }
.time-picker__list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.time-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.time-option:hover { background: rgba(255,255,255,0.08); }
.time-option.is-active {
  background: rgba(226,34,44,0.14);
  box-shadow: inset 3px 0 0 var(--red);
}

.time-option__group {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--gray);
  padding: 14px 14px 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 6px;
}
.time-option__group:first-child { border-top: none; margin-top: 0; }

.lead-form__select-wrap {
  position: relative;
  flex: 1 1 210px;
  display: flex;
}
.lead-form__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.lead-form__select option {
  background: #171718;
  color: var(--white);
}
.lead-form__select-caret {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  pointer-events: none;
}

.lead-form__submit {
  flex: 0 0 auto;
  white-space: nowrap;
  background: var(--green);
  border: 1.5px solid var(--green);
  color: #06140d;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.lead-form__submit:hover {
  transform: translateY(-1px);
}
.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

/* ===== МОДАЛКА ЗАПИСУ ===== */
body.is-modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,5,0.78);
  backdrop-filter: blur(3px);
  animation: modalFade 0.18s ease;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #131315;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 30px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  animation: modalIn 0.22s cubic-bezier(0.2, 0.8, 0.3, 1);
}

@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop,
  .modal__dialog { animation: none; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 50%;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.modal__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-right: 30px;
}

/* форма всередині модалки — у стовпчик */
.lead-form--modal {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: none;
  gap: 12px;
}
.lead-form--modal .phone-field,
.lead-form--modal .time-field,
.lead-form--modal .lead-form__submit {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
}
.lead-form--modal .phone-field { padding: 3px 20px; }
.lead-form--modal .time-picker { width: 100%; }
.lead-form--modal .lead-form__submit { padding: 15px 24px; }

.lead-form__hint {
  margin-top: 16px;
  max-width: 560px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray);
}

.lead-form__status {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  min-height: 20px;
}
.lead-form__status--ok { color: #38d976; }
.lead-form__status--err { color: var(--red); }

/* ===== PAGE HEAD (внутрішні сторінки) ===== */
.page-head {
  padding: 64px 24px 40px;
  background: var(--bg);
}
.page-head__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-head__title {
  position: relative;
  display: inline-block;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.page-head__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--red);
}
.page-head__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray);
  max-width: 620px;
}
.page-head__text strong {
  color: var(--white);
  font-weight: 800;
}
.page-head__jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #f6dd8c;
  border: 1.5px solid rgba(185,138,42,0.55);
  border-radius: 999px;
  padding: 12px 24px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.page-head__jump:hover {
  background: rgba(185,138,42,0.14);
  border-color: #e8c56a;
}
.page-head__jump svg { flex: none; }

/* ===== PRICES ===== */
.prices {
  padding: 20px 24px 100px;
  background: var(--bg);
}
.prices__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.price-block { margin-bottom: 44px; }
.price-block:last-of-type { margin-bottom: 34px; }
.price-block__lead {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray);
  margin: -8px 0 20px;
  padding-left: 14px;
}
.price-block__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}

/* --- Комплекси (пакети) --- */
.packs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #131315;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 26px 26px 24px;
}
/* Базовий: статична срібна рамка */
.pack--silver {
  border-color: transparent;
  z-index: 0;
  box-shadow: 0 16px 44px -30px rgba(201,206,214,0.35);
}
.pack--silver::before,
.pack--silver::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: inherit;
}
.pack--silver::before {
  inset: -1.5px;
  border-radius: 19.5px;
  background: linear-gradient(135deg, #5a5f66 0%, #c9ced6 22%, #f2f5f8 34%, #8f959d 50%, #c9ced6 72%, #5a5f66 100%);
}
.pack--silver::after {
  inset: 0;
  background: #131315;
}

.pack__badge {
  position: absolute;
  top: -11px;
  left: 26px;
  z-index: 2;
  background: var(--green);
  color: #06140d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.pack__tag {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--gray);
}
.pack__desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray);
  margin-bottom: 22px;
}

.pack__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pack__name {
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pack__price {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.pack__from {
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--gray);
  margin-right: 6px;
}
.pack__cur {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  margin-left: 3px;
}

.pack__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}
.pack__col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--green);
  margin-bottom: 12px;
}
.pack__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pack__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gray);
}
.pack__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.pack__btn {
  margin-top: auto;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--green);
  color: #06140d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}
.pack__btn:hover { transform: translateY(-1px); }

@media (max-width: 900px) {
  .packs { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pack { padding: 24px 20px 22px; }
  .pack__cols { grid-template-columns: 1fr; gap: 20px; }
  .pack__btn { align-self: stretch; text-align: center; }
}

.price-table {
  background: #131315;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.price-table__head,
.price-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 15px 22px;
  align-items: center;
}
.price-table__head span:last-child,
.price-table__row span:last-child { text-align: right; }

.price-table__head {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s ease;
}
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background: rgba(255,255,255,0.025); }

.price-table__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.price-table__desc {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.45;
  color: var(--gray);
}
.price-table__val {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.prices__note {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray);
  padding-left: 14px;
  border-left: 2px solid rgba(226,34,44,0.5);
  margin-bottom: 40px;
}

.prices__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.prices__cta-primary {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--green);
  color: #06140d;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}
.prices__cta-primary:hover { transform: translateY(-1px); }

.prices__cta-secondary {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  padding: 16px 34px;
  transition: background 0.15s ease;
}
.prices__cta-secondary:hover { background: rgba(226,34,44,0.12); }

@media (max-width: 560px) {
  .price-table__head { display: none; }
  .price-table__head,
  .price-table__row { padding: 15px 18px; gap: 14px; }
  .price-table__name { font-size: 14px; }
  .price-table__val { font-size: 14px; white-space: nowrap; }
}

@media (max-width: 560px) {
  .page-head { padding: 48px 16px 32px; }
  .prices { padding: 16px 16px 72px; }
  .prices__cta-primary,
  .prices__cta-secondary { flex: 1 1 100%; text-align: center; }
}

/* ===== VIP ПОСЛУГИ ===== */
@property --gold-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.vip {
  position: relative;
  isolation: isolate;
  padding: 58px 24px 82px;
  background: var(--bg);
  border-top: 1px solid rgba(185,138,42,0.22);
  border-bottom: 1px solid rgba(185,138,42,0.22);
  overflow: hidden;
}
.vip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(185,138,42,0.22), rgba(10,10,11,0) 70%),
    radial-gradient(90% 70% at 50% 120%, rgba(185,138,42,0.10), rgba(10,10,11,0) 70%);
  animation: vipAmbience 7s ease-in-out infinite;
}

@keyframes vipAmbience {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}

.vip__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.vip__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.vip__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  background: linear-gradient(96deg, #c69a34, #f6dd8c 40%, #fff6d8 52%, #d9b155 70%, #b98a2a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vip__lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray);
}

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

.vip-card {
  --gold-angle: 0deg;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  padding: 28px 26px 26px;
  transition: transform 0.25s ease;
}
.vip-card::before,
.vip-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: inherit;
}
.vip-card::before {
  inset: -1.5px;
  border-radius: 19.5px;
  background: conic-gradient(
    from var(--gold-angle),
    #57400f, #b98a2a, #f6dd8c, #fff6d8, #f6dd8c, #b98a2a, #57400f, #b98a2a, #57400f
  );
  animation: goldSpin 9s linear infinite;
}
.vip-card::after {
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(185,138,42,0.14), rgba(19,19,21,0) 62%),
    #131315;
}
.vip-card:nth-child(2)::before { animation-delay: -3s; }
.vip-card:nth-child(3)::before { animation-delay: -6s; }
.vip-card:hover { transform: translateY(-3px); }

@keyframes goldSpin {
  to { --gold-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .vip::before,
  .vip-card::before { animation: none; }
  .vip-card:hover { transform: none; }
}

.vip-card__name {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}
.vip-card__desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 20px;
}
.vip-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid rgba(185,138,42,0.28);
  margin-bottom: 26px;
}
.vip-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #cfcfd4;
}
.vip-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #e8c56a;
  border-bottom: 2px solid #e8c56a;
  transform: rotate(-45deg);
}

.vip-card__foot {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vip-card__price {
  font-size: 22px;
  font-weight: 900;
  color: #f6dd8c;
  white-space: nowrap;
}
.vip-card__price span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-right: 5px;
}
.vip-card__btn {
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #f6dd8c;
  border: 1.5px solid rgba(185,138,42,0.6);
  border-radius: 999px;
  padding: 11px 22px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.vip-card__btn:hover {
  background: rgba(185,138,42,0.15);
  border-color: #e8c56a;
}

.vip__note {
  max-width: 780px;
  margin: 34px auto 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--gray);
  text-align: center;
}
.vip__note strong {
  color: #e8c56a;
  font-weight: 800;
}

.prices--packs { padding-bottom: 48px; }
.prices--tail { padding-top: 78px; }

@media (max-width: 980px) {
  .vip__grid { grid-template-columns: repeat(2, 1fr); }
  .vip-card--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .vip { padding: 56px 16px 64px; }
  .vip__grid { grid-template-columns: 1fr; }
  .vip-card--wide { grid-column: auto; }
  .vip-card { padding: 24px 20px 22px; }
  .vip-card__foot { gap: 14px; }
  .vip-card__btn { flex: 1 1 auto; text-align: center; }
  .prices--packs { padding-bottom: 34px; }
  .prices--tail { padding-top: 56px; }
}

/* ===== SERVICES ===== */
.services {
  padding: 90px 24px 100px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.services__title {
  position: relative;
  display: inline-block;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.services__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  margin-left: -32px;
  background: var(--red);
}

.services__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 48px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
  text-align: left;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #131315;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,34,44,0.6);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 22px 20px 26px;
}
.service-card__title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray);
}

.services__cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  padding: 15px 38px;
  transition: background 0.15s ease;
}
.services__cta:hover { background: rgba(226,34,44,0.12); }

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services { padding: 64px 16px 72px; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .services__subtitle br { display: none; }
}

@media (max-width: 1080px) {
  .hero__inner { flex-direction: column; align-items: stretch; gap: 36px; }
  .place-card { flex: 1 1 auto; max-width: 440px; }
}

@media (max-width: 700px) {
  .hero { padding: 56px 16px 72px; }
  .lead-form { flex-wrap: wrap; }
  .lead-form__input,
  .phone-field,
  .time-field,
  .lead-form__submit { flex: 1 1 100%; min-width: 0; }
  .place-card { max-width: none; }
  .place-card__addr { white-space: normal; font-size: 13px; }
}

/* ===== КОНТАКТИ ===== */
.contacts {
  padding: 90px 24px 100px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contacts__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contacts__title {
  position: relative;
  display: inline-block;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 34px;
}
.contacts__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--red);
}

.contacts__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-row__icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--red);
  background: rgba(226,34,44,0.1);
  border: 1px solid rgba(226,34,44,0.28);
}
.contact-row__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
  min-width: 0;
}
.contact-row__link {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  word-break: break-word;
  transition: color 0.15s ease;
}
.contact-row__link:hover { color: var(--red); }
.contact-row__strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}
.contact-row__note {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray);
}

.contacts__cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--green);
  color: #06140d;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 999px;
  transition: transform 0.15s ease;
}
.contacts__cta:hover { transform: translateY(-1px); }

.contacts__media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #131315;
  border: 1px solid rgba(255,255,255,0.08);
}
.contacts__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .contacts__inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts__media { order: -1; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .contacts { padding: 64px 16px 76px; }
  .contacts__cta { width: 100%; }
  .contact-row__icon { width: 38px; height: 38px; }
  .contact-row__link,
  .contact-row__strong { font-size: 15px; }
}
