:root {
  --color-hyper-pink: #FF2E9F;
  --color-neon-lagoon: #00F5D4;
  --color-solar-lime: #B8FF00;
  --color-ultraviolet: #6A00FF;
  --color-digital-sky: #3A86FF;
  --color-text-primary: #0f0f14;
  --color-text-secondary: #4a4a5a;
  --color-bg-base: #fafbfc;
  --color-bg-card: rgba(255, 255, 255, 0.85);
  --color-border: rgba(15, 15, 20, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.3);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-weight-display: 700;
  --font-weight-body: 400;
  --font-weight-medium: 500;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.15;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.75;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --shadow-soft: 0 4px 24px rgba(106, 0, 255, 0.08);
  --shadow-elevated: 0 12px 40px rgba(15, 15, 20, 0.1);
  --shadow-glow: 0 0 40px rgba(106, 0, 255, 0.15);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --margin-section-desktop: 120px;
  --margin-section-mobile: 64px;
  --margin-card: 24px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background: var(--color-bg-base);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  position: relative;
  color: var(--color-digital-sky);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-ultraviolet);
}

a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

a:hover:not(.btn)::after {
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 251, 252, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--margin-card);
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.nav-links a:hover {
  color: var(--color-ultraviolet);
}

main {
  min-height: 60vh;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-inner {
  text-align: center;
}

.thank-you-icon {
  display: block;
  font-size: 4rem;
  color: var(--color-ultraviolet);
  margin: 0 auto 1.5rem;
}

.thank-you-inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

.thank-you-inner p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto 1rem;
}

.thank-you-inner p:last-of-type {
  margin-bottom: 2rem;
}

