:root {
  --color-lavender-sky: #E6E0FF;
  --color-twilight-blue: #D0E8FF;
  --color-amethyst-mist: #DCCFFF;
  --color-sky-veil: #CFE7FF;
  --color-lilac-breeze: #EADFFF;
  --color-accent-vibrant: #7C3AED;
  --color-accent-secondary: #5B21B6;
  --color-text-primary: #1F2937;
  --color-text-secondary: #4B5563;
  --color-white: #FFFFFF;
  --color-dark: #0F172A;
  --font-heading: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(124, 58, 237, 0.1), 0 2px 4px -2px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(124, 58, 237, 0.1), 0 4px 6px -4px rgba(124, 58, 237, 0.1);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);
  --shadow-card: 0 20px 25px -5px rgba(124, 58, 237, 0.08), 0 8px 10px -6px rgba(124, 58, 237, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --margin-sm: 0.5rem;
  --margin-md: 1rem;
  --margin-lg: 1.5rem;
  --margin-xl: 2rem;
  --margin-2xl: 3rem;
  --margin-3xl: 4rem;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: linear-gradient(180deg, var(--color-sky-veil) 0%, var(--color-lavender-sky) 50%, var(--color-lilac-breeze) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-vibrant);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-secondary);
}

.nav-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--margin-md) var(--margin-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--margin-xl);
}

nav a {
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: var(--margin-sm) var(--margin-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

nav a:hover {
  color: var(--color-accent-vibrant);
  background: rgba(124, 58, 237, 0.08);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--margin-3xl) var(--margin-xl);
  position: relative;
  overflow: hidden;
}

.hero-creative {
  min-height: 95vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--color-amethyst-mist);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--color-twilight-blue);
  bottom: 10%;
  left: -80px;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--color-lilac-breeze);
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-gradient-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  background: conic-gradient(from 0deg, transparent, var(--color-amethyst-mist), transparent, var(--color-twilight-blue), transparent);
  border-radius: 50%;
  opacity: 0.15;
  animation: gradientSpin 20s linear infinite;
}

@keyframes gradientSpin {
  to { transform: rotate(360deg); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--margin-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: var(--margin-lg);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-title-line {
  display: inline-block;
  overflow: hidden;
}

.hero-title-1 {
  animation: titleReveal 1s ease-out 0.2s both;
}

.hero-title-2 {
  background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 1s ease-out 0.5s both;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-sm);
  margin-bottom: var(--margin-lg);
}

.hero-badge {
  padding: 0.4em 0.9em;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-accent-vibrant);
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-sm);
  animation: badgePop 0.6s ease-out both;
}

.hero-badge-1 { animation-delay: 0.1s; }
.hero-badge-2 { animation-delay: 0.25s; }
.hero-badge-3 { animation-delay: 0.4s; }

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.hero-content .value-desc,
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--margin-xl);
  animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-sm);
  margin-bottom: var(--margin-lg);
}

.hero-pill {
  padding: 0.35em 0.85em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent-vibrant);
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  animation: pillFade 0.6s ease-out both;
}

.hero-pill:nth-child(1) { animation-delay: 0.7s; }
.hero-pill:nth-child(2) { animation-delay: 0.85s; }
.hero-pill:nth-child(3) { animation-delay: 1s; }

@keyframes pillFade {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-pill:hover {
  background: rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.hero-price-block {
  display: flex;
  align-items: baseline;
  gap: var(--margin-md);
  margin-bottom: var(--margin-xl);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease-out 0.9s both;
}

.hero-save {
  padding: 0.25em 0.6em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  background: #10B981;
  border-radius: var(--radius-sm);
  animation: savePulse 2s ease-in-out infinite;
}

@keyframes savePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: var(--margin-md);
  margin-bottom: var(--margin-xl);
}

.price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-vibrant);
}

.price-old {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.hero-cta {
  width: 100%;
  margin-top: 1rem;
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.4); }
}

.hero-form {
  animation: formSlide 0.8s ease-out 1s both;
}

@keyframes formSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--margin-md);
  margin-bottom: var(--margin-lg);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars span {
  color: #F59E0B;
  font-size: 1.25rem;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--margin-sm);
  margin-bottom: var(--margin-xl);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
  list-style: none;
}

.hero-highlights li::before {
  content: '✓';
  color: var(--color-accent-vibrant);
  font-weight: 700;
}

.hero-visual-frame {
  position: relative;
  display: inline-block;
}

.hero-visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-figure {
  position: relative;
  z-index: 2;
}

.hero-figure img {
  filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.2));
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.hero-visual-ring {
  position: absolute;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-1 {
  width: 110%;
  height: 110%;
  animation: ringExpand 3s ease-out infinite;
}

.hero-ring-2 {
  width: 120%;
  height: 120%;
  animation: ringExpand 3s ease-out 0.5s infinite;
}

.hero-ring-3 {
  width: 130%;
  height: 130%;
  animation: ringExpand 3s ease-out 1s infinite;
}

@keyframes ringExpand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent-secondary));
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: scale(0.98);
}

