/* FULLSCREEN VIDEO INTRO */
.fullscreen-video-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

.fullscreen-video-intro.hidden {
  display: none;
}

/* Video Loading Spinner */
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-loading .spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(217, 70, 181, 0.2);
  border-top: 4px solid rgba(217, 70, 181, 1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.video-loading p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-controls {
  position: absolute;
  bottom: 30px;
  bottom: calc(30px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.8) 0%, 
    rgba(16, 29, 59, 0.9) 100%
  );
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.video-control-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.video-control-btn span,
.volume-icon,
.fullscreen-icon {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(217, 70, 181, 0.4));
}

.video-control-btn:hover span,
.video-control-btn:hover .volume-icon,
.video-control-btn:hover .fullscreen-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(217, 70, 181, 0.6));
}

.volume-slider {
  width: 100px;
  height: 4px;
  background: rgba(217, 70, 181, 0.2);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(217, 70, 181, 0.5);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(217, 70, 181, 0.5);

}

.video-skip-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.7) 0%, 
    rgba(16, 29, 59, 0.85) 100%
  );
  backdrop-filter: blur(15px);
  border: 2px solid var(--border-color);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 10005;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.video-skip-button:hover {
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(68, 236, 159, 0.4);
  transform: scale(1.05);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.85) 0%, 
    rgba(16, 29, 59, 0.95) 100%
  );
}

.video-skip-button span {
  display: inline-block;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(217, 70, 181, 0.4));
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(217, 70, 181, 0.25) 50%,
    rgba(68, 236, 159, 0.3) 100%
  );
  backdrop-filter: blur(20px);
  border: 4px solid rgba(217, 70, 181, 0.8);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10005;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 40px rgba(217, 70, 181, 0.4),
    0 0 60px rgba(68, 236, 159, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.3);
  animation: playPulse 2s ease-in-out infinite;
  pointer-events: auto;
}

@keyframes playPulse {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(217, 70, 181, 0.4),
      0 0 60px rgba(68, 236, 159, 0.3),
      0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(217, 70, 181, 0.6),
      0 0 80px rgba(68, 236, 159, 0.5),
      0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  border-color: rgba(68, 236, 159, 1);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(217, 70, 181, 0.35) 50%,
    rgba(68, 236, 159, 0.4) 100%
  );
  box-shadow: 
    0 0 70px rgba(217, 70, 181, 0.7),
    0 0 100px rgba(68, 236, 159, 0.6),
    0 12px 48px rgba(0, 0, 0, 0.4);
}

.video-play-btn.hidden {
  display: none;
}

.play-icon {
  font-size: 48px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(217, 70, 181, 0.6));
  margin-left: 5px;
}

/* Video Mobile Responsive */
@media (max-width: 768px) {
  .video-controls {
    bottom: 15px;
    padding: 8px 15px;
    gap: 10px;
    max-width: 90%;
  }

  .video-control-btn {
    font-size: 20px;
    padding: 3px;
  }

  .volume-slider {
    width: 60px;
  }

  .video-skip-button {
    top: 10px;
    right: 10px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .video-play-btn {
    width: 90px;
    height: 90px;
  }

  .play-icon {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .video-controls {
    bottom: 10px;
    padding: 6px 12px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .video-control-btn {
    font-size: 18px;
  }

  .volume-slider {
    width: 50px;
  }

  .video-skip-button {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    font-size: 28px;
  }
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --primary: #44EC9F;
  --primary-light: #88FFC8;
  --secondary: #FFD700;
  --red: #FF4141;
  --blue: #00BFFF;
  --bg-black: #0A1630;
  --bg-dark-card: #101D3B;
  --bg-dark-card-hover: #18284A;
  --text-light: #E0EFFF;
  --text-medium: #A0B8D0;
  --text-dark: #7088A0;
  --border-color: rgba(68, 236, 159, 0.2);
  --border-color-hover: rgba(68, 236, 159, 0.5);
  --shadow-color: rgba(68, 236, 159, 0.1);
  --glow-color: rgba(68, 236, 159, 0.3);
  --gold: #FFD700;

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --fs-base: 16px;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;
  --fs-mega: 3rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Effects */
  --border-radius: 12px;
  --transition-fast: 0.2s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Orbitron:wght@400;700;900&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-main);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-black);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 5;
  overflow-x: hidden;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xxl);
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 2px;
  
  /* Gradient text matching site theme */
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  /* Glow and shadow */
  filter: drop-shadow(0 0 20px rgba(217, 70, 181, 0.5))
          drop-shadow(0 0 40px rgba(68, 236, 159, 0.3));
  
  /* Glass effect with background */
  position: relative;
}

.section__title::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(217, 70, 181, 0.15) 50%,
    rgba(68, 236, 159, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  z-index: -1;
}

