:root {
  --bg: #07111a;
  --bg-soft: #0d1c2a;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.1);
  --text: #f4f8fb;
  --muted: #a8bfd0;
  --line: rgba(255,255,255,0.12);
  --brand: #19b6ff;
  --brand-2: #73ffd7;
  --shadow: 0 24px 60px rgba(0,0,0,0.28);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(25,182,255,0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(115,255,215,0.12), transparent 25%),
    linear-gradient(180deg, #07111a 0%, #081724 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, iframe, video { font: inherit; }
button { cursor: pointer; }
iframe { width: 100%; height: 100%; border: 0; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 32px)); }
.section { padding: 88px 0; }
.section--soft { background: rgba(255,255,255,0.02); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25,182,255,0.12);
  color: #9de9ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,17,26,0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand strong { display: block; font-size: 18px; }
.brand span { display: block; color: var(--muted); font-size: 13px; }
.nav { display: flex; gap: 22px; justify-content: center; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover, .nav a:focus-visible { color: var(--text); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.chip, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
}
.chip { background: rgba(255,255,255,0.05); border-color: var(--line); }
.button { background: linear-gradient(135deg, var(--brand), #3bd8ff); color: #062131; }
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.05); }
.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}
.hero { padding: 68px 0 40px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}
.hero__content h1 {
  margin: 18px 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.lead, .section__heading p, .feature p, .price-card li, .package-card p, .review p, .contact-card p, .rules p, .rules li {
  color: var(--muted);
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.social-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px;
  border-radius: 14px; border: 1px solid rgba(115,255,215,0.24); background: rgba(115,255,215,0.08); color: #cffff2; font-weight: 700;
}
.social-button--big { width: 100%; margin-bottom: 18px; }
.hero__stats {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero__stats li, .hero__panel { padding: 18px; border-radius: 22px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); }
.hero__stats strong { display: block; font-size: 24px; margin-bottom: 6px; }
.hero__stats span, .hero__panel span { color: var(--muted); font-size: 14px; }
.hero__visual { padding: 24px; }
.hero__car-stage {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.hero__car {
  position: relative;
  z-index: 3;
  width: 100%;
  object-fit: contain;
  animation: carFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
}
.hero__spray {
  position: absolute;
  top: -8%;
  width: 32%;
  height: 125%;
  z-index: 1;
  opacity: .58;
  background: linear-gradient(180deg, rgba(173, 233, 255, 0.0) 0%, rgba(102, 217, 255, 0.38) 18%, rgba(130, 235, 255, 0.14) 40%, rgba(173, 233, 255, 0.0) 100%);
  filter: blur(1px);
  animation: sprayPulse 2.8s ease-in-out infinite;
}
.hero__spray::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.30) 0 6px, rgba(255,255,255,0.02) 6px 16px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 22%, rgba(0,0,0,1) 75%, rgba(0,0,0,0));
}
.hero__spray--left {
  left: 12%;
  transform: skewX(-12deg);
}
.hero__spray--right {
  right: 12%;
  transform: skewX(12deg);
  animation-delay: .45s;
}
.hero__foam {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 17%;
  bottom: 18%;
  z-index: 2;
  border-radius: 26px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 20%), radial-gradient(circle at 65% 28%, rgba(255,255,255,.13), transparent 18%), radial-gradient(circle at 48% 64%, rgba(255,255,255,.10), transparent 14%);
  mix-blend-mode: screen;
  opacity: .28;
  animation: foamShift 5.2s ease-in-out infinite;
}
.hero__shine {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 42%;
  height: 80%;
  z-index: 4;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.24), rgba(255,255,255,0));
  transform: skewX(-22deg);
  filter: blur(6px);
  animation: shineSweep 5.8s ease-in-out infinite;
}
.hero__panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.hero__panel strong { display: block; margin-top: 8px; }
.section__heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.section__heading h2 { margin: 14px 0 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: -0.03em; }
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature, .review, .package-card, .step { padding: 24px; }
.feature span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(115,255,215,0.12);
  color: var(--brand-2);
  font-weight: 800;
}
.feature h3, .price-card h3, .package-card h3, .camera-card h3, .review h3, .contact-grid h3 { margin: 0 0 12px; font-size: 22px; }
.tabs { padding: 18px; }
.tabs__switcher { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.tab-button {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 700;
}
.tab-button.is-active { background: rgba(25,182,255,0.16); border-color: rgba(25,182,255,0.28); color: white; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.camera-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.camera-card { overflow: hidden; background: rgba(255,255,255,0.04); border-radius: 22px; border: 1px solid var(--line); }
.camera-card iframe { aspect-ratio: 16/10; min-height: 220px; background: #000; }
.camera-card h3 { padding: 16px 16px 18px; font-size: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.price-card { padding: 24px; }
.price-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.price-card__top strong { font-size: 30px; }
.price-card ul { margin: 0; padding-left: 18px; }
.price-card--accent { border-color: rgba(25,182,255,0.36); box-shadow: 0 20px 50px rgba(25,182,255,0.16); }
.package-card img { width: 100%; max-height: 120px; object-fit: contain; margin-bottom: 14px; }
.package-link { color: #9de9ff; font-weight: 700; background: transparent; border: 0; padding: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step strong {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 14px; background: rgba(25,182,255,0.14); color: #9de9ff; font-size: 20px; margin-bottom: 18px;
}
.cta { padding: 32px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.cta h2 { margin: 14px 0 12px; font-size: clamp(30px, 4vw, 44px); line-height: 1.04; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.promo-slider { display: grid; grid-template-columns: 56px 1fr 56px; gap: 16px; align-items: center; }
.promo-slider--wide { width: min(1400px, calc(100vw - 40px)); margin: 0 auto; }
.slider-arrow {
  width: 56px; height: 56px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); color: white; font-size: 28px;
}
.promo-track { position: relative; min-height: 520px; overflow: hidden; border-radius: 28px; }
.promo-track--wide { min-height: min(52vw, 760px); }
.promo-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: rgba(255,255,255,0.03);
  border-radius: 28px; border: 1px solid var(--line); opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.promo-slide.is-active { opacity: 1; pointer-events: auto; }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.video-card {
  min-height: 260px; padding: 0; text-align: left; border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    radial-gradient(circle at top left, rgba(25,182,255,0.25), transparent 40%);
  color: white;
}
.video-grid--embedded { align-items: start; }
.video-embed { overflow: hidden; }
.video-embed video {
  width: 100%; aspect-ratio: 16/9; display: block; background: #000; object-fit: cover;
}
.video-embed__meta { padding: 16px 18px 18px; }
.video-embed__meta span { font-size: 20px; font-weight: 700; display: block; }
.video-embed__meta p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.contact-card { padding: 28px; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start; }
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin: 30px 0; }
.contact-grid a, .doc-links a { color: #9de9ff; }
.review__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar {
  width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; flex: 0 0 56px;
  background: linear-gradient(135deg, #19b6ff, #73ffd7); color: #052232; border: 2px solid rgba(255,255,255,0.16); box-shadow: 0 10px 24px rgba(25,182,255,0.18);
}
.avatar--photo {
  object-fit: cover; display: block; background: #163247;
}
.review h3 { margin: 0; }
.avatar span { font-weight: 900; font-size: 18px; line-height: 1; }
.schedule-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 22px;
}
.schedule-details p {
  margin: 0; padding: 18px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--muted); line-height: 1.65;
}
.doc-links { display: flex; flex-wrap: wrap; gap: 14px 20px; }
.map-wrap {
  margin-top: 26px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,0.04);
}
.map-wrap iframe { width: 100%; min-height: 420px; display: block; }
.footer { padding: 30px 0 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); }
.video-modal, .package-modal {
  width: min(1000px, calc(100% - 24px)); padding: 0; border: 0; border-radius: 24px; background: #000; overflow: hidden;
}
.video-modal::backdrop, .package-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(6px); }
.video-modal video { width: 100%; height: auto; display: block; }
.package-modal__body {
  background:
    radial-gradient(circle at top left, rgba(25,182,255,0.16), transparent 30%),
    linear-gradient(180deg, #0a1722 0%, #0e1d2b 100%);
  color: #f4f8fb; padding: 0; min-height: 320px;
}
.package-sheet__hero {
  padding: 42px 32px 34px; text-align: center; color: #f4f8fb;
  background:
    linear-gradient(180deg, rgba(8,18,28,0.32), rgba(8,18,28,0.78)),
    url('https://xn--80aaadd1cza.xn--p1ai/wp-content/themes/aquaban/assets/images/main-2.png') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.package-sheet__hero h3 { margin: 0; font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; }
.package-sheet__content { padding: 26px 32px 32px; }
.package-sheet__content p { color: #c6d8e6; line-height: 1.7; }
.package-sheet__gift {
  display: flex; gap: 16px; align-items: center; padding: 18px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); margin-top: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.package-sheet__gift strong { display: block; margin-bottom: 4px; color: #f4f8fb; }
.video-modal__close {
  position: absolute; top: 12px; right: 12px; width: 42px; height: 42px; border-radius: 999px; border: 0; background: rgba(0,0,0,.5); color: #fff; font-size: 30px;
}
.rules-page .section { min-height: 100vh; display: grid; align-items: center; }
.rules { padding: 32px; }
.rules h1 { margin: 16px 0 24px; font-size: clamp(32px, 4vw, 52px); line-height: 1.04; }
.rules h2 { margin-top: 28px; font-size: 24px; }
.rules__warning {
  padding: 18px; border-radius: 18px; background: rgba(255, 92, 92, 0.1); border: 1px solid rgba(255, 92, 92, 0.24); color: #ffd8d8;
}
.back-link { display: inline-block; margin-bottom: 18px; color: #9de9ff; font-weight: 700; }
.doc-links--stack { flex-direction: column; align-items: flex-start; margin-top: 22px; }
@keyframes carFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes sprayPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .72; }
}
@keyframes foamShift {
  0%, 100% { opacity: .18; transform: translateY(0px); }
  50% { opacity: .34; transform: translateY(6px); }
}
@keyframes shineSweep {
  0% { left: -28%; opacity: 0; }
  10% { opacity: .0; }
  30% { opacity: .9; }
  60% { opacity: .12; }
  100% { left: 110%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__car,
  .hero__spray,
  .hero__foam,
  .hero__shine { animation: none !important; }
}
@media (max-width: 1080px) {
  .header__inner { grid-template-columns: auto auto; }
  .nav { grid-column: 1 / -1; justify-content: flex-start; overflow: auto; }
  .hero__grid, .section__heading, .contact-grid, .pricing-grid, .grid--3, .camera-grid, .video-grid, .steps-grid, .cta, .contact-layout, .schedule-details { grid-template-columns: 1fr 1fr; }
  .promo-track { min-height: 420px; }
  .promo-track--wide { min-height: 520px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .header__inner { grid-template-columns: auto auto auto; min-height: 76px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 16px; }
  .brand span { font-size: 12px; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 76px; left: 12px; right: 12px; padding: 14px; border-radius: 18px;
    background: rgba(7,17,26,0.96); border: 1px solid var(--line); flex-direction: column;
  }
  .nav.is-open { display: flex; }
  .header__actions { display: none; }
  .hero { padding: 28px 0 18px; }
  .hero__grid, .section__heading, .hero__stats, .hero__panel, .contact-grid, .pricing-grid, .grid--3, .camera-grid, .video-grid, .steps-grid, .cta, .contact-layout, .schedule-details { grid-template-columns: 1fr; }
  .hero__visual { order: -1; padding: 14px; }
  .hero__car-stage { min-height: 210px; }
  .hero__content .eyebrow { font-size: 11px; padding: 7px 12px; }
  .hero__content h1 { font-size: 34px; line-height: 0.98; margin: 14px 0 12px; }
  .lead { font-size: 16px; line-height: 1.6; margin: 0; }
  .hero__actions { margin-top: 20px; gap: 12px; }
  .button, .chip { min-height: 52px; width: 100%; }
  .hero__stats { margin-top: 18px; gap: 10px; }
  .hero__stats li { padding: 14px 16px; }
  .hero__stats strong { font-size: 20px; margin-bottom: 2px; }
  .hero__stats span { font-size: 12px; }
  .hero__panel { margin-top: 12px; gap: 10px; }
  .hero__panel > div { padding: 14px; border-radius: 18px; }
  .section__heading { gap: 14px; margin-bottom: 22px; }
  .section__heading h2 { font-size: 30px; margin-top: 10px; }
  .section__heading p { font-size: 15px; line-height: 1.6; }
  .feature, .review, .package-card, .step, .price-card, .cta, .contact-card { padding: 20px; }
  .promo-slider { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .promo-track { min-height: 320px; }
  .promo-track--wide { min-height: 260px; }
  .container { width: min(100% - 24px, 1180px); }
}