.order-form {
  background: var(--color-white);
  padding: var(--margin-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.order-form h3 {
  font-family: var(--font-heading);
  margin-bottom: var(--margin-lg);
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: var(--margin-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--margin-sm);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-lavender-sky);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-vibrant);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-group .error-msg {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: var(--margin-sm);
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--margin-md);
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual figure {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition-slow);
}

.hero-visual:hover img {
  transform: scale(1.02);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-lg);
  padding: var(--margin-3xl) var(--margin-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card h3 {
  font-family: var(--font-heading);
  margin-bottom: var(--margin-md);
  font-size: 1.25rem;
}

.bento-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--margin-md);
  background: linear-gradient(135deg, var(--color-amethyst-mist), var(--color-lilac-breeze));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-spotlight {
  padding: var(--margin-3xl) var(--margin-xl);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sky-veil) 100%);
}

.ingredient-spotlight .section-title {
  text-align: center;
  margin-bottom: var(--margin-3xl);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--margin-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.ingredient-card {
  background: var(--color-white);
  padding: var(--margin-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.ingredient-card .benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.95), rgba(91, 33, 182, 0.95));
  color: var(--color-white);
  padding: var(--margin-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ingredient-card:hover .benefit-overlay {
  opacity: 1;
}

.trust-science {
  padding: var(--margin-3xl) var(--margin-xl);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: var(--margin-2xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--margin-lg);
  display: block;
}

.best-sellers {
  padding: var(--margin-3xl) var(--margin-xl);
  background: var(--color-amethyst-mist);
}

.carousel {
  display: flex;
  gap: var(--margin-xl);
  overflow-x: auto;
  padding: var(--margin-lg) 0;
  scroll-snap-type: x mandatory;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--color-accent-vibrant);
  border-radius: var(--radius-full);
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
  box-shadow: var(--shadow-glow);
}

.product-card figure {
  position: relative;
  margin-bottom: var(--margin-lg);
}

.product-card img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

section {
  padding: var(--margin-3xl) var(--margin-xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--margin-2xl);
  color: var(--color-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--margin-xl);
}

.review-card {
  background: var(--color-white);
  padding: var(--margin-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-card);
}

.accordion-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--margin-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-trigger {
  width: 100%;
  padding: var(--margin-lg);
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover {
  background: var(--color-lavender-sky);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-content-inner {
  padding: 0 var(--margin-lg) var(--margin-lg);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.faq-section {
  background: var(--color-lilac-breeze);
}

.cta-section {
  text-align: center;
  padding: var(--margin-3xl) var(--margin-xl);
  background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent-secondary));
  color: var(--color-white);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--margin-lg);
}

.cta-section p {
  margin-bottom: var(--margin-xl);
  font-size: 1.125rem;
  opacity: 0.95;
}

.disclaimer {
  padding: var(--margin-2xl) var(--margin-xl);
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}

footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--margin-3xl) var(--margin-xl) var(--margin-xl);
}

.footer-compliance {
  max-width: 1200px;
  margin: 0 auto var(--margin-lg);
  padding: 0 var(--margin-xl);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.5;
}

.footer-compliance p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--margin-2xl);
  max-width: 1200px;
  margin: 0 auto var(--margin-2xl);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--margin-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-md);
  justify-content: center;
  margin-top: var(--margin-md);
}

.footer-bottom nav a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: var(--margin-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner .container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--margin-lg);
}

.cookie-banner h3 {
  font-size: 1.25rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-md);
}

.cookie-settings {
  margin-top: var(--margin-lg);
  padding-top: var(--margin-lg);
  border-top: 1px solid var(--color-lavender-sky);
}

.cookie-settings #savePreferences {
  margin-top: var(--margin-lg);
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--margin-md) 0;
}