.section-subtitle {
  text-align: center;
  font-size: var(--fs-lg);
  margin-top: calc(-1 * var(--space-md));
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(160, 184, 208, 1) 0%,
    rgba(224, 239, 255, 0.9) 50%,
    rgba(160, 184, 208, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 8px rgba(126, 236, 255, 0.3));
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.red { color: var(--red); }
.green { color: var(--primary); }

/* Gradient Backgrounds for Sections */
.gradient-hero, .gradient-problems, .gradient-transform, .gradient-benefits, .gradient-ingredients, .gradient-reviews, .gradient-calc, .gradient-pricing, .gradient-faq, .gradient-final-push, .gradient-footer {
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(68, 236, 159, 0.15), transparent),
    linear-gradient(135deg, #0A1630 0%, #1a4d9e 25%, #7933d4 50%, #d946b5 75%, #44EC9F 100%);
}

.gradient-hero {
  background: linear-gradient(135deg, #0A1630 0%, #1a4d9e 50%, #7933d4 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle 20s infinite ease-in-out;
  filter: blur(60px);
  opacity: 0.6;
}

.particle:nth-child(1) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(121, 51, 212, 0.8), transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(68, 236, 159, 0.6), transparent);
  top: 15%;
  left: 15%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.particle:nth-child(3) {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 70, 181, 0.7), transparent);
  top: 40%;
  left: 25%;
  animation-delay: -10s;
  animation-duration: 30s;
}

.particle:nth-child(4) {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 236, 255, 0.5), transparent);
  top: 60%;
  left: 10%;
  animation-delay: -15s;
  animation-duration: 22s;
}

.particle:nth-child(5) {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(26, 77, 158, 0.6), transparent);
  top: 20%;
  right: 15%;
  animation-delay: -8s;
  animation-duration: 28s;
}

.particle:nth-child(6) {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(217, 70, 181, 0.5), transparent);
  top: 50%;
  right: 20%;
  animation-delay: -12s;
  animation-duration: 26s;
}

.particle:nth-child(7) {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(68, 236, 159, 0.7), transparent);
  top: 70%;
  right: 10%;
  animation-delay: -3s;
  animation-duration: 24s;
}

.particle:nth-child(8) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(121, 51, 212, 0.6), transparent);
  bottom: 10%;
  left: 50%;
  animation-delay: -18s;
  animation-duration: 27s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, -100px) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(70px, -70px) scale(1.05);
    opacity: 0.7;
  }
}

.gradient-problems {
  background: linear-gradient(135deg, #0A1630 0%, #1a2850 100%);
}

.banner-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.solution-banner {
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, 
    transparent 0%,
    rgba(0,0,0,0.1) 3%,
    rgba(0,0,0,0.3) 6%,
    rgba(0,0,0,0.5) 9%,
    rgba(0,0,0,0.7) 12%,
    black 18%,
    black 82%,
    rgba(0,0,0,0.7) 88%,
    rgba(0,0,0,0.5) 91%,
    rgba(0,0,0,0.3) 94%,
    rgba(0,0,0,0.1) 97%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, 
    transparent 0%,
    rgba(0,0,0,0.1) 3%,
    rgba(0,0,0,0.3) 6%,
    rgba(0,0,0,0.5) 9%,
    rgba(0,0,0,0.7) 12%,
    black 18%,
    black 82%,
    rgba(0,0,0,0.7) 88%,
    rgba(0,0,0,0.5) 91%,
    rgba(0,0,0,0.3) 94%,
    rgba(0,0,0,0.1) 97%,
    transparent 100%
  );
}