section {
  padding: var(--margin-section-desktop) var(--margin-card);
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: var(--margin-section-mobile) 1.5rem;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 90vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-new {
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  padding: 3rem var(--margin-card);
}

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106, 0, 255, 0.35) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.25) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(106, 0, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 0, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content-new {
  max-width: 540px;
}

.hero-pretitle {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-neon-lagoon);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-title-new {
  margin-bottom: 0.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-title-gradient {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  background: linear-gradient(135deg, var(--color-ultraviolet), var(--color-digital-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: titleReveal 0.8s ease forwards 0.4s;
}

@keyframes titleReveal {
  to { opacity: 1; }
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-pretitle.hero-reveal { animation-delay: 0.05s; }
.hero-title-new.hero-reveal { animation-delay: 0.1s; }
.hero-desc.hero-reveal { animation-delay: 0.25s; }
.hero-badges.hero-reveal { animation-delay: 0.35s; }
.hero-price-block.hero-reveal { animation-delay: 0.45s; }
.hero-highlights-new.hero-reveal { animation-delay: 0.55s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stars-animated span {
  display: inline-block;
  animation: starPop 0.5s ease backwards;
}

.hero-stars-animated span:nth-child(1) { animation-delay: 0.9s; }
.hero-stars-animated span:nth-child(2) { animation-delay: 0.95s; }
.hero-stars-animated span:nth-child(3) { animation-delay: 1s; }
.hero-stars-animated span:nth-child(4) { animation-delay: 1.05s; }
.hero-stars-animated span:nth-child(5) { animation-delay: 1.1s; }

@keyframes starPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-trust-tag {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.hero-highlights-new {
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: rgba(106, 0, 255, 0.08);
  border: 1px solid rgba(106, 0, 255, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
}

.hero-pill:hover {
  background: rgba(106, 0, 255, 0.12);
  border-color: rgba(106, 0, 255, 0.25);
  transform: translateY(-2px);
}

.hero-pill-icon {
  color: var(--color-neon-lagoon);
  font-size: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-price-animated {
  animation: priceReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes priceReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.order-form-new {
  animation: formReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.95s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes formReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-hero-cta {
  position: relative;
  overflow: hidden;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-neon-lagoon), var(--color-digital-sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hero-cta:hover::before {
  opacity: 0.2;
}

.hero-visual-new {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(106, 0, 255, 0.2);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.hero-orbit-1 {
  width: 320px;
  height: 320px;
}

.hero-orbit-2 {
  width: 420px;
  height: 420px;
  animation-duration: 28s;
  animation-direction: reverse;
  border-color: rgba(0, 245, 212, 0.15);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(106, 0, 255, 0.4);
  box-shadow: 0 0 30px rgba(106, 0, 255, 0.2), inset 0 0 30px rgba(0, 245, 212, 0.05);
  animation: glowRing 4s ease-in-out infinite;
}

@keyframes glowRing {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.hero-glow-new {
  position: absolute;
  width: 100%;
  max-width: 380px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(106, 0, 255, 0.25) 0%, rgba(0, 245, 212, 0.08) 40%, transparent 70%);
  animation: glowBreath 5s ease-in-out infinite;
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-product-new {
  position: relative;
  width: 100%;
  max-width: 340px;
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

body:has(.hero-luxury) header {
  background: rgba(12, 11, 18, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body:has(.hero-luxury) .brand {
  color: #fff;
}

body:has(.hero-luxury) .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

body:has(.hero-luxury) .nav-links a:hover {
  color: var(--color-neon-lagoon);
}

body:has(.hero-luxury) .burger-btn .burger-line {
  background: #fff;
}

.hero-luxury {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem var(--margin-card);
  overflow: hidden;
}

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

.hero-luxury-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0c0b12 0%, #151320 25%, #0f0e18 50%, #12101b 100%);
}

.hero-luxury-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-luxury-ray {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(106, 0, 255, 0.15), transparent);
  animation: rayFade 6s ease-in-out infinite;
}

.hero-luxury-ray-1 { left: 20%; animation-delay: 0s; }
.hero-luxury-ray-2 { left: 50%; animation-delay: -2s; }
.hero-luxury-ray-3 { left: 80%; animation-delay: -4s; }

@keyframes rayFade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

.hero-luxury-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: shapeFloat 15s ease-in-out infinite;
}

.hero-luxury-shape-1 {
  width: 600px;
  height: 600px;
  top: -30%;
  right: -20%;
  animation-delay: 0s;
}

.hero-luxury-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  left: -10%;
  animation-delay: -5s;
}

.hero-luxury-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-15px, 15px) rotate(-5deg); }
}

.hero-luxury-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-luxury-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.hero-luxury-spotlight {
  position: absolute;
  width: 140%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(106, 0, 255, 0.18) 0%, rgba(0, 245, 212, 0.04) 30%, transparent 60%);
  animation: spotlightPulse 5s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-luxury-ring {
  position: absolute;
  border-radius: 50%;
  animation: ringRotate 25s linear infinite;
}

.hero-luxury-ring-outer {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(106, 0, 255, 0.25);
  box-shadow: 0 0 30px rgba(106, 0, 255, 0.1);
  animation-direction: reverse;
}

.hero-luxury-ring-inner {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation-duration: 18s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-luxury-shine {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.03) 45%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 55%, transparent 100%);
  background-size: 200% 100%;
  animation: shineSweep 4s ease-in-out infinite;
}

@keyframes shineSweep {
  0% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}

.hero-luxury-product {
  position: relative;
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: luxuryFloat 7s ease-in-out infinite;
}

@keyframes luxuryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-luxury-content {
  max-width: 520px;
}

.hero-luxury-pretitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 245, 212, 0.9);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease forwards;
}

.hero-luxury-title {
  margin-bottom: 1rem;
}

.hero-luxury-title-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 60px rgba(106, 0, 255, 0.3);
  animation: titleSlide 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-luxury-title-sub {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
  animation: titleSlide 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  opacity: 0;
  transform: translateY(20px);
}


@keyframes titleSlide {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-luxury-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon-lagoon), transparent);
  margin: 1.25rem 0;
  animation: dividerGrow 1s ease 0.4s forwards;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes dividerGrow {
  to { transform: scaleX(1); }
}

.hero-luxury-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.35s forwards;
  opacity: 0;
}

.hero-luxury-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-luxury-stars {
  color: #B8FF00;
  letter-spacing: 2px;
}

.hero-luxury-trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-luxury-price-row {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-luxury-price {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: #fff;
  margin-right: 0.75rem;
  display: inline-block;
}

.hero-luxury-old-price {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.hero-luxury-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.65s forwards;
  opacity: 0;
}

.hero-luxury-pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.hero-luxury-pill:hover {
  background: rgba(106, 0, 255, 0.15);
  border-color: rgba(106, 0, 255, 0.3);
  transform: translateY(-2px);
}

.hero-luxury-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  animation: formSlide 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes formSlide {
  to { opacity: 1; transform: translateY(0); }
}

.hero-luxury-form .form-group input,
.hero-luxury-form .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-luxury-form .form-group input:focus,
.hero-luxury-form .form-group textarea:focus {
  border-color: rgba(0, 245, 212, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 245, 212, 0.15);
}

.hero-luxury-cta {
  background: linear-gradient(135deg, var(--color-ultraviolet), #5a00e0) !important;
  box-shadow: 0 4px 24px rgba(106, 0, 255, 0.35);
  position: relative;
}

.hero-luxury-cta:hover {
  box-shadow: 0 8px 32px rgba(106, 0, 255, 0.45);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-img {
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  width: 120%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-stars {
  display: flex;
  gap: 4px;
  color: var(--color-solar-lime);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-price {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-3xl);
  color: var(--color-ultraviolet);
}

.hero-old-price {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.order-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.order-form:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ultraviolet);
  box-shadow: 0 0 0 3px rgba(106, 0, 255, 0.15);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  pointer-events: none;
  transition: all var(--transition-base);
}

.form-group textarea ~ label {
  top: 1.25rem;
  transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-ultraviolet);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-ultraviolet);
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-hyper-pink);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  display: none;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-group.invalid .form-error {
  display: block;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: var(--color-hyper-pink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-ultraviolet), var(--color-digital-sky));
  color: #fff;
  width: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--color-ultraviolet);
  border: 2px solid var(--color-ultraviolet);
}

.section-title {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-3xl);
  letter-spacing: var(--letter-spacing-tight);
  text-align: center;
  margin-bottom: 3rem;
}

.social-proof {
  background: linear-gradient(180deg, rgba(106, 0, 255, 0.03) 0%, transparent 100%);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--margin-card);
  align-items: start;
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 0, 255, 0.2);
}

.review-stars {
  color: var(--color-solar-lime);
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--margin-card);
}

