@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --color-neon-flame: #FF3D00;
  --color-cyber-aqua: #00FFE1;
  --color-electric-limeade: #D4FF00;
  --color-cosmic-purple: #7B2CFF;
  --color-azure-pulse: #0096FF;
  --color-dark-bg: #0a0a0f;
  --color-card-bg: rgba(20, 20, 30, 0.6);
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-weight-display: 700;
  --font-weight-body: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 60px rgba(123, 44, 255, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.15);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --margin-section-desktop: 120px;
  --margin-section-mobile: 64px;
  --margin-card: 24px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-dark-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-azure-pulse);
  text-decoration: none;
  transition: color var(--transition-fast), box-shadow var(--transition-fast);
}

a:hover {
  color: var(--color-cyber-aqua);
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-cyber-aqua);
  transition: width var(--transition-medium);
}

.link-underline:hover::after {
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-title {
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

nav a:hover {
  color: var(--color-text-primary);
}

main {
  min-height: 60vh;
}

section {
  padding: var(--margin-section-desktop) 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: var(--margin-section-mobile) 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: transform var(--transition-medium), filter var(--transition-medium), box-shadow var(--transition-medium);
}

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-neon-flame), #ff5722);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 61, 0, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255, 61, 0, 0.5);
}

.order-form .btn-primary {
  position: relative;
  overflow: hidden;
}

.order-form .btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-neon-flame), var(--color-cyber-aqua), var(--color-azure-pulse));
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 4s ease infinite;
}

.order-form .btn-primary:hover::before {
  opacity: 0.3;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-secondary {
  background: transparent;
  color: var(--color-azure-pulse);
  border: 1px solid var(--color-azure-pulse);
}

.btn-secondary:hover {
  background: rgba(0, 150, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(123, 44, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-v2 {
  padding: 5rem 2rem 6rem;
}

.hero-v2 .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 44, 255, 0.4) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 225, 0.25) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
  animation-duration: 22s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  animation-duration: 25s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  opacity: 0;
  animation: gridFade 3s ease 1s forwards;
}

@keyframes gridFade {
  to { opacity: 1; }
}

.hero-v2 .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-visual-reveal {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  animation: heroVisualReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes heroVisualReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-product-wrap {
  position: relative;
  z-index: 3;
}

.hero-v2 .hero-product-image {
  position: relative;
  animation: heroFloat 5s ease-in-out infinite;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hero-v2 .hero-product-image::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(123, 44, 255, 0.25) 0%, rgba(0, 255, 225, 0.1) 40%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(0, 255, 225, 0.2);
  border-radius: 50%;
  animation: ringExpand 6s ease-in-out infinite;
}

.hero-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.hero-ring-2 { width: 280px; height: 280px; animation-delay: -2s; }
.hero-ring-3 { width: 360px; height: 360px; animation-delay: -4s; }

@keyframes ringExpand {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-cyber-aqua);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleDrift 8s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { top: 60%; right: 20%; animation-delay: -2s; }
.hero-particles .particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: -4s; }
.hero-particles .particle:nth-child(4) { top: 40%; right: 10%; animation-delay: -1s; }
.hero-particles .particle:nth-child(5) { top: 70%; left: 30%; animation-delay: -3s; }

@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  25% { transform: translate(10px, -15px); opacity: 0.3; }
  50% { transform: translate(-5px, 10px); opacity: 0.8; }
  75% { transform: translate(-15px, -5px); opacity: 0.4; }
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-badge.hero-reveal { animation-delay: 0.15s; }
.hero-title.hero-reveal { animation-delay: 0.35s; }
.hero-description.hero-reveal { animation-delay: 0.55s; }
.hero-price.hero-reveal { animation-delay: 0.75s; }
.hero-highlights.hero-reveal { animation-delay: 0.95s; }
.order-form.hero-reveal { animation-delay: 1.15s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-v2 .hero-content h1,
.hero-v2 .hero-title {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-title-line:first-child {
  background: linear-gradient(135deg, #fff 0%, var(--color-cyber-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  -webkit-text-fill-color: initial;
  color: var(--color-text-secondary);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.hero-badge .hero-stars {
  display: flex;
  gap: 2px;
  color: var(--color-electric-limeade);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--color-electric-limeade);
}

.hero-trust-badge {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-v2 .hero-price {
  gap: 0.75rem 1.5rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-neon-flame);
}

.price-old {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-tag {
  font-size: 0.8125rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 255, 225, 0.15);
  color: var(--color-cyber-aqua);
  border-radius: 999px;
  font-weight: 500;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.hero-highlight:hover {
  color: var(--color-cyber-aqua);
  transform: translateX(4px);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 255, 225, 0.1);
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.highlight-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-cyber-aqua);
}

.hero-highlight svg {
  flex-shrink: 0;
  stroke: var(--color-cyber-aqua);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-azure-pulse);
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.2);
}

.form-input::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-input.has-value ~ .form-label {
  top: -0.5rem;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--color-azure-pulse);
  background: var(--color-dark-bg);
  padding: 0 0.25rem;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-azure-pulse);
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.form-checkbox-label a {
  text-decoration: underline;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-neon-flame);
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error .form-input {
  border-color: var(--color-neon-flame);
}