.gradient-benefits, .gradient-transform {
  background: linear-gradient(135deg, #1a2850 0%, #0A1630 100%);
}

.gradient-ingredients {
  background: linear-gradient(135deg, #0A1630 0%, #2a3860 100%);
}

.gradient-reviews {
  background: linear-gradient(135deg, #2a3860 0%, #1a2850 100%);
}

.gradient-calc {
  background: linear-gradient(135deg, #1a2850 0%, #0A1630 100%);
}

.gradient-pricing {
  background: linear-gradient(135deg, #2a3860 0%, #1a2850 100%);
  position: relative;
}

.gradient-faq {
  background: linear-gradient(135deg, #0A1630 0%, #1a2850 100%);
}

.gradient-final-push {
  background: linear-gradient(135deg, #1a2850 0%, #2a3860 100%);
}

.gradient-footer {
  background: linear-gradient(135deg, #0A1630 0%, #000000 100%);
}

/* Card Styles */
.card, .pain-point, .result-card, .step, .ingredient, .review-card, .package-card, .faq-item {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.card--hover:hover, .pain-point:hover, .result-card:hover, .step:hover, .ingredient:hover, .review-card:hover, .package-card:hover, .faq-item:hover {
  transform: translateY(-10px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-glow);
  background-color: var(--bg-dark-card-hover);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--mega {
  font-size: var(--fs-lg);
  padding: var(--space-md) var(--space-xl);
  border-radius: 10px;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--bg-black);
  border-color: var(--primary);
}

.btn--primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 0 20px var(--glow-color);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background-color: var(--primary);
  color: var(--bg-black);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: #FFEB3B;
  border-color: #FFEB3B;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(68, 236, 159, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(68, 236, 159, 0); }
  100% { box-shadow: 0 0 0 0 rgba(68, 236, 159, 0); }
}

.btn--shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-30deg);
  transition: left 0.8s ease;
}

.btn--shine:hover::before {
  left: 150%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(10, 22, 48, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.color-codes {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.6);
}

.color-code {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.screen-info {
  font-size: 11px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.6);
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.header-btn {
  background: linear-gradient(135deg, #44EC9F, #7EECFF);
  color: #0A1630;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: monospace;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(68, 236, 159, 0.3);
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68, 236, 159, 0.5);
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav__link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}

/* Hero Section */
#hero {
  padding-top: calc(var(--space-xxl) + 80px); /* Adjust for header height */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero-text {
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-mega);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px var(--glow-color);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

.hero-benefits {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.hero-benefits li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.hero-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-cta .btn {
  margin-bottom: var(--space-md);
}

.urgency-timer {
  font-size: var(--fs-md);
}

#sale-timer {
  font-weight: 700;
  color: var(--red);
}

#stock-count {
  font-weight: 700;
  color: var(--red);
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s infinite ease-in-out;
}

.product-image {
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.product-image-reflection {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: scaleY(-1);
  opacity: 0.2;
  filter: blur(10px);
  z-index: 1;
}

.product-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
  z-index: 0;
  animation: glow-pulse 4s infinite ease-in-out;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Problems Section */
.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xxl);
}

.pain-point {
  text-align: center;
}

.pain-icon {
  width: 100%;
  height: 300px;
  margin-bottom: var(--space-md);
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.05) 0%, rgba(136, 255, 200, 0.05) 100%);
}

.pain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.pain-point h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--primary-light);
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.result-card {
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.1), rgba(126, 236, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(68, 236, 159, 0.3), 0 0 30px rgba(68, 236, 159, 0.2);
  border-color: var(--primary);
}

.result-full-img {
  width: 100%;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

.result-card:hover .result-full-img {
  transform: scale(1.05);
}

.result-info {
  padding: var(--space-lg);
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(10, 22, 48, 0.3));
}

.result-name {
  font-weight: 700;
  color: var(--primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-loss {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: var(--space-sm) 0;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.result-quote {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.click-hint {
  text-align: center;
  padding: var(--space-sm);
  background: linear-gradient(to bottom, rgba(68, 236, 159, 0.1), rgba(68, 236, 159, 0.2));
  font-size: var(--fs-sm);
  color: var(--primary);
  border-top: 1px solid var(--border-color);
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.result-card:hover .click-hint {
  background: linear-gradient(to bottom, rgba(68, 236, 159, 0.2), rgba(68, 236, 159, 0.3));
  color: var(--primary-light);
}

.cta-inline {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Result Modal */
.result-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 22, 48, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s;
}

.result-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-modal-content {
  position: relative;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.result-modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: var(--text-light);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

#modalResultImg {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
}

#modalResultName {
  font-size: var(--fs-xl);
  color: var(--primary);
}

.modal-result-loss {
  font-size: var(--fs-lg);
  font-weight: 700;
}

/* How It Works Section */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.step {
  text-align: center;
  padding: var(--space-xl);
  min-height: 600px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 15px rgba(68, 236, 159, 0.4));
}

.step p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text-light);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-xxl);
  font-weight: 900;
  border: 4px solid var(--bg-dark-card);
  outline: 3px solid var(--primary);
  box-shadow: 0 0 30px rgba(68, 236, 159, 0.6);
}

.step-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto var(--space-lg);
  display: block;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  position: relative;
  
  /* Анимированная светящаяся рамка */
  padding: 3px;
  background: linear-gradient(45deg, 
    #7EECFF, #44EC9F, #7EECFF, #44EC9F, 
    #7EECFF, #44EC9F, #7EECFF, #44EC9F
  );
  background-size: 400% 400%;
  animation: glowing-border 3s ease infinite;
  box-shadow: 
    0 0 20px rgba(126, 236, 255, 0.5),
    0 0 40px rgba(68, 236, 159, 0.3),
    inset 0 0 20px rgba(126, 236, 255, 0.2);
}

@keyframes glowing-border {
  0% { 
    background-position: 0% 50%;
    box-shadow: 
      0 0 20px rgba(126, 236, 255, 0.5),
      0 0 40px rgba(68, 236, 159, 0.3),
      inset 0 0 20px rgba(126, 236, 255, 0.2);
  }
  25% { 
    box-shadow: 
      0 0 30px rgba(126, 236, 255, 0.7),
      0 0 60px rgba(68, 236, 159, 0.5),
      inset 0 0 30px rgba(126, 236, 255, 0.3);
  }
  50% { 
    background-position: 100% 50%;
    box-shadow: 
      0 0 40px rgba(126, 236, 255, 0.8),
      0 0 80px rgba(68, 236, 159, 0.6),
      inset 0 0 40px rgba(126, 236, 255, 0.4);
  }
  75% { 
    box-shadow: 
      0 0 30px rgba(126, 236, 255, 0.7),
      0 0 60px rgba(68, 236, 159, 0.5),
      inset 0 0 30px rgba(126, 236, 255, 0.3);
  }
  100% { 
    background-position: 0% 50%;
    box-shadow: 
      0 0 20px rgba(126, 236, 255, 0.5),
      0 0 40px rgba(68, 236, 159, 0.3),
      inset 0 0 20px rgba(126, 236, 255, 0.2);
  }
}

.step-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: var(--border-radius);
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.step:hover .step-image {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 
    0 0 40px rgba(126, 236, 255, 0.8),
    0 0 80px rgba(68, 236, 159, 0.6),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 10px rgba(68, 236, 159, 0.5));
}

.science-proof {
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.8) 0%, 
    rgba(16, 29, 59, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: 0 0 30px rgba(68, 236, 159, 0.2);
}

.science-proof h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 2px;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 15px rgba(68, 236, 159, 0.5));
}