.bento-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 0, 255, 0.15);
  box-shadow: var(--shadow-soft);
}

.bento-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card:nth-child(2) {
  grid-column: span 2;
}

.bento-card:nth-child(4) {
  grid-column: span 2;
}

.bento-card:nth-child(5) {
  grid-column: span 2;
}

.bento-icon {
  font-size: 2.5rem; /* 40px */
  flex-shrink: 0;
  color: var(--color-ultraviolet);
  display: block;
}

.bento-title {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-tight);
}

.bento-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  flex: 1;
}

.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.overview-image img {
  width: 100%;
  height: auto;
}

.overview-content h3 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

.overview-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-card);
}

.spec-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 0, 255, 0.15);
}

.spec-icon {
  font-size: 2rem; /* 32px */
  flex-shrink: 0;
  color: var(--color-ultraviolet);
  display: block;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}

.how-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.15), rgba(106, 0, 255, 0.15));
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-xl);
  color: var(--color-ultraviolet);
}

.how-step h4 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
  letter-spacing: var(--letter-spacing-tight);
}

.how-step p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-card);
}

.ingredient-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 255, 0, 0.3);
}

.ingredient-icon {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 1rem;
  color: var(--color-ultraviolet);
  display: block;
}

.ingredient-card h4 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
  letter-spacing: var(--letter-spacing-tight);
}

