/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--orange, #FF9500);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-size: 14px;
}
.skip-to-content:focus {
  left: 0;
  top: 0;
}

:root {
  --orange: #FF9500;
  --orange2: #FF6B00;
  --cyan: #00D9FF;
  --pink: #FF2045;
  --bg: #060610;
  --card: #0e0e20;
  --text: #E9ECFF;
  --muted: rgba(233,236,255,.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  cursor: url('../cursor-logo.png') 16 16, auto;
}
button, a { cursor: url('../cursor-logo.png') 16 16, pointer; }

/* ===================== ЛОАДЕР ===================== */
#loader {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
  background: #000; transition: opacity 0.3s;
}
.loader-logo { font-size: 36px; font-weight: 900; opacity: 0; animation: fadeUp 0.6s ease forwards 0.2s; }
.loader-logo span { color: var(--orange); }
.loader-dots { display: flex; gap: 10px; }
.loader-dot { width: 12px; height: 12px; border-radius: 50%; animation: bounce 0.8s ease-in-out infinite; }
.loader-dot:nth-child(1) { background: var(--orange); }
.loader-dot:nth-child(2) { animation-delay: 0.15s; background: var(--cyan); }
.loader-dot:nth-child(3) { animation-delay: 0.3s; background: var(--pink); }
@keyframes bounce { 0%,100%{transform:translateY(0);opacity:.4}50%{transform:translateY(-16px);opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)} }

/* ===================== INTRO VIDEO ===================== */
#video-intro {
  position: fixed; inset: 0; z-index: 9999; background: #000;
  display: flex; align-items: center; justify-content: center;
}
#intro-video { width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: transform; }

#skip-btn {
  position: fixed; top: 20px; right: 20px; z-index: 10000;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: white; padding: 12px 22px; border-radius: 50px;
  font-weight: 700; font-size: 14px; transition: all .3s;
}
#skip-btn:hover { background: rgba(255,255,255,.25); }

#no-video-msg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center; display: none;
}
#no-video-msg .no-video-logo { font-size: 48px; font-weight: 900; margin-bottom: 12px; }
#no-video-msg .no-video-logo span { color: var(--orange); }
#no-video-msg p { color: var(--muted); font-size: 15px; }

/* ===================== НАВБАР ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px) saturate(180%); background: rgba(6,6,16,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-logo { font-size: 24px; font-weight: 900; letter-spacing: -0.03em; flex-shrink: 0; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px; transition: color .3s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; border: none; padding: 11px 20px; border-radius: 50px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(255,149,0,.3); flex-shrink: 0;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(255,149,0,.45); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: rgba(6,6,16,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-direction: column; padding: 20px 24px 24px; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-weight: 600;
  font-size: 17px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mob-cta {
  margin-top: 12px; padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; border: none; border-radius: 50px;
  font-weight: 700; font-size: 16px; width: 100%;
  box-shadow: 0 8px 30px rgba(255,149,0,.3);
}

/* ===================== HERO ===================== */
#hero {
  display: none; position: relative; width: 100%; min-height: 100vh;
  background-image: url('../hero-opt.jpeg');
  background-image: image-set(url('../hero.webp') type('image/webp'), url('../hero-opt.jpeg') type('image/jpeg'));
  background-size: cover; background-position: center top;
  will-change: transform;
}
#hero.show { display: block; }
#hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 280px;
  background: linear-gradient(to bottom, transparent, #100a18); pointer-events: none;
}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  min-height: 100vh;
  padding: 100px 5vw 80px; gap: 16px;
}
.hero-tagline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; max-width: 600px;
}
.hero-tagline span {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  background-size: 200%; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; animation: textFlow 4s ease infinite;
}
@keyframes textFlow { 0%,100%{background-position:0%}50%{background-position:200%} }
.hero-where { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); font-weight: 500; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; width: 100%; max-width: 420px; }
.hero-link-secondary {
  color: var(--muted); font-size: 15px; font-weight: 600;
  transition: color .3s; padding-left: 4px;
}
.hero-link-secondary:hover { color: var(--text); }
.big-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 28px; border-radius: 50px; border: none;
  font-size: 16px; font-weight: 700; width: 100%; transition: transform .3s;
}
.big-btn:hover { transform: translateX(6px) scale(1.02); }
.big-btn.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; box-shadow: 0 10px 40px rgba(255,149,0,.45);
}
.big-btn.blue {
  background: rgba(20,20,50,.8); border: 2.5px solid var(--cyan);
  color: white; backdrop-filter: blur(8px); box-shadow: 0 0 30px rgba(0,217,255,.2);
}
.big-btn .icon { font-size: 26px; flex-shrink: 0; }