.social-proof {
  text-align: center;
}

.social-proof .rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  font-size: 0.9375rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--margin-card);
  margin-top: 2rem;
}

.review-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
  color: var(--color-electric-limeade);
}

.review-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.review-card-author {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: var(--margin-card);
}

.bento-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.bento-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 2; }
.bento-item:nth-child(5) { grid-column: span 2; }
.bento-item:nth-child(6) { grid-column: span 2; }

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  stroke: var(--color-cyber-aqua);
}

.bento-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.bento-item p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-overview-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-overview-content h2 {
  margin-bottom: 1.5rem;
}

.product-overview-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--margin-card);
}

.spec-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.spec-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  stroke: var(--color-azure-pulse);
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-text-primary);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
  text-align: center;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.step-card {
  padding: 2rem 1rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--color-cosmic-purple), var(--color-azure-pulse));
  border-radius: 50%;
  color: white;
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--margin-card);
}

.ingredient-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.ingredient-card h4 {
  margin-bottom: 0.5rem;
}

.ingredient-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.instructions-list {
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.instruction-step:last-child {
  border-bottom: none;
}

.instruction-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: var(--font-weight-bold);
  background: rgba(0, 255, 225, 0.1);
  border-radius: var(--radius-input);
  color: var(--color-cyber-aqua);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-cyber-aqua);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-medium);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(123, 44, 255, 0.08));
  border-radius: var(--radius-card);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-contact {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-contact p {
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.footer-supplement-note {
  font-size: 0.8125rem !important;
  color: var(--color-text-muted) !important;
  margin-top: 0.75rem !important;
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--color-azure-pulse);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-text-secondary);
}

.footer-links a:hover {
  color: var(--color-cyber-aqua);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner h3 {
  margin-bottom: 0.75rem;
}

.cookie-banner p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cookie-settings {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-label {
  font-weight: var(--font-weight-medium);
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: var(--color-border);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-cyber-aqua);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}

.cookie-toggle.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.policy-page main,
.thank-you-page main {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1,
.thank-you-page h1 {
  margin-bottom: 2rem;
}

.policy-page h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.policy-page p,
.policy-page li {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  cursor: pointer;
  padding: 10px;
  transition: all var(--transition-medium);
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.wellness-stats {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(123, 44, 255, 0.15), rgba(0, 150, 255, 0.08));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(123, 44, 255, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-cyber-aqua), var(--color-azure-pulse));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--color-cyber-aqua);
  margin-left: 2px;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.policy-luxury .policy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.policy-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(123, 44, 255, 0.12), rgba(0, 150, 255, 0.06));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.policy-date-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-cyber-aqua);
}