.studies {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.study {
  color: var(--text-light);
  font-size: var(--fs-md);
  line-height: 1.8;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.5) 0%, 
    rgba(16, 29, 59, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.study:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(68, 236, 159, 0.2);
  transform: translateY(-2px);
}

.study strong {
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(68, 236, 159, 0.3));
  font-weight: 900;
}

/* Ingredients Section */
.product-strip {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-sm);
}

.product-real {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  transition: transform var(--transition-fast);
}

.product-real:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.ingredient {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.6) 0%, 
    rgba(16, 29, 59, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ingredient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(126, 236, 255, 0.1), 
    transparent
  );
  transition: left 0.6s ease;
}

.ingredient:hover::before {
  left: 100%;
}

.ingredient:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 
    0 0 30px rgba(68, 236, 159, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.3);
}

.ing-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 15px rgba(68, 236, 159, 0.5));
  transition: transform 0.3s ease;
}

.ingredient:hover .ing-icon {
  transform: scale(1.2) rotate(5deg);
}

.ingredient h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 12px rgba(68, 236, 159, 0.4));
}

.ingredient p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text-light);
}

.ingredient p strong {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 1) 0%,
    rgba(255, 235, 59, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.formula-badge {
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.8) 0%, 
    rgba(16, 29, 59, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary);
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  text-align: center;
  margin: var(--space-xl) auto 0;
  max-width: 700px;
  box-shadow: 0 0 40px rgba(68, 236, 159, 0.3);
}

.formula-badge h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 15px rgba(68, 236, 159, 0.5));
}

.formula-badge p {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--text-light);
}

.formula-badge p strong {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 1) 0%,
    rgba(255, 235, 59, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
  font-size: var(--fs-xl);
}

/* Reviews Section */
/* Reviews Carousel */
.reviews-carousel-container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.reviews-carousel {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  padding: 40px 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.reviews-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 20px;
}

.review-card {
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.9) 0%, 
    rgba(16, 29, 59, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  min-height: 550px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

.review-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(126, 236, 255, 0.05), 
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.review-card:hover::before {
  top: 100%;
  left: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 
    0 0 40px rgba(68, 236, 159, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: var(--space-sm);
}

.stars {
  font-size: var(--fs-lg);
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.verified-badge {
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 8px rgba(68, 236, 159, 0.4));
}

.review-card h4 {
  font-size: var(--fs-xl);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
  overflow: visible;
  word-wrap: break-word;
  white-space: normal;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 10px rgba(68, 236, 159, 0.3));
}

.review-card p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: rgba(224, 239, 255, 0.9);
  flex: 1;
  margin-bottom: var(--space-md);
  overflow: visible;
  word-wrap: break-word;
  white-space: normal;
}

.review-card p strong {
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 1) 0%,
    rgba(255, 235, 59, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
  font-weight: 900;
}

.review-author {
  margin-top: auto;
  font-size: var(--fs-sm);
  color: var(--text-medium);
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 20px rgba(68, 236, 159, 0.4);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover .author-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(68, 236, 159, 0.6);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.review-author span {
  display: block;
  margin-bottom: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  text-align: center;
  margin: var(--space-xxl) 0;
}

.trust-stat {
  padding: var(--space-lg);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.6) 0%, 
    rgba(16, 29, 59, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  overflow: visible;
}

.trust-stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(68, 236, 159, 0.3);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  padding: 0.5rem 0;
  overflow: visible;
  white-space: nowrap;
  
  /* Стеклянный градиентный текст */
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 50%,
    rgba(126, 236, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 15px rgba(68, 236, 159, 0.5));
}

.trust-label {
  font-size: var(--fs-md);
  color: var(--text-light);
  overflow: visible;
}

/* Guarantee Section */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.guarantee-seal-big {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--bg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  border: 5px solid var(--bg-dark-card);
  outline: 3px solid var(--primary);
}

.guarantee-content h3 {
  font-size: var(--fs-xl);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.guarantee-benefits {
  margin: var(--space-md) 0;
}

.guarantee-benefit {
  margin-bottom: var(--space-sm);
}

.guarantee-bold {
  font-weight: 700;
  font-size: var(--fs-lg);
}

.why-guarantee {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-guarantee h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

/* Pricing Section */
.pricing-urgency {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.7) 0%, 
    rgba(16, 29, 59, 0.85) 50%,
    rgba(26, 40, 80, 0.7) 100%
  );
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  border: 2px solid rgba(68, 236, 159, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(68, 236, 159, 0.2);
}

.mega-title {
  font-size: var(--fs-mega);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 105, 180, 1) 30%,
    rgba(217, 70, 181, 1) 60%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(217, 70, 181, 0.6));
  text-shadow: none;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.pricing-subtitle {
  font-size: var(--fs-xl);
  color: rgba(224, 239, 255, 0.9);
  margin-bottom: var(--space-sm);
}