.toggle {
  position: absolute; top: clamp(20px,4vh,40px); right: clamp(20px,4vw,40px);
  width: 80px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50px;
  border: 2px solid var(--cyan); padding: 4px; z-index: 10;
  box-shadow: 0 0 20px rgba(0,217,255,.2);
}
.toggle-dot {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--cyan), #00A3CC);
  border-radius: 50%; transition: transform .3s;
  box-shadow: 0 2px 10px rgba(0,217,255,.5);
}
.toggle.active .toggle-dot { transform: translateX(40px); }

/* ===================== ОБЩИЕ СТИЛИ ===================== */
.section-outer { position: relative; z-index: 1; overflow: hidden; }
section { padding: 70px 60px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ===================== FESTIVE SECTION BACKGROUNDS ===================== */

/* No hard dividers — sections blend smoothly via overlapping gradients */

/* EVENTS — vibrant purple + orange party */
#events-section {
  background: linear-gradient(180deg, #100a18 0%, #2a1050 35%, #351560 50%, #2a1050 65%, #100a18 100%) !important;
}
#events-section::before {
  content: ''; position: absolute; top: -80px; left: 5%; width: 70%; height: 600px;
  background: radial-gradient(ellipse, rgba(255,149,0,.28) 0%, rgba(255,80,0,.08) 50%, transparent 75%);
  pointer-events: none; z-index: 0;
}
#events-section::after {
  content: ''; position: absolute; bottom: -60px; right: 0; width: 55%; height: 450px;
  background: radial-gradient(ellipse, rgba(168,85,247,.22) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* HOW — warm orange + purple glow */
#how {
  background: linear-gradient(180deg, #100a18 0%, #2a1220 30%, #381838 50%, #2a1220 70%, #0c0c1a 100%);
}
#how::before {
  content: ''; position: absolute; top: -60px; left: -5%; width: 80%; height: 700px;
  background: radial-gradient(ellipse, rgba(255,149,0,.3) 0%, rgba(255,100,0,.1) 45%, transparent 75%);
  pointer-events: none; z-index: 0;
}
#how::after {
  content: ''; position: absolute; bottom: -100px; right: -5%; width: 55%; height: 550px;
  background: radial-gradient(ellipse, rgba(168,85,247,.2) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* TRUST — cool cyan + soft blue */
#trust {
  background: linear-gradient(180deg, #0c0c1a 0%, #0c1630 30%, #102048 50%, #0c1630 70%, #0e0a20 100%);
}
#trust::before {
  content: ''; position: absolute; top: -80px; right: -5%; width: 70%; height: 650px;
  background: radial-gradient(ellipse, rgba(0,217,255,.25) 0%, rgba(0,180,255,.07) 50%, transparent 75%);
  pointer-events: none; z-index: 0;
}
#trust::after {
  content: ''; position: absolute; bottom: -60px; left: -5%; width: 50%; height: 450px;
  background: radial-gradient(ellipse, rgba(168,85,247,.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* PACKAGES — deep purple + orange party vibes */
#packages {
  background: linear-gradient(180deg, #0e0a20 0%, #1e0c55 30%, #2a1070 50%, #1e0c55 70%, #140a22 100%);
}
#packages::before {
  content: ''; position: absolute; top: 0; right: -5%; width: 70%; height: 800px;
  background: radial-gradient(ellipse, rgba(255,149,0,.28) 0%, rgba(255,80,0,.08) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#packages::after {
  content: ''; position: absolute; bottom: -50px; left: -5%; width: 55%; height: 600px;
  background: radial-gradient(ellipse, rgba(255,32,69,.2) 0%, rgba(168,85,247,.06) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* GALLERY — pink magenta glow */
#gallery {
  background: linear-gradient(180deg, #140a22 0%, #2a0c28 30%, #38103a 50%, #2a0c28 70%, #1a1010 100%);
}
#gallery::before {
  content: ''; position: absolute; top: -50px; left: 10%; width: 65%; height: 600px;
  background: radial-gradient(ellipse, rgba(255,32,69,.25) 0%, rgba(255,0,80,.07) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#gallery::after {
  content: ''; position: absolute; bottom: -80px; right: 5%; width: 55%; height: 500px;
  background: radial-gradient(ellipse, rgba(255,149,0,.2) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* REVIEWS — warm golden amber glow */
#reviews {
  background: linear-gradient(180deg, #1a1010 0%, #2e1808 30%, #3a2210 50%, #2e1808 70%, #0c1018 100%);
}
#reviews::before {
  content: ''; position: absolute; top: -60px; left: 0; width: 75%; height: 700px;
  background: radial-gradient(ellipse, rgba(255,170,0,.28) 0%, rgba(255,120,0,.08) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#reviews::after {
  content: ''; position: absolute; bottom: -50px; right: -5%; width: 45%; height: 450px;
  background: radial-gradient(ellipse, rgba(255,200,50,.15) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* FAQ — cyan + turquoise sea */
#faq {
  background: linear-gradient(180deg, #0c1018 0%, #081a30 30%, #0c2540 50%, #081a30 70%, #140c1a 100%);
}
#faq::before {
  content: ''; position: absolute; top: -40px; left: 15%; width: 60%; height: 550px;
  background: radial-gradient(ellipse, rgba(0,217,255,.25) 0%, rgba(0,180,255,.07) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#faq::after {
  content: ''; position: absolute; bottom: -50px; right: 0; width: 50%; height: 450px;
  background: radial-gradient(ellipse, rgba(0,255,200,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* CONTACTS — warm inviting orange + magenta */
#contacts {
  background: linear-gradient(180deg, #140c1a 0%, #2c0e28 30%, #3a1238 50%, #2c0e28 70%, #0a0a14 100%);
}
#contacts::before {
  content: ''; position: absolute; top: -60px; right: 5%; width: 65%; height: 600px;
  background: radial-gradient(ellipse, rgba(255,149,0,.3) 0%, rgba(255,80,0,.08) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#contacts::after {
  content: ''; position: absolute; bottom: -50px; left: 0; width: 55%; height: 450px;
  background: radial-gradient(ellipse, rgba(255,32,69,.2) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.section-label {
  display: inline-block; padding: 7px 16px; border-radius: 50px;
  background: rgba(255,149,0,.1); border: 1.5px solid rgba(255,149,0,.25);
  color: var(--orange); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px,4vw,58px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 14px; }
.section-title span {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: textFlow 4s ease infinite;
}
.section-sub { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.stats-row { display: flex; gap: 40px; margin-bottom: 70px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-size: clamp(40px,5vw,68px); font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.stat-label { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-top: 5px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px; padding: 32px 26px; position: relative; overflow: hidden;
  transition: transform .4s, border-color .3s, box-shadow .3s;
}
.step::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,149,0,.1), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.step:hover { transform: translateY(-8px); border-color: rgba(255,149,0,.2); box-shadow: 0 30px 60px rgba(0,0,0,.3), 0 0 40px rgba(255,149,0,.06); }
.step-num {
  width: 50px; height: 50px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255,149,0,.35);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--muted); line-height: 1.6; font-size: 14px; }

.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.trust-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 24px; display: flex; align-items: flex-start; gap: 16px;
  transition: transform .4s, border-color .3s;
}
.trust-card:hover { transform: translateY(-5px); border-color: rgba(0,217,255,.15); box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 30px rgba(0,217,255,.06); }
.trust-icon { font-size: 32px; flex-shrink: 0; }
.trust-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.trust-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Scarcity badge */
.scarcity-badge {
  display: inline-block; padding: 10px 20px; border-radius: 50px; margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255,149,0,.08), rgba(255,32,69,.06));
  border: 1px solid rgba(255,149,0,.2);
  color: var(--text); font-size: 14px; font-weight: 600;
}

.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.package-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px; padding: 36px 28px; display: flex; flex-direction: column;
  transition: transform .4s, box-shadow .4s; position: relative; overflow: hidden;
}
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.package-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 40px rgba(255,149,0,.08); }
.package-card.popular {
  border-color: rgba(255,149,0,.3);
  background: linear-gradient(160deg, rgba(255,149,0,.06), var(--card)); transform: scale(1.03);
  position: relative;
}
.package-card.popular::before { background: linear-gradient(90deg, transparent, var(--orange), transparent); }
.package-card.popular:hover { transform: scale(1.03) translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 60px rgba(255,149,0,.15); }
.popular-badge {
  position: absolute; top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; padding: 7px 16px; border-radius: 0 0 14px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.package-emoji { font-size: 46px; margin-bottom: 16px; }
.package-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.package-card > p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; flex: 1; font-size: 14px; }
.package-features { list-style: none; margin-bottom: 28px; }
.package-features li {
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.package-features li::before { content: '✓'; color: var(--orange); font-weight: 900; font-size: 15px; }
.package-btn { padding: 15px; border-radius: 50px; border: none; font-weight: 700; font-size: 15px; transition: transform .3s, box-shadow .3s; width: 100%; font-family: inherit; }
.package-btn:hover { transform: scale(1.03); }
.package-btn.solid { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: white; box-shadow: 0 10px 40px rgba(255,149,0,.35); }
.package-btn.solid:hover { box-shadow: 0 15px 50px rgba(255,149,0,.5); }
.package-btn.outline { background: transparent; border: 1.5px solid rgba(255,255,255,.15); color: var(--text); }
.package-btn.outline:hover { border-color: rgba(255,255,255,.3); }

.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.review-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px; padding: 30px; transition: transform .4s, border-color .3s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C'; position: absolute; top: 10px; right: 20px; font-size: 100px;
  color: rgba(255,149,0,.05); font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(255,149,0,.12); }
.review-stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: linear-gradient(135deg, var(--orange), var(--pink)); flex-shrink: 0;
}
.review-author h4 { font-size: 15px; font-weight: 700; }
.review-author p { font-size: 12px; color: var(--muted); margin-top: 2px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(255,149,0,.2); }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 16px; gap: 16px; }
.faq-arrow { font-size: 16px; transition: transform .3s; color: var(--orange); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; color: var(--muted); line-height: 1.7; padding: 0 24px; font-size: 14px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

.contacts-wrap {
  background: linear-gradient(135deg, rgba(255,149,0,.06), rgba(0,217,255,.04));
  border: 1px solid rgba(255,255,255,.08); border-radius: 32px; padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.contacts-wrap::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,149,0,.07), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.contacts-left h2 { font-size: clamp(26px,3vw,42px); font-weight: 900; margin-bottom: 14px; line-height: 1.1; }
.contacts-left p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; font-size: 15px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 14px; transition: all .3s;
}
.contact-link:hover { background: rgba(255,255,255,.08); border-color: var(--orange); transform: translateX(6px); }
.contact-link .icon { font-size: 20px; }
.contacts-right { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.form-input {
  width: 100%; padding: 15px 18px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px; color: var(--text);
  font-size: 14px; outline: none; transition: border-color .3s; font-family: inherit; resize: none;
}
.form-input:focus { border-color: var(--orange); background: rgba(255,149,0,.04); }
.form-input::placeholder { color: var(--muted); }
.form-submit {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: none; border-radius: 50px; color: white; font-size: 16px; font-weight: 700;
  transition: transform .3s, box-shadow .3s; box-shadow: 0 10px 40px rgba(255,149,0,.3); font-family: inherit;
}
.form-submit:hover { transform: scale(1.02); box-shadow: 0 15px 50px rgba(255,149,0,.45); }

footer {
  background: #060610;
  padding: 36px 60px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { font-size: 20px; font-weight: 900; }
.footer-logo span { color: var(--orange); }
footer p { color: var(--muted); font-size: 13px; }
.footer-privacy { margin-top: 4px; }
.footer-privacy a { color: rgba(233, 236, 255, 0.4); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-privacy a:hover { color: var(--orange); }

/* ===================== КАЛЬКУЛЯТОР ===================== */
#calc-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.85); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
#calc-overlay.open { display: flex; }

#calc-modal {
  background: #0a0a1e; border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  width: 100%; max-width: 720px; max-height: 92vh; overflow-y: auto; position: relative;
  animation: calcIn 0.4s cubic-bezier(.16,1,.3,1);
}
#calc-modal::-webkit-scrollbar { width: 4px; }
#calc-modal::-webkit-scrollbar-thumb { background: rgba(255,149,0,.3); border-radius: 4px; }
@keyframes calcIn { from{opacity:0;transform:scale(.94) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)} }

.calc-header {
  padding: 22px 28px 18px; border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky; top: 0; z-index: 10; background: #0a0a1e;
}
.calc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; gap: 12px; }
.calc-title { font-size: 17px; font-weight: 800; }
.calc-title span { color: var(--orange); }
.calc-subtitle { color: var(--muted); font-size: 13px; line-height: 1.5; margin-bottom: 14px; }
.calc-close {
  width: 34px; height: 34px; min-width: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  color: var(--muted); font-size: 16px;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.calc-close:hover { background: rgba(255,255,255,.1); color: var(--text); }

.calc-progress-wrap { display: flex; align-items: center; gap: 10px; }
.calc-progress-bar { flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.calc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--pink)); border-radius: 4px; transition: width 0.4s ease; }
.calc-step-label { font-size: 12px; color: var(--muted); white-space: nowrap; }
.calc-running-price {
  font-size: 13px; font-weight: 800; color: var(--orange);
  white-space: nowrap; padding: 3px 10px; border-radius: 50px;
  background: rgba(255,149,0,.1); border: 1px solid rgba(255,149,0,.2);
  animation: pricePulse 2s ease-in-out infinite;
}
@keyframes pricePulse { 0%,100%{opacity:1}50%{opacity:.7} }

.calc-body { padding: 28px; }
.calc-step { display: none; }
.calc-step.active { display: block; animation: stepIn 0.35s cubic-bezier(.16,1,.3,1); }
@keyframes stepIn { from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)} }

.calc-step-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.calc-step-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; line-height: 1.5; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-grid.cols-1 { grid-template-columns: 1fr; }

.choice-card {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .25s; cursor: pointer;
}
.choice-card:hover { background: rgba(255,149,0,.08); border-color: rgba(255,149,0,.3); }
.choice-card.selected { background: rgba(255,149,0,.12); border-color: var(--orange); box-shadow: 0 0 0 1px rgba(255,149,0,.2); }
.choice-card .c-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.choice-card .c-label { font-weight: 700; font-size: 14px; }
.choice-card .c-sub { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-card {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .25s; cursor: pointer;
}
.check-card:hover { background: rgba(255,149,0,.06); border-color: rgba(255,149,0,.25); }
.check-card.selected { background: rgba(255,149,0,.1); border-color: var(--orange); }
.check-box {
  width: 20px; height: 20px; min-width: 20px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,.2); background: transparent;
  transition: all .25s; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-card.selected .check-box { background: var(--orange); border-color: var(--orange); }
.check-box::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; opacity: 0; transition: opacity .2s; }
.check-card.selected .check-box::after { opacity: 1; }
.check-info .c-label { font-weight: 700; font-size: 14px; }
.check-info .c-sub { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.check-info .c-price { font-size: 12px; color: var(--orange); font-weight: 700; margin-top: 3px; }
.check-info .c-age { font-size: 11px; color: var(--cyan); font-weight: 600; margin-top: 2px; }

/* Фильтр-табы для программ */
.filter-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 16px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.12);
  background: transparent; color: var(--muted); font-size: 13px; font-weight: 600;
  transition: all .25s; cursor: pointer; font-family: inherit; white-space: nowrap;
}
.filter-tab:hover { border-color: rgba(255,149,0,.3); color: var(--text); }
.filter-tab.active { background: rgba(255,149,0,.15); border-color: var(--orange); color: var(--orange); }

/* Блок-группа дополнений */
.addon-group { margin-bottom: 20px; }
.addon-group-title {
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,149,0,.15);
}

