/* ==========================================================================
   VIPKA — GLOBAL STYLES
   ========================================================================== */

:root {
  --black: #050508;
  --black2: #0a0a10;
  --black3: #0f0f18;
  --card: #111118;
  --card2: #16161f;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --blue: #1a3fff;
  --blue-mid: #2a5cff;
  --blue-light: #4d7fff;
  --blue-glow: rgba(42, 92, 255, 0.18);
  --blue-glow-strong: rgba(42, 92, 255, 0.35);
  --gold: #c9a84c;
  --gold-light: #e5c97a;
  --white: #ffffff;
  --white80: rgba(255,255,255,0.8);
  --white50: rgba(255,255,255,0.5);
  --white20: rgba(255,255,255,0.2);
  --white10: rgba(255,255,255,0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ==========================================================================
   CONTAINER & SECTIONS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { 
  padding: 100px 0; 
  position: relative; 
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 40px rgba(42, 92, 255, 0.45); 
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(42, 92, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(77, 127, 255, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(42, 92, 255, 0.08);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.accent { color: var(--blue-light); }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-vip { color: var(--white); }
.logo-ka {
  color: var(--blue-light);
  font-style: italic;
  position: relative;
}
.logo-ka::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.logo:hover .logo-ka::after { transform: scaleX(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--white50);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: var(--white10);
}

.nav-cta { margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white50);
  padding: 10px 20px;
  transition: var(--transition);
  text-align: center;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta { margin-top: 32px; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(26, 63, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(42, 92, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 80% 20%, rgba(77, 127, 255, 0.06) 0%, transparent 60%);
}

.hero-particles { position: absolute; inset: 0; }

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

.hero-cars-visual {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 700px;
  height: 400px;
  opacity: 0.06;
}
.car-silhouette {
  position: absolute;
  border-radius: 4px;
  background: var(--white);
}
.car-1 { width: 400px; height: 3px; bottom: 80px; right: 0; }
.car-2 { width: 300px; height: 3px; bottom: 160px; right: 80px; }
.car-3 { width: 200px; height: 3px; bottom: 240px; right: 160px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(42, 92, 255, 0.1);
  border: 1px solid rgba(77, 127, 255, 0.25);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
}
.title-accent {
  background: linear-gradient(90deg, var(--blue-light), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--white50);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
.stat-suf {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--blue-light);
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white50);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-hover);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white20);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--white20);
  border-bottom: 1px solid var(--white20);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ==========================================================================
   FLEET (AUTOPARK)
   ========================================================================== */
.fleet { background: var(--black2); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.fleet-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(42, 92, 255, 0.2);
}
.fleet-card.featured {
  border-color: rgba(42, 92, 255, 0.4);
  background: linear-gradient(160deg, var(--card2) 0%, rgba(42,92,255,0.05) 100%);
}
.fleet-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue-mid);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.fleet-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fleet-img-sprinter { background: linear-gradient(135deg, #0a0f1e 0%, #1a1a30 100%); }
.fleet-img-vclass { background: linear-gradient(135deg, #0a1220 0%, #0d1f3c 100%); }
.fleet-img-sclass { background: linear-gradient(135deg, #100a1e 0%, #1e1030 100%); }
.fleet-img-lexus { background: linear-gradient(135deg, #0a1410 0%, #0d201a 100%); }

.car-icon { font-size: 60px; filter: drop-shadow(0 0 20px rgba(42, 92, 255, 0.3)); }
.fleet-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--white80);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.fleet-info { padding: 20px; }
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.fleet-info p { font-size: 13px; color: var(--white50); line-height: 1.6; margin-bottom: 16px; }

.fleet-features { display: flex; gap: 6px; flex-wrap: wrap; }
.fleet-features span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--white10);
  color: var(--white50);
  border: 1px solid var(--border);
}

.fleet-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   ABOUT TEASER
   ========================================================================== */
.about-teaser { background: var(--black); overflow: hidden; }
.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(42, 92, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--white50);
  font-size: 15px;
  margin-bottom: 16px;
}
.about-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.check {
  width: 22px; height: 22px;
  background: rgba(42, 92, 255, 0.2);
  border: 1px solid rgba(42, 92, 255, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  height: 400px;
}
.about-card-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(42, 92, 255, 0.35);
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
.about-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.about-number-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); text-align: center; }

.about-card-sm {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: cardFloat 5s ease-in-out infinite;
}
.top-right { top: 40px; right: 0; animation-delay: -2s; }
.bottom-left { bottom: 40px; left: 0; animation-delay: -1s; }
.mini-icon { font-size: 22px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--black2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--card2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p { font-size: 13px; color: var(--white50); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ==========================================================================
   BOOKING CTA
   ========================================================================== */
.booking-cta { background: var(--black); }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(42, 92, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  background: linear-gradient(135deg, var(--card) 0%, rgba(42, 92, 255, 0.07) 100%);
  border: 1px solid rgba(42, 92, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 92, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-box p { font-size: 16px; color: var(--white50); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   TESTIMONIALS (REVIEWS)
   ========================================================================== */
.testimonials { background: var(--black2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.stars { color: var(--gold-light); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.review-card p { font-size: 14px; color: var(--white80); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; font-weight: 600; }
.reviewer span { font-size: 12px; color: var(--white50); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--black); border-top: 1px solid var(--border); padding-top: 80px; position: relative; }
.footer-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at top, rgba(42, 92, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}
.footer-logo { font-size: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--white50); line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--white10);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  transition: var(--transition);
}
.social-link:hover { background: var(--blue-mid); border-color: var(--blue-mid); }

.footer-nav h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white50);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: var(--white50); transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-contact h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white50); margin-bottom: 20px;
}
.footer-contact p { margin-bottom: 8px; }
.footer-contact a { font-size: 15px; font-weight: 600; color: var(--white80); transition: var(--transition); }
.footer-contact a:hover { color: var(--blue-light); }
.footer-contact p:last-of-type { font-size: 13px; color: var(--white50); margin-bottom: 20px; }
.footer-btn { margin-top: 4px; }

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white20);
}

/* ==========================================================================
   REVEAL ANIMATIONS (ВИПРАВЛЕНО ТУТ)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

/* ==========================================================================
   PAGE HERO (INNER PAGES)
   ========================================================================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(42, 92, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  position: relative;
}
.page-hero p {
  font-size: 17px;
  color: var(--white50);
  max-width: 560px;
  margin: 16px auto 0;
  position: relative;
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.form-section { background: var(--black2); }
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white50);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(42, 92, 255, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white20); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ==========================================================================
   FAQ SECTION (ОПТИМІЗОВАНО АНІМАЦІЮ)
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 1000px; } /* Збільшено ліміт, щоб текст не обрізався */
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--white50);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ==========================================================================
   CONTACTS PAGE
   ========================================================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-hover); }
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(42, 92, 255, 0.12);
  border: 1px solid rgba(42, 92, 255, 0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white50); margin-bottom: 6px; }
.contact-item a, .contact-item p { font-size: 15px; font-weight: 600; color: var(--white80); display: block; }
.contact-item a:hover { color: var(--blue-light); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--white50); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-avatar {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--white50); }

/* ==========================================================================
   HOW TO ORDER
   ========================================================================== */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-text h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-text p { font-size: 14px; color: var(--white50); line-height: 1.65; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: clamp(38px, 10vw, 60px); }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; } /* Виправлено дублювання: тепер картки авто на мобілках в 1 ряд */
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-badge { font-size: 9px; }
  .stat-divider { display: none; }
  .hero-stats { gap: 24px; justify-content: center; }
}