.timer-red {
  background: linear-gradient(135deg, 
    rgba(255, 65, 65, 1) 0%,
    rgba(255, 105, 180, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 65, 65, 0.5));
  font-weight: 900;
}

.stock-warning {
  font-size: var(--fs-lg);
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 1) 0%,
    rgba(255, 235, 59, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  font-weight: 700;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.5; }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-xxl);
  padding-top: 2rem;
  justify-items: center;
}

.package-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg) var(--space-md) var(--space-lg);
  margin-top: 20px; /* Уменьшено с 30px до 20px */
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.6) 0%, 
    rgba(16, 29, 59, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(68, 236, 159, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.package--popular {
  transform: scale(1);
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(68, 236, 159, 0.4), 
              0 0 80px rgba(217, 70, 181, 0.2);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.8) 0%, 
    rgba(16, 29, 59, 0.95) 50%,
    rgba(26, 40, 80, 0.8) 100%
  );
}

.popular-badge {
  background: linear-gradient(135deg, 
    rgba(68, 236, 159, 1) 0%, 
    rgba(136, 255, 200, 1) 100%
  );
  color: var(--bg-black);
  font-weight: 900;
  font-size: var(--fs-sm);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(68, 236, 159, 0.6),
              0 0 30px rgba(68, 236, 159, 0.4);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shake {
  animation: shake 3s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(-50%) rotate(0); }
  10%, 30%, 50% { transform: translateX(-50%) rotate(-3deg); }
  20%, 40% { transform: translateX(-50%) rotate(3deg); }
}

.package-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: radial-gradient(circle at center, 
    rgba(68, 236, 159, 0.1) 0%, 
    rgba(217, 70, 181, 0.05) 50%,
    transparent 100%
  );
  border-radius: var(--border-radius);
}

.package-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(68, 236, 159, 0.3));
  transition: transform 0.3s ease;
}

.package-card:hover .package-product-img {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 15px 40px rgba(68, 236, 159, 0.5));
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(217, 70, 181, 0.5));
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  /* Стеклянный эффект */
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2),
               0 4px 20px rgba(217, 70, 181, 0.3);
}

.package-subtitle {
  font-size: var(--fs-md);
  color: rgba(224, 239, 255, 0.9);
  margin-bottom: var(--space-sm);
  font-weight: 500;
  /* Стеклянный эффект */
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.15),
               0 0 20px rgba(68, 236, 159, 0.2);
  backdrop-filter: blur(2px);
}

.package-pricing {
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(68, 236, 159, 0.2);
  border-bottom: 1px solid rgba(68, 236, 159, 0.2);
}

.old-price-big {
  font-size: var(--fs-lg);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.new-price-big {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 40%,
    rgba(255, 105, 180, 1) 60%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(217, 70, 181, 0.6));
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  /* Стеклянный эффект */
  text-shadow: 0 4px 15px rgba(217, 70, 181, 0.4),
               0 2px 10px rgba(255, 255, 255, 0.2);
}

.economy {
  font-weight: 700;
  font-size: var(--fs-md);
  background: linear-gradient(135deg, 
    rgba(68, 236, 159, 1) 0%,
    rgba(136, 255, 200, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(68, 236, 159, 0.5));
  margin-bottom: 0.5rem;
  /* Стеклянный эффект */
  text-shadow: 0 2px 10px rgba(68, 236, 159, 0.3),
               0 0 15px rgba(255, 255, 255, 0.15);
}

.price-per {
  font-size: var(--fs-sm);
  color: rgba(160, 184, 208, 0.9);
  margin-top: 0.5rem;
  /* Стеклянный эффект */
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.1);
}

.package-features {
  text-align: left;
  margin: var(--space-md) 0;
  flex-grow: 1;
  padding: 0 var(--space-sm);
}

.feature {
  margin-bottom: 0.8rem;
  font-size: var(--fs-md);
  color: rgba(224, 239, 255, 0.95);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* Стеклянный эффект */
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.1),
               0 2px 8px rgba(68, 236, 159, 0.15);
}

.package-card .order-btn {
  width: 100%;
  margin-top: var(--space-md);
  background: linear-gradient(135deg, 
    rgba(68, 236, 159, 0.9) 0%, 
    rgba(136, 255, 200, 0.9) 50%,
    rgba(68, 236, 159, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-black);
  font-weight: 900;
  font-size: var(--fs-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(68, 236, 159, 0.4),
              0 0 40px rgba(68, 236, 159, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card .order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(68, 236, 159, 0.6),
              0 0 60px rgba(68, 236, 159, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, 
    rgba(136, 255, 200, 1) 0%, 
    rgba(68, 236, 159, 1) 50%,
    rgba(136, 255, 200, 1) 100%
  );
  border-color: rgba(255, 255, 255, 0.5);
}

.package-card .order-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 70%
  );
  transform: rotate(45deg);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus {
  color: var(--gold);
  font-weight: 700;
}

.best-value {
  margin-top: var(--space-md);
  font-weight: 700;
  color: var(--gold);
}

/* Order Form */
.order-form-container {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  margin: var(--space-xxl) auto 0;
  max-width: 800px;
}

.form-title {
  text-align: center;
  font-size: var(--fs-xl);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.form-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
}

.label-text {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-medium);
}

.form-input, textarea, select {
  width: 100%;
  padding: var(--space-sm);
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: var(--fs-md);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--glow-color);
}