/* Селект и инпут в калькуляторе */
.calc-input, .calc-select {
  width: 100%; padding: 15px 18px; background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1); border-radius: 12px;
  color: var(--text); font-size: 15px; outline: none;
  transition: border-color .3s; font-family: inherit; color-scheme: dark;
  -webkit-appearance: none; appearance: none;
}
.calc-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF9500' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.calc-select option { background: #0a0a1e; color: var(--text); }
.calc-input:focus, .calc-select:focus { border-color: var(--orange); }

.field-group { margin-bottom: 16px; }
.field-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Текстовое поле с автоподгоном */
.calc-textarea {
  width: 100%; padding: 15px 18px; background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1); border-radius: 12px;
  color: var(--text); font-size: 14px; outline: none;
  transition: border-color .3s; font-family: inherit; resize: none; min-height: 80px;
}
.calc-textarea:focus { border-color: var(--orange); }
.calc-textarea::placeholder { color: var(--muted); }

/* Саммари */
.summary-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 20px; margin-bottom: 16px;
}
.summary-box h4 { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13px; gap: 16px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .s-key { color: var(--muted); flex-shrink: 0; }
.summary-row .s-val { font-weight: 600; text-align: right; word-break: break-word; }

.price-box {
  background: linear-gradient(135deg, rgba(255,149,0,.1), rgba(255,149,0,.04));
  border: 1.5px solid rgba(255,149,0,.25); border-radius: 16px;
  padding: 20px; margin-bottom: 16px; text-align: center;
}
.price-box .price-label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.price-box .price-value { font-size: 36px; font-weight: 900; color: var(--orange); }
.price-box .price-note { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

.summary-note {
  background: rgba(0,217,255,.06); border: 1px solid rgba(0,217,255,.15);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.summary-note strong { color: var(--text); }

.summary-contact-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.contact-method-row { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-method-btn {
  padding: 8px 16px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.12);
  background: transparent; color: var(--muted); font-size: 13px; font-weight: 600;
  transition: all .25s; cursor: pointer; font-family: inherit;
}
.contact-method-btn:hover { border-color: rgba(255,149,0,.3); }
.contact-method-btn.selected { background: rgba(255,149,0,.12); border-color: var(--orange); color: var(--orange); }

.submit-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: none; border-radius: 50px; color: white;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 40px rgba(255,149,0,.3); font-family: inherit;
}
.submit-btn:hover { transform: scale(1.02); box-shadow: 0 15px 50px rgba(255,149,0,.45); }

.wa-btn {
  width: 100%; padding: 16px; margin-top: 8px;
  background: linear-gradient(135deg, #25D366, #1aab52);
  border: none; border-radius: 50px; color: white;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 40px rgba(37,211,102,.3); font-family: inherit;
}
.wa-btn:hover { transform: scale(1.02); box-shadow: 0 15px 50px rgba(37,211,102,.4); }
.submit-under { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

.calc-footer { padding: 16px 28px 24px; display: flex; gap: 10px; }
.calc-btn-back {
  padding: 14px 24px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15); background: transparent;
  color: var(--text); font-weight: 700; font-size: 14px; transition: all .3s; white-space: nowrap; font-family: inherit;
}
.calc-btn-back:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.calc-btn-next {
  flex: 1; padding: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: none; border-radius: 50px; color: white;
  font-weight: 700; font-size: 15px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(255,149,0,.3); font-family: inherit;
}
.calc-btn-next:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(255,149,0,.45); }

/* Выбранные программы внизу */
.selected-programs {
  margin-top: 16px; padding: 12px 16px;
  background: rgba(255,149,0,.06); border: 1px solid rgba(255,149,0,.15);
  border-radius: 12px; font-size: 13px; line-height: 1.6;
}
.selected-programs strong { color: var(--orange); }

/* ===================== WOW EFFECTS ===================== */
/* Particle canvas */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.4;
}
nav { z-index: 100; }
#hero { position: relative; z-index: 1; }

/* Animated glow blobs */
.glow-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.12; z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}
.glow-blob-1 { width: 400px; height: 400px; background: var(--orange); top: 10%; left: -5%; animation-delay: 0s; }
.glow-blob-2 { width: 350px; height: 350px; background: var(--cyan); top: 40%; right: -5%; animation-delay: 3s; }
.glow-blob-3 { width: 300px; height: 300px; background: var(--pink); bottom: 10%; left: 30%; animation-delay: 5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* CTA pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 40px rgba(255,149,0,.45); }
  50% { box-shadow: 0 10px 40px rgba(255,149,0,.45), 0 0 30px rgba(255,149,0,.25); }
}
.big-btn.orange { animation: pulseGlow 2.5s ease-in-out infinite; }
.nav-cta { animation: pulseGlow 3s ease-in-out infinite; }

