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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #07090d;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.6;
}

.loader {
  position: fixed;
  inset: 0;
  background: #07090d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: #07090d;
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
  box-shadow: 0 0 30px rgba(201, 255, 98, 0.18);
}

.loader-text {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-transform: lowercase;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.85; }
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9998;
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal__box {
  width: min(100%, 420px);
  background: #10141a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.success-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
  color: #07090d;
  font-size: 28px;
  font-weight: 900;
}

.success-modal__box h3 {
  margin-bottom: 10px;
}

.success-modal__box p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.76);
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

.container,
.container-siteHeader-inner {
  max-width: 1158px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

section {
  padding: 72px 0;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

/* ===== HEADER ===== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-siteHeader-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-scrolled {
  background: rgba(7, 9, 13, 0.95);
  backdrop-filter: blur(20px);
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #07090d;
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
}

.logo__text {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-transform: lowercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.25s ease;
}
.nav__link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 255, 98, 0.25);
}

.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.headerCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #07090d;
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
  transition: 0.25s ease;
  white-space: nowrap;
}

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

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.4);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn,
.call_btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary,
.call_btn__link {
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
  color: #07090d;
  border: 1px solid transparent;
}

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

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 40px 16px 48px;
  border-radius: 28px;
  isolation: isolate;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 9, 13, 0.55) 0%,
      rgba(7, 9, 13, 0.72) 45%,
      rgba(7, 9, 13, 0.88) 100%
    );
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero__badges,
.heroCard,
.hero__fitBlock,
.hero-actions {
  position: relative;
  z-index: 2;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 20px;
}
.fit-for-you {
  padding: 0;
}

.fit-for-you h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 34px);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fit-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  transition: 0.25s ease;
}

.fit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 255, 98, 0.3);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.pill--strong {
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
  color: #07090d;
  font-weight: 800;
  border-color: transparent;
}

.heroCard {
  max-width: 760px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.heroCard__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.heroCard__title {
  margin: 0;
  font-weight: 900;
  color: #fff;
}

.heroCard__subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

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

.heroCard__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
}

.heroCard__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #c9ff62;
  box-shadow: 0 0 0 4px rgba(201, 255, 98, 0.14);
  flex: 0 0 10px;
}

.heroCard__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.heroCard__mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.miniStat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.miniStat__label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.miniStat__value {
  display: block;
  font-size: 21px;
  font-weight: 900;
  color: #fff;
}

/* ===== STATS ===== */
.stats {
  padding-top: 20px;
  padding-bottom: 0;
}
.stat-number {
  display: inline-block;
  min-width: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h3 {
  margin-bottom: 8px;
  font-size: 34px;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== ADVANTAGES ===== */
.advantages {
  padding-top: 80px;
}

.section-subtitle {
  max-width: 700px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.adv-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 255, 204, 0.26);
}

.adv-card h3 {
  margin-bottom: 12px;
}

.adv-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== CTA ===== */
.cta-banner,
.final-cta {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cta-banner-box,
.final-cta-box {
  padding: 46px 24px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-box h2,
.final-cta-box h2 {
  margin-bottom: 12px;
}

.cta-banner-box p,
.final-cta-box p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-banner .hero-actions,
.final-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ===== PRICING ===== */
.section {
  padding: 72px 0;
}

.section__head {
  margin-bottom: 28px;
}

.section__title {
  margin-bottom: 12px;
}

.section__subtitle {
  color: rgba(255, 255, 255, 0.76);
}

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

.priceCard {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.priceCard:hover {
  transform: translateY(-4px);
}

.priceCard--lite {
  background: rgba(255, 255, 255, 0.045);
}

.priceCard--hot {
  background: linear-gradient(180deg, rgba(201,255,98,0.12), rgba(255,255,255,0.04));
  border-color: rgba(201,255,98,0.28);
}

.priceCard__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #07090d;
  background: linear-gradient(135deg, #c9ff62, #8dffcc);
}

.priceCard__title {
  margin-bottom: 14px;
  font-size: 22px;
  color: #fff;
}

.priceCard__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 12px;
}

.priceCard__amount {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.priceCard__cur {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
}

.priceCard__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.priceCard__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.priceCard__meta {
  color: rgba(255, 255, 255, 0.75);
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
  white-space: nowrap;
}

.priceCard__price--stack {
  align-items: flex-end;
  gap: 10px;
}

.priceCard__old {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.priceCard__new {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.priceCard__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}

.priceCard__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
}

.priceCard__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #8dffcc;
  box-shadow: 0 0 0 4px rgba(141, 255, 204, 0.12);
  flex: 0 0 10px;
}

.pricing__foot {
  margin-top: 20px;
}

.infoBar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.infoBar__dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #c9ff62;
  box-shadow: 0 0 0 4px rgba(201, 255, 98, 0.14);
  flex: 0 0 10px;
}

.infoBar__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.call_btn {
  margin-top: 24px;
  text-align: center;
}

/* ===== REVIEWS ===== */
.section--reviews {
  padding-top: 80px;
}

.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reviewCard {
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.reviewCard:hover {
  transform: translateY(-4px);
}

.reviewStars {
  margin-bottom: 14px;
  color: #ffb84d;
  letter-spacing: 4px;
}

.reviewText {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.reviewAuthor {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}


/* ----BOOKING ===== */
.booking {
  padding: 80px 0;
}

.booking-form textarea {
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 14px 16px;
  resize: vertical;
}

.booking-form textarea:focus {
  outline: none;
  border-color: #c9ff62;
}

.form-status {
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
}

.booking-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.booking-form input {
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0 16px;
}

.booking-form input:focus {
  outline: none;
  border-color: #c9ff62;
}

/* ===== LOCATION ===== */
.locationBlock {
  padding-top: 80px;
  padding-bottom: 80px;
}

.locationBlock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.locationInfo,
.locationMap {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.locationInfo {
  padding: 28px;
}

.locationInfo__small {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.locationInfo__title {
  margin-bottom: 14px;
  color: #fff;
}

.locationInfo__text {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contactItem {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contactItem:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contactLabel {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.contactItem a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(201, 255, 98, 0.35);
  text-underline-offset: 4px;
}

.contactItem p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.locationMap {
  overflow: hidden;
  min-height: 420px;
}

.locationMap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.25s ease;
}

.socialLink:hover {
  color: #E1306C;
  transform: scale(1.08);
}

/* ===== FOOTER ===== */
.siteFooter {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.siteFooter__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.logo--footer .logo__text {
  color: rgba(255, 255, 255, 0.92);
}

.siteFooter__text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.siteFooter__title {
  margin-bottom: 12px;
  font-weight: 900;
  color: #fff;
}

.siteFooter__links {
  display: grid;
  gap: 10px;
}

.siteFooter__link {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.siteFooter__link:hover {
  color: #fff;
}

.siteFooter__small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.siteFooter__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.siteFooter__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

@media (max-width: 1157px) {
  .advantages-grid,
  .fit-grid,
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  .stats-grid,
  .reviewsGrid,
  .locationBlock__grid {
    grid-template-columns: 1fr;
  }

  .locationMap,
  .locationMap iframe {
    min-height: 360px;
  }

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

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

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .headerCta,
  .call_btn__link {
    width: 100%;
  }

  .fit-grid,
  .advantages-grid,
  .pricing__grid,
  .reviewsGrid,
  .stats-grid,
  .heroCard__mini {
    grid-template-columns: 1fr;
  }

  .heroCard__top,
  .priceCard__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .priceCard__badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .locationInfo,
  .heroCard,
  .cta-banner-box,
  .final-cta-box {
    padding: 22px;
  }
}