.order-summary {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-md) 0;
  margin: var(--space-lg) 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.summary-row.total {
  font-size: var(--fs-lg);
  font-weight: 700;
}

.form-agreement {
  margin-bottom: var(--space-lg);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.submit-order {
  width: 100%;
}

.btn-sub {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  color: var(--text-medium);
}

.trust-icon {
  font-size: var(--fs-xl);
}

.last-orders {
  text-align: center;
  margin-top: var(--space-lg);
}

/* FAQ Section */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-bottom: 2px solid rgba(68, 236, 159, 0.2);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.3) 0%, 
    rgba(16, 29, 59, 0.5) 100%
  );
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  padding: var(--space-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(68, 236, 159, 0.4);
  box-shadow: 0 4px 16px rgba(68, 236, 159, 0.2);
}

.faq-item summary {
  font-size: var(--fs-lg);
  font-weight: 700;
  cursor: pointer;
  padding: var(--space-md) 0;
  position: relative;
  padding-right: var(--space-lg);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(217, 70, 181, 0.3));
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 2rem;
  background: linear-gradient(135deg, 
    rgba(68, 236, 159, 1) 0%,
    rgba(217, 70, 181, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: var(--space-md);
  color: var(--text-medium);
}

.faq-answer strong {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 105, 180, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.5) 0%, 
    rgba(16, 29, 59, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 2px solid rgba(68, 236, 159, 0.3);
}

.faq-cta-text {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.faq-cta-text strong {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  filter: drop-shadow(0 0 10px rgba(217, 70, 181, 0.4));
}

/* Final Push Section */
.final-push {
  text-align: center;
}

.final-title {
  font-size: var(--fs-xxl);
  color: var(--red);
}

.final-text, .final-warning {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.final-motivation {
  font-size: var(--fs-lg);
  margin: var(--space-xl) 0;
  line-height: 1.8;
}

.final-guarantee {
  margin-top: var(--space-md);
  color: var(--text-medium);
}

/* Footer */
.footer-new {
  padding-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  padding: var(--space-md);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(217, 70, 181, 1) 50%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(217, 70, 181, 0.3));
  font-weight: 700;
}

.footer-text {
  color: var(--text-medium);
  margin-bottom: var(--space-sm);
}

.footer-rating {
  font-size: var(--fs-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-medium);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contacts {
  list-style: none;
}

.footer-contacts li {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.footer-contacts a {
  color: var(--text-medium);
  transition: color var(--transition-fast);
}

.footer-contacts a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-icon {
  font-size: var(--fs-xl);
  transition: transform var(--transition-fast);
}

.social-icon:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 2px solid rgba(68, 236, 159, 0.2);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  text-align: center;
  color: var(--text-dark);
}

.footer-disclaimer {
  font-size: 0.75rem;
  margin: var(--space-md) 0;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ORDER POPUP MODAL */
.order-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.order-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-popup-content {
  background: linear-gradient(135deg, 
    rgba(26, 40, 80, 0.95) 0%, 
    rgba(16, 29, 59, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(68, 236, 159, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.order-popup-overlay.active .order-popup-content {
  transform: scale(1);
}

.order-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.order-popup-close:hover {
  background: rgba(255, 65, 65, 0.2);
  color: #FF4141;
  transform: rotate(90deg);
}

.order-popup-title {
  font-size: var(--fs-xxl);
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(126, 236, 255, 1) 0%,
    rgba(68, 236, 159, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.order-popup-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: var(--fs-lg);
}

.order-popup-subtitle strong {
  color: var(--primary);
  font-size: var(--fs-xl);
}

.order-popup-form .form-group {
  margin-bottom: 1.5rem;
}

.order-popup-form label {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.order-popup-form input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 22, 48, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: var(--fs-md);
  transition: all 0.3s ease;
}

.order-popup-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(68, 236, 159, 0.3);
}

.order-popup-form input::placeholder {
  color: var(--text-dark);
}

.order-popup-form .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 16px;
  font-size: var(--fs-lg);
}

.order-popup-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-medium);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.order-success-message {
  text-align: center;
  padding: 2rem 0;
}

.order-success-message .success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--bg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.order-success-message h3 {
  color: var(--primary);
  font-size: var(--fs-xxl);
  margin-bottom: 1rem;
}

.order-success-message p {
  color: var(--text-light);
  font-size: var(--fs-lg);
}

/* Responsive */
@media (max-width: 992px) {
  .reviews-masonry {
    column-count: 2;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .product-image-container {
    order: 1;
    margin-bottom: var(--space-xl);
  }
  .hero-cta {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav__list {
    display: none; /* Simple hide for now, would need JS for a burger menu */
  }
  .reviews-masonry {
    column-count: 1;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Review Form Modal */
.review-form-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.review-form-modal.active {
  display: flex;
}

.review-form-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 48, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.review-form-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(26, 40, 80, 0.95) 0%, rgba(16, 29, 59, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(68, 236, 159, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(68, 236, 159, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-form-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.review-form-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.review-form-title {
  font-size: var(--font-size-xxl);
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #7EECFF 0%, var(--color-primary) 50%, #7EECFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(126, 236, 255, 0.5));
}

.review-form-subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-md);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: linear-gradient(135deg, rgba(26, 40, 80, 0.6) 0%, rgba(16, 29, 59, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(68, 236, 159, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--color-text-light);
  font-size: var(--font-size-md);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(68, 236, 159, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rating-stars {
  display: flex;
  gap: var(--space-sm);
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.rating-stars .star {
  color: rgba(255, 215, 0, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
}

.rating-stars .star:hover,
.rating-stars .star.active {
  color: #FFD700;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  transform: scale(1.2);
}

.review-form .btn {
  margin-top: var(--space-md);
  width: 100%;
  font-size: var(--font-size-lg);
  padding: var(--space-lg) var(--space-xl);
}

.review-form-success {
  text-align: center;
  padding: var(--space-xxl) 0;
  animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  animation: successPulse 1s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.review-form-success h3 {
  font-size: var(--font-size-xxl);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #7EECFF 0%, var(--color-primary) 50%, #7EECFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(126, 236, 255, 0.5));
}

.review-form-success p {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.success-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-medium);
}

.add-review-section {
  text-align: center;
  margin: var(--space-xxl) 0;
}

.add-review-section .btn {
  font-size: var(--font-size-lg);
  padding: var(--space-lg) var(--space-xxl);
}

@media (max-width: 768px) {
  .review-form-content {
    padding: var(--space-xl);
    max-height: 95vh;
  }

  .review-form-title {
    font-size: var(--font-size-xl);
  }

  .rating-stars {
    font-size: 1.5rem;
  }

  .success-icon {
    font-size: 4rem;
  }
}

/* GIF Fade In Animation */
@keyframes fadeInGif {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Toast Notifications - Glassmorphism Design */
.toasts { 
  position: fixed !important; 
  top: 80px !important; 
  right: 20px !important; 
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important; 
  z-index: 999999 !important; 
  max-width: 380px !important; 
  pointer-events: none !important; 
}

.toast { 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-left: 3px solid rgba(68, 236, 159, 0.8) !important;
  color: #ffffff !important; 
  padding: 12px 16px 12px 52px !important; 
  border-radius: 12px !important; 
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important; 
  animation: slideInRight 500ms cubic-bezier(0.34, 1.56, 0.64, 1) !important; 
  font-size: 13px !important; 
  line-height: 1.4 !important; 
  pointer-events: auto !important;
  position: relative !important;
  min-width: 280px !important;
  max-width: 320px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  user-select: none !important;
  touch-action: pan-x !important;
}

.toast:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.toast:active {
  cursor: grabbing !important;
}

.toast.swiping {
  transition: none !important;
}

.toast.removing {
  animation: slideOutRight 300ms ease-out forwards !important;
}

.toast::before {
  content: '🛒' !important;
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 20px !important;
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.25), rgba(68, 236, 159, 0.15)) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(68, 236, 159, 0.3) !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 4px 12px rgba(68, 236, 159, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.toast strong {
  color: #44EC9F !important;
  font-weight: 600 !important;
  text-shadow: 0 0 10px rgba(68, 236, 159, 0.5) !important;
}

.toast-exit { 
  animation: slideOutRight 400ms cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards !important; 
}

@keyframes slideInRight { 
  0% { 
    transform: translateX(450px) scale(0.8); 
    opacity: 0; 
  }
  60% {
    transform: translateX(-10px) scale(1.02);
    opacity: 1;
  }
  100% { 
    transform: translateX(0) scale(1); 
    opacity: 1; 
  } 
}

@keyframes slideOutRight { 
  from { 
    transform: translateX(0) scale(1); 
    opacity: 1; 
  } 
  to { 
    transform: translateX(450px) scale(0.8); 
    opacity: 0; 
  } 
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.2), rgba(68, 236, 159, 0.1));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(68, 236, 159, 0.4);
  color: #44EC9F;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.4), rgba(68, 236, 159, 0.2));
  border-color: rgba(68, 236, 159, 0.8);
  box-shadow: 0 0 25px rgba(68, 236, 159, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-xl);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(68, 236, 159, 0.2);
  border: 2px solid rgba(68, 236, 159, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(68, 236, 159, 0.4);
  border-color: rgba(68, 236, 159, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: #44EC9F;
  border-color: #44EC9F;
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(68, 236, 159, 0.6);
}

/* Responsive */
/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Tablets and below */
@media (max-width: 1024px) {
  :root {
    --fs-mega: 2.5rem;
    --fs-xxl: 1.75rem;
    --fs-xl: 1.35rem;
    --space-xxl: 4rem;
    --space-xl: 2.5rem;
  }

  .container {
    width: 95%;
    padding: 0 var(--space-sm);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .packages-grid,
  .pain-points,
  .benefits-grid,
  .ingredients-grid,
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
  }

  .video-preview {
    max-width: 90%;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  :root {
    --fs-mega: 2rem;
    --fs-xxl: 1.5rem;
    --fs-xl: 1.25rem;
    --fs-lg: 1.1rem;
    --space-xxl: 3rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  /* Hero Section */
  .hero-content {
    padding: var(--space-lg);
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: var(--space-md);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
  }

  .hero-feature {
    font-size: 0.85rem;
    flex: 0 0 auto;
  }

  /* Buttons */
  .btn--mega {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .btn--large {
    font-size: 0.95rem;
    padding: 0.9rem 1.3rem;
  }

  /* Discount Badge */
  .discount-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  /* Timer */
  .timer {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .timer-item {
    min-width: 70px;
  }

  .timer-value {
    font-size: 1.75rem;
  }

  .timer-label {
    font-size: 0.75rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Pain Points Grid */
  .pain-points {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pain-point {
    padding: var(--space-md);
  }

  .pain-icon {
    height: 280px;
  }

  .pain-point h3 {
    font-size: 1.1rem;
  }

  /* Results Grid */
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: auto;
  }

  /* Steps */
  .steps-container {
    gap: var(--space-md);
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: var(--space-md);
  }

  .step-number {
    font-size: 2rem;
    width: 60px;
    height: 60px;
  }

  .step h3 {
    font-size: 1.2rem;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    padding: var(--space-md);
  }

  .benefit-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }

  /* Ingredients Grid */
  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .ingredient {
    padding: var(--space-md);
  }

  /* Review Cards */
  .review-card {
    min-height: auto;
    padding: var(--space-md);
  }

  .reviewer-avatar {
    width: 60px;
    height: 60px;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .review-date {
    font-size: 0.8rem;
  }

  /* Calculator */
  .calculator-container {
    padding: var(--space-md);
  }

  .calc-inputs {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .calc-result {
    padding: var(--space-md);
  }

  .calc-result-value {
    font-size: 2rem;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-top: 1rem;
  }

  .package-card {
    margin-top: 20px;
    padding: var(--space-md);
  }

  .package--popular {
    transform: scale(1);
  }

  .popular-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    top: -15px;
  }

  .package-image {
    height: 200px;
  }

  .package-header h3 {
    font-size: 2rem;
  }

  .new-price-big {
    font-size: 2.5rem;
  }

  .old-price-big {
    font-size: 1.1rem;
  }

  .package-features {
    margin: var(--space-md) 0;
  }

  .feature {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  /* FAQ */
  .faq-item {
    padding: var(--space-md);
  }

  .faq-question {
    font-size: 1rem;
    padding-right: 2.5rem;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* Video */
  .video-preview {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .play-button {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-card {
    padding: var(--space-md);
  }

  .stat-value {
    font-size: 2rem;
  }

  /* Footer */
  .footer-new {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Support Chat */
  .support-chat-button {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  .support-chat-window {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }

  .support-chat-tooltip {
    right: 20px;
    bottom: 85px;
    max-width: calc(100% - 40px);
  }

  .support-chat-messages {
    height: calc(100vh - 200px);
  }

  /* Carousel */
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .reviews-carousel-container {
    padding: 0 50px;
    max-width: 100%;
  }

  .review-card {
    width: 100%;
    max-width: 350px;
    min-height: auto;
    padding: var(--space-md);
  }

  .reviews-slide {
    padding: 0 10px;
  }

  /* Toast notifications mobile */
  .toasts {
    right: 10px !important;
    left: 10px !important;
    max-width: calc(100% - 20px) !important;
  }

  .toast {
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px 10px 48px !important;
    font-size: 12px !important;
  }

  .toast::before {
    left: 10px !important;
    font-size: 18px !important;
    width: 32px !important;
    height: 32px !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  :root {
    --fs-mega: 1.75rem;
    --fs-xxl: 1.35rem;
    --fs-xl: 1.15rem;
    --space-xxl: 2.5rem;
    --space-xl: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn--mega {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .timer-item {
    min-width: 65px;
  }

  .timer-value {
    font-size: 1.5rem;
  }

  .pain-icon {
    height: 250px;
  }

  .package-header h3 {
    font-size: 1.75rem;
  }

  .new-price-big {
    font-size: 2rem;
  }

  .package-image {
    height: 180px;
  }

  .reviews-carousel-container {
    padding: 0 45px;
  }

  .review-card {
    width: 100%;
    max-width: 280px;
    padding: var(--space-sm);
  }

  .review-card h4 {
    font-size: 1rem;
  }

  .review-card p {
    font-size: 0.85rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .support-chat-button {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Landscape mobile fix */
@media (max-height: 600px) and (orientation: landscape) {
  .support-chat-window {
    max-height: 95vh;
  }

  .support-chat-messages {
    height: calc(95vh - 200px);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .card,
  .faq-question {
    cursor: default;
  }

  .btn:active {
    transform: scale(0.98);
  }

  .card--hover:active {
    transform: translateY(-3px);
  }
}