/* Floating emojis */
.floating-emojis {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden; z-index: 5;
}
.floating-emoji {
  position: absolute; font-size: 24px; opacity: 0;
  animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg) scale(0.5); }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-20vh) rotate(360deg) scale(1); }
}

/* Shimmer text */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--orange) 0%, #FFD700 25%, var(--pink) 50%, var(--cyan) 75%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Animated gradient border for popular card */
.package-card.popular::after {
  content: ''; position: absolute; inset: -2px; border-radius: 30px; z-index: -1;
  background: linear-gradient(45deg, var(--orange), var(--pink), var(--cyan), var(--orange));
  background-size: 300% 300%;
  animation: gradientBorder 4s ease infinite;
  opacity: 0.6;
}
@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Language switcher */
.lang-switch {
  display: flex; gap: 4px; margin-left: 16px; flex-shrink: 0;
}
.lang-btn {
  padding: 6px 12px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.15);
  background: transparent; color: var(--muted); font-size: 12px; font-weight: 700;
  transition: all .3s; font-family: inherit; letter-spacing: .03em;
}
.lang-btn:hover { border-color: rgba(255,255,255,.3); color: var(--text); }
.lang-btn.active { background: rgba(255,149,0,.15); border-color: var(--orange); color: var(--orange); }