.policy-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.policy-content .policy-block {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.policy-content .policy-block:hover {
  border-color: rgba(0, 255, 225, 0.2);
}

.policy-content .policy-block h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}

.thank-you-luxury .thank-you-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.thank-you-card {
  max-width: 520px;
  text-align: center;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(123, 44, 255, 0.15), rgba(0, 150, 255, 0.08));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  animation: cardReveal 0.6s ease-out;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-you-icon {
  margin-bottom: 1.5rem;
  color: var(--color-cyber-aqua);
}

.thank-you-icon svg {
  animation: iconPulse 0.5s ease 0.2s both;
}

@keyframes iconPulse {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-card h1 {
  margin-bottom: 1rem;
}

.thank-you-lead {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible .review-card,
.fade-in.visible .bento-item,
.fade-in.visible .spec-card,
.fade-in.visible .ingredient-card,
.fade-in.visible .stat-item {
  animation: itemReveal 0.5s ease forwards;
}

.fade-in.visible .review-card:nth-child(1),
.fade-in.visible .bento-item:nth-child(1),
.fade-in.visible .spec-card:nth-child(1),
.fade-in.visible .stat-item:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.fade-in.visible .review-card:nth-child(2),
.fade-in.visible .bento-item:nth-child(2),
.fade-in.visible .spec-card:nth-child(2),
.fade-in.visible .stat-item:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.fade-in.visible .review-card:nth-child(3),
.fade-in.visible .bento-item:nth-child(3),
.fade-in.visible .spec-card:nth-child(3),
.fade-in.visible .stat-item:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.fade-in.visible .review-card:nth-child(4),
.fade-in.visible .bento-item:nth-child(4),
.fade-in.visible .spec-card:nth-child(4),
.fade-in.visible .stat-item:nth-child(4) { animation-delay: 0.4s; opacity: 0; }
.fade-in.visible .review-card:nth-child(5),
.fade-in.visible .bento-item:nth-child(5) { animation-delay: 0.5s; opacity: 0; }
.fade-in.visible .review-card:nth-child(6),
.fade-in.visible .bento-item:nth-child(6) { animation-delay: 0.6s; opacity: 0; }

@keyframes itemReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .hero-v2 .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-v2 .hero-visual {
    order: 1;
    min-height: 320px;
  }

  .hero-v2 .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-item:nth-child(2) { grid-column: span 2; }
  .bento-item:nth-child(5) { grid-column: span 2; }
  .bento-item:nth-child(6) { grid-column: span 2; }

  .product-overview {
    grid-template-columns: 1fr;
  }

  .product-overview-image {
    order: 1;
  }

  .product-overview-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--color-border);
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--color-border);
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-v2 {
    padding: 4rem 1.5rem 4rem;
  }

  .hero-v2 .hero-visual {
    min-height: 280px;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item:nth-child(1),
  .bento-item:nth-child(2),
  .bento-item:nth-child(5),
  .bento-item:nth-child(6) {
    grid-column: span 1;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 0.9375rem;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .burger-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .burger-btn span {
    width: 18px;
  }

  section {
    padding: 3rem 1rem;
  }

  .hero {
    padding: 4rem 1rem 2.5rem;
    min-height: auto;
  }

  .hero-content h1,
  .hero-title-line:first-child {
    font-size: 1.75rem;
  }

  .hero-title-accent {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-suffix {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .bento-item {
    padding: 1.5rem;
  }

  .bento-item h3 {
    font-size: 1rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card-text {
    font-size: 0.875rem;
  }

  .cookie-banner {
    padding: 1.25rem;
  }

  .policy-main {
    padding: 3rem 1rem 4rem;
  }

  .policy-hero {
    padding: 2rem 1rem;
  }

  .policy-content .policy-block {
    padding: 1.25rem;
  }

  .thank-you-card {
    padding: 2.5rem 1.5rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.8125rem;
  }
}