.cookie-category.strict {
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-delay-1 { transition-delay: 0.1s; }
.reveal.reveal-delay-2 { transition-delay: 0.2s; }
.reveal.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-visual.reveal.visible .hero-figure img {
  animation: productFloat 6s ease-in-out infinite;
}

.bento-card.reveal.visible {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ingredient-card.reveal.visible {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: var(--margin-2xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.policy-page {
  padding: var(--margin-3xl) var(--margin-xl);
  max-width: 800px;
  margin: 0 auto;
}

.policy-page article {
  padding: var(--margin-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.policy-page h1 {
  font-family: var(--font-heading);
  margin-bottom: var(--margin-xl);
  font-size: 2rem;
}

.policy-page h2 {
  margin-top: var(--margin-2xl);
  margin-bottom: var(--margin-md);
  font-size: 1.25rem;
}

.policy-page p {
  margin-bottom: var(--margin-md);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--margin-xl);
}

.thank-you-content {
  background: var(--color-white);
  padding: var(--margin-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--color-lavender-sky);
  border-radius: var(--radius-full);
  cursor: pointer;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.switch-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.switch input:checked + .switch-slider {
  background: var(--color-accent-vibrant);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(22px);
}

@media (max-width: 768px) {
  .hero .container,
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content .hero-highlights,
  .hero-pills {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-price-block {
    justify-content: center;
  }

  .hero-rating {
    justify-content: center;
  }

  .price-block {
    justify-content: center;
  }

  nav ul {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex: 0 0 260px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.burger-btn:hover {
  background: rgba(124, 58, 237, 0.1);
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.burger-btn .burger-line:nth-child(1) {
  margin-bottom: 6px;
}

.burger-btn .burger-line:nth-child(2) {
  margin-bottom: 6px;
}

.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--margin-lg);
    gap: 0;
    box-shadow: var(--shadow-lg);
  }

  nav.open ul {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul a {
    display: block;
    padding: var(--margin-md) 0;
  }
}

@media (min-width: 769px) {
  .burger-btn {
    display: none;
  }
}

.stats-section {
  padding: var(--margin-3xl) var(--margin-xl);
  background: linear-gradient(135deg, var(--color-amethyst-mist) 0%, var(--color-lilac-breeze) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--color-white);
  padding: var(--margin-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-vibrant), var(--color-accent-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent-vibrant);
  display: inline-block;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-accent-vibrant);
  vertical-align: top;
}

.stat-label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: var(--margin-sm);
  color: var(--color-text-primary);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: var(--margin-sm);
}

.policy-body {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 30%, #0F172A 100%);
  min-height: 100vh;
}

.policy-body .nav-glass {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-nav .brand {
  color: var(--color-white);
}

.policy-nav-list a {
  color: rgba(255, 255, 255, 0.9);
}

.policy-nav-list a:hover {
  color: var(--color-lavender-sky);
}

.policy-luxury {
  padding: var(--margin-2xl) var(--margin-xl) var(--margin-3xl);
  max-width: 900px;
  margin: 0 auto;
}

.policy-hero {
  text-align: center;
  padding: var(--margin-3xl) 0;
}

.policy-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--margin-md);
}

.policy-date {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.policy-date span {
  color: var(--color-lilac-breeze);
  font-weight: 500;
}

.policy-article {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--margin-2xl);
}

.policy-section {
  padding: var(--margin-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-section:last-of-type {
  border-bottom: none;
}

.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--color-lavender-sky);
  margin-bottom: var(--margin-lg);
}

.policy-section h3 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--margin-lg);
  margin-bottom: var(--margin-sm);
}

.policy-section p,
.policy-section li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--margin-md);
}

.policy-section ul,
.policy-section ol {
  margin-left: var(--margin-xl);
  margin-bottom: var(--margin-md);
}

.policy-section a {
  color: var(--color-amethyst-mist);
}

.policy-section a:hover {
  color: var(--color-lilac-breeze);
}

.policy-contact {
  background: rgba(124, 58, 237, 0.1);
  margin: var(--margin-xl) 0 0;
  padding: var(--margin-xl);
  border-radius: var(--radius-lg);
}

.policy-footer {
  margin-top: var(--margin-2xl);
}

.policy-footer-compliance {
  color: rgba(255, 255, 255, 0.8);
}

.policy-footer-compliance p {
  margin-bottom: var(--margin-lg);
}

.policy-footer .footer-bottom {
  flex-direction: column;
  gap: var(--margin-md);
}

.policy-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-md);
  justify-content: center;
}

.policy-footer nav a {
  color: rgba(255, 255, 255, 0.8);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent-secondary));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto var(--margin-xl);
  animation: thankYouPulse 2s ease infinite;
}

@keyframes thankYouPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
}

.product-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--margin-2xl);
  align-items: center;
}

@media (max-width: 768px) {
  .product-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--margin-md);
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  header .container {
    padding: var(--margin-sm) var(--margin-md);
  }

  .brand {
    font-size: 1.1rem;
  }

  .hero {
    padding: var(--margin-xl) var(--margin-md);
    min-height: auto;
  }

  .hero-creative {
    min-height: auto;
  }

  .hero .container,
  .hero-container {
    gap: var(--margin-xl);
  }

  .hero-content h1,
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle,
  .hero-content .value-desc {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-pill {
    font-size: 0.8rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .order-form,
  .hero-form {
    padding: var(--margin-md);
  }

  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    filter: blur(60px);
  }

  .bento-grid,
  .ingredient-spotlight,
  .trust-science,
  section {
    padding: var(--margin-xl) var(--margin-md);
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--margin-md);
  }

  .stat-card {
    padding: var(--margin-lg);
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--margin-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--margin-lg);
  }

  .footer-bottom {
    padding: var(--margin-md) var(--margin-md);
    font-size: 0.85rem;
  }

  .cookie-banner {
    padding: var(--margin-md);
  }

  .policy-luxury {
    padding: var(--margin-md);
  }

  .policy-hero {
    padding: var(--margin-xl) 0;
  }

  .policy-hero h1 {
    font-size: 1.75rem;
  }

  .policy-article {
    padding: var(--margin-md);
  }

  .policy-section h2 {
    font-size: 1.25rem;
  }
}