/* Confetti burst */
.confetti-piece {
  position: fixed; width: 10px; height: 10px;
  pointer-events: none; z-index: 9998; opacity: 1;
}

/* Accessibility: screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Accessibility: focus states */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.choice-card:focus-visible, .check-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Field validation errors */
.field-error {
  color: var(--pink); font-size: 12px; font-weight: 600;
  min-height: 0; overflow: hidden; transition: all .3s;
  padding: 0; margin: 0;
}
.field-error.show {
  min-height: 18px; padding: 2px 0 4px;
}
.form-input.error { border-color: var(--pink); }
.form-input.error:focus { border-color: var(--pink); background: rgba(255,32,69,.04); }

/* Better scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,149,0,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,149,0,.5); }

/* ===================== МЕРОПРИЯТИЯ (EVENTS) ===================== */
.events-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.event-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: linear-gradient(135deg, rgba(255,149,0,.08), rgba(0,217,255,.05));
  border: 1px solid rgba(255,149,0,.2); border-radius: 16px;
  padding: 24px 28px; transition: border-color .3s, transform .3s;
}
.event-card:hover { border-color: rgba(255,149,0,.4); transform: translateY(-2px); }
.event-date-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; flex-shrink: 0;
}
.event-day { font-size: 24px; font-weight: 900; line-height: 1; }
.event-month { font-size: 11px; font-weight: 700; text-transform: uppercase; opacity: .85; }
.event-card-content { flex: 1; }
.event-card-content h3 { color: var(--text); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.event-desc { color: var(--muted); font-size: 15px; line-height: 1.6; white-space: pre-line; }
.event-period {
  display: inline-block; margin-top: 10px; padding: 4px 12px; border-radius: 50px;
  background: rgba(255,149,0,.1); color: var(--orange); font-size: 13px; font-weight: 600;
}

/* ===================== МОБИЛЬНАЯ АДАПТАЦИЯ ===================== */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  section { padding: 44px 20px; }
  .hero-content { padding: 90px 20px 60px; }
  .hero-btns { max-width: 100%; }
  .toggle { top: 14px; right: 70px; width: 70px; height: 36px; }
  .toggle-dot { width: 24px; height: 24px; }
  .toggle.active .toggle-dot { transform: translateX(34px); }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .package-card.popular { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .video-reviews { grid-template-columns: 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .event-card { padding: 18px 20px; gap: 14px; }
  .event-date-badge { min-width: 50px; height: 50px; }
  .event-day { font-size: 20px; }
  .contacts-wrap { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; }
  footer { padding: 28px 20px; justify-content: center; text-align: center; }
  .stats-row { gap: 24px; }
  .stat-num { font-size: 40px; }
}

@media (max-width: 540px) {
  .hero-content { min-height: 100svh; padding: 80px 16px 40px; gap: 12px; }
  .hero-tagline { font-size: 28px; }
  .hero-where { font-size: 13px; }
  .hero-btns { max-width: 100%; }
  .hero-link-secondary { font-size: 13px; }
  .big-btn { padding: 14px 22px; font-size: 15px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  #calc-modal { border-radius: 20px; }
  .calc-body { padding: 18px 16px; }
  .calc-footer { padding: 12px 16px 20px; }
  .calc-step-title { font-size: 17px; }
  .calc-header { padding: 16px 16px 14px; }
  .choice-grid { grid-template-columns: 1fr; }
  .fields-row { grid-template-columns: 1fr; }
  .lang-switch { gap: 2px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .video-reviews { grid-template-columns: 1fr; }
  .stats-row { gap: 16px; flex-wrap: wrap; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 11px; }
  .steps { gap: 12px; }
  .step { padding: 20px 16px; }
  .package-card { padding: 24px 18px; }
  .contacts-wrap { padding: 24px 16px; }
  .wa-float { width: 52px; height: 52px; bottom: 76px; right: 16px; }
}

/* ===================== PACKAGE PRICES ===================== */
.package-price {
  font-size: 28px; font-weight: 900; color: var(--orange); margin-bottom: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; position: relative;
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  transition: transform .4s, box-shadow .3s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-size: 40px; color: var(--muted);
  background: linear-gradient(135deg, rgba(255,149,0,.05), rgba(0,217,255,.05));
}
.gallery-placeholder span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.gallery-cta {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(255,149,0,.3);
}
.gallery-cta:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(255,149,0,.45); }

/* ===================== VIDEO REVIEWS ===================== */
.video-reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.video-review-card {
  border-radius: 20px; overflow: hidden;
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  transition: transform .4s, border-color .3s;
}
.video-review-card:hover { transform: translateY(-6px); border-color: rgba(255,149,0,.2); }
.video-review-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; background: linear-gradient(135deg, rgba(255,149,0,.08), rgba(0,217,255,.05));
  color: var(--muted); font-size: 13px;
}
.video-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  box-shadow: 0 8px 30px rgba(255,149,0,.4);
  transition: transform .3s;
}
.video-review-card:hover .video-play-btn { transform: scale(1.15); }
.video-review-caption {
  padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ===================== ANIMATED TRUST ICONS ===================== */
.trust-icon--animated {
  transition: transform .3s;
  animation: iconBounce 3s ease-in-out infinite;
}
.trust-card:nth-child(1) .trust-icon--animated { animation-delay: 0s; }
.trust-card:nth-child(2) .trust-icon--animated { animation-delay: 0.5s; }
.trust-card:nth-child(3) .trust-icon--animated { animation-delay: 1s; }
.trust-card:nth-child(4) .trust-icon--animated { animation-delay: 1.5s; }
.trust-card:nth-child(5) .trust-icon--animated { animation-delay: 2s; }
.trust-card:nth-child(6) .trust-icon--animated { animation-delay: 2.5s; }
@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-6px) scale(1.1); }
  50% { transform: translateY(0) scale(1); }
}
.trust-card:hover .trust-icon--animated {
  animation: iconPop .4s ease forwards;
}
@keyframes iconPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1.15) rotate(0deg); }
}

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(6,6,16,.98), rgba(6,6,16,.85));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,149,0,.15);
  transform: translateY(100%); transition: transform .4s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  width: 100%; padding: 16px; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: white; font-size: 15px; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(255,149,0,.4);
  transition: transform .3s, box-shadow .3s;
}
.sticky-cta-btn:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(255,149,0,.5); }

@media (max-width: 900px) {
  .sticky-mobile-cta { display: block; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1aab52);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .3s, box-shadow .3s;
  animation: waFloat 2s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 36px rgba(37,211,102,.7);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===================== PARALLAX ===================== */
[data-parallax] { will-change: transform; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(6, 6, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 149, 0, 0.3);
  font-size: 13px;
  color: rgba(233, 236, 255, 0.8);
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-text {
  flex: 1;
  line-height: 1.5;
}
#cookie-banner .cookie-text a {
  color: var(--orange);
  text-decoration: underline;
  margin-left: 8px;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#cookie-banner .cookie-accept {
  padding: 8px 20px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
#cookie-banner .cookie-accept:hover { background: var(--orange2); }
#cookie-banner .cookie-decline {
  padding: 8px 14px;
  background: transparent;
  color: rgba(233, 236, 255, 0.5);
  border: 1px solid rgba(233, 236, 255, 0.15);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
#cookie-banner .cookie-decline:hover { color: #fff; }
@media (max-width: 540px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 10px;
  }
  #cookie-banner .cookie-btns { justify-content: flex-end; }
}