.ingredient-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.instructions-list {
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.instruction-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106, 0, 255, 0.1);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-base);
  color: var(--color-ultraviolet);
}

.instruction-step p {
  color: var(--color-text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-card);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(106, 0, 255, 0.2);
}

.faq-item.active {
  border-color: var(--color-ultraviolet);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  text-align: left;
  background: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(106, 0, 255, 0.04);
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  color: var(--color-ultraviolet);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.cta-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.08), rgba(58, 134, 255, 0.08));
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  border: 1px solid var(--color-border);
}

.cta-final h3 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

.cta-final p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  background: rgba(15, 15, 20, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.disclaimer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.disclaimer-prominent {
  background: rgba(106, 0, 255, 0.06);
  border-color: rgba(106, 0, 255, 0.15);
}

.footer-business {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-business p {
  margin-bottom: 0.25rem;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--margin-section-desktop) var(--margin-card);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--font-size-3xl);
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.policy-content p,
.policy-content li {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content address {
  font-style: normal;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.policy-content section {
  margin-bottom: 2rem;
}

body.policy-page {
  background: linear-gradient(165deg, #0a0a0f 0%, #12121a 30%, #0d0d14 100%);
  color: #e8e8ec;
}

body.policy-page .policy-luxury {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

body.policy-page .policy-luxury .policy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.policy-page .policy-luxury .policy-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.policy-page .policy-luxury .policy-date {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 245, 212, 0.9);
}

body.policy-page .policy-luxury section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

body.policy-page .policy-luxury section:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(106, 0, 255, 0.2);
  box-shadow: 0 8px 32px rgba(106, 0, 255, 0.08);
}

body.policy-page .policy-luxury section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 245, 212, 0.3);
}

body.policy-page .policy-luxury section p {
  color: rgba(232, 232, 236, 0.85);
  line-height: 1.8;
  margin-bottom: 1rem;
}

body.policy-page .policy-luxury section ul {
  margin: 1rem 0 1rem 1.5rem;
}

body.policy-page .policy-luxury section li {
  color: rgba(232, 232, 236, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

body.policy-page .policy-luxury address {
  font-style: normal;
  color: rgba(232, 232, 236, 0.85);
  line-height: 1.8;
}

body.policy-page .policy-luxury .policy-section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.policy-page .policy-luxury .policy-section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.policy-page header {
  background: rgba(15, 15, 20, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.policy-page .brand {
  color: #fff;
}

body.policy-page .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

body.policy-page .nav-links a:hover {
  color: var(--color-neon-lagoon);
}

body.policy-page .burger-btn .burger-line {
  background: #fff;
}

body.policy-page .burger-btn {
  border-color: rgba(255, 255, 255, 0.2);
}

/* —— Burger button —— */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: rgba(106, 0, 255, 0.06);
  border: 1px solid rgba(106, 0, 255, 0.25);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-btn:hover {
  border-color: var(--color-ultraviolet);
  background: rgba(106, 0, 255, 0.12);
}

.burger-btn:active {
  transform: scale(0.96);
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ultraviolet);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Overlay —— */
.burger-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.burger-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* —— Menu panel —— */
.burger-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(165deg, #0c0b12 0%, #151320 40%, #0f0e18 100%);
  border-left: 1px solid rgba(106, 0, 255, 0.15);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.burger-menu.open {
  transform: translateX(0);
}

.burger-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.burger-menu-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.burger-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.burger-close:hover {
  color: var(--color-neon-lagoon);
  background: rgba(0, 245, 212, 0.1);
}

.burger-close i {
  font-size: 1.25rem;
}

.burger-nav {
  list-style: none;
  padding: 1rem 1rem 2rem;
}

.burger-nav li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s;
}

.burger-menu.open .burger-nav li {
  opacity: 1;
  transform: translateX(0);
}

.burger-menu.open .burger-nav li:nth-child(1) { transition-delay: 0.05s; }
.burger-menu.open .burger-nav li:nth-child(2) { transition-delay: 0.1s; }
.burger-menu.open .burger-nav li:nth-child(3) { transition-delay: 0.15s; }
.burger-menu.open .burger-nav li:nth-child(4) { transition-delay: 0.2s; }
.burger-menu.open .burger-nav li:nth-child(5) { transition-delay: 0.25s; }
.burger-menu.open .burger-nav li:nth-child(6) { transition-delay: 0.3s; }

.burger-nav a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.burger-nav a i {
  width: 1.25rem;
  font-size: 1rem;
  color: var(--color-ultraviolet);
  opacity: 0.9;
  flex-shrink: 0;
}

.burger-nav a:hover {
  color: var(--color-neon-lagoon);
  background: rgba(0, 245, 212, 0.06);
}

.burger-nav a:active {
  background: rgba(0, 245, 212, 0.1);
}

.stats-section {
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.06) 0%, rgba(58, 134, 255, 0.04) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  border: 1px solid rgba(106, 0, 255, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-ultraviolet), var(--color-digital-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-stagger-1 { transition-delay: 0.1s; }
.animate-stagger-2 { transition-delay: 0.2s; }
.animate-stagger-3 { transition-delay: 0.3s; }
.animate-stagger-4 { transition-delay: 0.4s; }

.hero-glow-pulse {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.bento-card-glow:hover {
  box-shadow: 0 0 40px rgba(106, 0, 255, 0.15);
}

footer {
  background: var(--color-text-primary);
  color: #fff;
  padding: 3rem var(--margin-card);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--color-neon-lagoon);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cookie-settings-panel.visible {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category label {
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.cookie-toggle {
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle.active {
  background: var(--color-neon-lagoon);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform var(--transition-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  transform: translateX(20px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-luxury-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-luxury-visual {
    order: 1;
    min-height: 360px;
  }

  .hero-luxury-content {
    order: 2;
    max-width: 100%;
  }

  .hero-luxury-divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--color-neon-lagoon), transparent);
  }

  .hero-luxury-badges,
  .hero-luxury-pills {
    justify-content: center;
  }

  .hero-luxury-ring-outer {
    width: 320px;
    height: 320px;
  }

  .hero-luxury-ring-inner {
    width: 260px;
    height: 260px;
  }

  .hero-luxury-product {
    max-width: 280px;
  }

  .hero-new .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-new .hero-visual-new {
    order: 1;
    min-height: 320px;
  }

  .hero-new .hero-content-new {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-new .hero-orbit-1 { width: 260px; height: 260px; }
  .hero-new .hero-orbit-2 { width: 340px; height: 340px; }
  .hero-new .hero-glow-ring { width: 220px; height: 220px; }
  .hero-new .hero-product-new { max-width: 280px; }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights,
  .hero-highlights-new {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-new .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .order-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5) {
    grid-column: span 1;
  }

  .bento-card:nth-child(1) {
    grid-row: span 1;
  }

  .product-overview {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .burger-menu,
  .burger-overlay {
    display: block;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-luxury-title-main {
    font-size: 3rem;
  }

  .hero-luxury-title-sub {
    font-size: 1.25rem;
  }

  .hero-new .hero-title-line {
    font-size: 2.5rem;
  }

  .hero-new .hero-title-gradient {
    font-size: 1.5rem;
  }

  .hero-luxury {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .hero-new {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .hero-luxury-visual {
    min-height: 300px;
  }

  .hero-luxury-ring-outer {
    width: 260px;
    height: 260px;
  }

  .hero-luxury-ring-inner {
    width: 200px;
    height: 200px;
  }

  .hero-new .hero-visual-new {
    min-height: 280px;
  }

  .hero-new .hero-orbit-1 { width: 200px; height: 200px; }
  .hero-new .hero-orbit-2 { width: 260px; height: 260px; }
  .hero-new .hero-glow-ring { width: 180px; height: 180px; }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Best 320px responsive — iPhone SE, small Android */
@media (max-width: 320px) {
  :root {
    --margin-section-mobile: 40px;
    --margin-card: 12px;
  }

  html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: 0.9375rem;
    min-width: 280px;
  }

  section {
    padding: 40px 10px;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .hero {
    min-height: auto;
    padding: 1.5rem 0 2rem;
    gap: 2rem;
  }

  .hero-luxury {
    padding: 2rem 10px 2.5rem;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .hero-luxury-form {
    padding: 1.25rem;
  }

  .form-disclaimer {
    font-size: 0.75rem;
  }

  .hero-luxury-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-luxury-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  .hero-luxury-title-main {
    font-size: 2.25rem;
  }

  .hero-luxury-title-sub {
    font-size: 1rem;
  }

  .hero-luxury-visual {
    min-height: 240px;
  }

  .hero-luxury-ring-outer {
    width: 200px;
    height: 200px;
  }

  .hero-luxury-ring-inner {
    width: 160px;
    height: 160px;
  }

  .hero-luxury-product {
    max-width: 180px;
  }

  .hero-new {
    padding: 1.5rem 10px 2rem;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .hero-new .hero-title-line {
    font-size: 2rem;
  }

  .hero-new .hero-title-gradient {
    font-size: 1.25rem;
  }

  .hero-new .hero-visual-new {
    min-height: 220px;
  }

  .hero-new .hero-orbit-1 { width: 160px; height: 160px; }
  .hero-new .hero-orbit-2 { width: 200px; height: 200px; }
  .hero-new .hero-glow-ring { width: 140px; height: 140px; }
  .hero-new .hero-product-new { max-width: 180px; }

  .hero-pill {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.9375rem;
  }

  .hero-price {
    font-size: 1.75rem;
  }

  .hero-old-price {
    font-size: 0.9375rem;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.5rem;
  }

  .order-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 16px;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-height: 44px;
    min-width: 44px;
  }

  .hero-luxury-cta {
    width: 100%;
  }

  .checkbox-group label {
    font-size: 0.8125rem;
  }

  .overview-image img {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .stats-section {
    padding: 2rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .bento-card,
  .spec-card,
  .ingredient-card,
  .review-card {
    padding: 1rem;
  }

  .bento-icon {
    font-size: 2rem;
  }

  .spec-icon {
    font-size: 1.5rem;
  }

  .ingredient-icon {
    font-size: 2rem;
  }

  .spec-card {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .bento-grid {
    gap: 1rem;
  }

  .specs-grid,
  .ingredients-grid {
    gap: 1rem;
  }

  .product-overview {
    gap: 2rem;
  }

  .instruction-step {
    gap: 1rem;
  }

  .how-step {
    min-width: 0;
  }

  .cta-final {
    padding: 2rem 1rem;
  }

  .cta-final h3 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1rem;
    font-size: 0.9375rem;
  }

  .footer-inner {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    padding: 0.75rem 10px;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .brand {
    font-size: 0.9375rem;
  }

  .footer-inner,
  .cta-final {
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .burger-btn {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .burger-menu {
    width: 100%;
  }

  .burger-nav {
    padding: 0.75rem 1rem 1.5rem;
  }

  .burger-nav a {
    padding: 0.875rem 1rem;
  }

  body.policy-page .policy-luxury {
    padding: 2rem 12px 4rem;
  }

  body.policy-page .policy-luxury section {
    padding: 1.5rem 1.25rem;
  }

  body.policy-page .policy-luxury .policy-header h1 {
    font-size: 1.5rem;
  }
}
