:root {
  --color-morning-lilac: #F0E6FF;
  --color-cloud-blue: #D9F0FF;
  --color-violet-mist: #E3D6FF;
  --color-sky-whisper: #CFEFFF;
  --color-lilac-breeze: #E9DFFF;
  --color-accent: #8B5CF6;
  --color-accent-hover: #7C3AED;
  --color-text-primary: #1F2937;
  --color-text-secondary: #4B5563;
  --color-text-muted: #6B7280;
  --color-white: #FFFFFF;
  --color-dark: #111827;
  --font-primary: 'DM Sans', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --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: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --shadow-sm: 0 1px 2px rgba(139, 92, 246, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(139, 92, 246, 0.1), 0 2px 4px -2px rgba(139, 92, 246, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.1), 0 4px 6px -4px rgba(139, 92, 246, 0.1);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.25);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-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-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('DM Sans'), url('https://fonts.gstatic.com/s/dmsans/v15/rP2Hp2ywxg089UriCZOIHQ.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Outfit'), url('https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4a0Ew.woff2') format('woff2');
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.brand {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
  background: var(--color-morning-lilac);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--color-morning-lilac);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 24px;
  height: 24px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: var(--radius-full);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease;
}

.nav-toggle.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 30, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel {
  display: block;
}

.nav-panel .nav-list {
  flex-direction: row;
}

@keyframes navLinkReveal {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stats-section {
  background: linear-gradient(180deg, var(--color-dark) 0%, #1a1a2e 100%);
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(139, 92, 246, 0.15);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.stat-label {
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.hero {
  padding: calc(80px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  background: linear-gradient(135deg, var(--color-morning-lilac) 0%, var(--color-cloud-blue) 50%, var(--color-violet-mist) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-luxury {
  background: linear-gradient(160deg, #0f0a1e 0%, #1a1333 25%, #251b48 50%, #1e1542 75%, #15102a 100%);
}

.hero-luxury .hero-content,
.hero-luxury .hero-rating-text,
.hero-luxury .hero-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hero-luxury .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(10px);
}

.hero-luxury .hero-badge:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.6);
}

.hero-luxury .hero-desc {
  color: rgba(255, 255, 255, 0.75);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: heroOrbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 240, 255, 0.3) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(227, 214, 255, 0.35) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes heroOrbFloat {
  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-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: none;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-product-float .hero-image {
  animation: heroProductFloat 6s ease-in-out infinite;
}

@keyframes heroProductFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  animation: heroRingPulse 4s ease-in-out infinite;
}

.hero-image-ring-2 {
  width: 140%;
  height: 140%;
  animation-delay: 1s;
}

@keyframes heroRingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.05); }
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
  filter: blur(50px);
  z-index: -1;
}

.hero-image {
  max-width: 400px;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 80px rgba(139, 92, 246, 0.35), 0 0 60px rgba(139, 92, 246, 0.2);
  transition: transform var(--transition-slow);
}

.hero-image:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 35px 100px rgba(139, 92, 246, 0.4), 0 0 80px rgba(139, 92, 246, 0.25);
}

.hero-stars-twinkle svg {
  animation: heroStarTwinkle 2s ease-in-out infinite;
}

.hero-stars-twinkle svg:nth-child(1) { animation-delay: 0s; }
.hero-stars-twinkle svg:nth-child(2) { animation-delay: 0.2s; }
.hero-stars-twinkle svg:nth-child(3) { animation-delay: 0.4s; }
.hero-stars-twinkle svg:nth-child(4) { animation-delay: 0.6s; }
.hero-stars-twinkle svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes heroStarTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 20px;
  height: 20px;
  fill: #FBBF24;
}

.hero-rating-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-title-line {
  display: block;
}

.hero-luxury .hero-title-line {
  color: var(--color-white);
}

.hero-title-accent {
  background: linear-gradient(135deg, #C4B5FD, #A78BFA, #8B5CF6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 3s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-price-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-price {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.hero-luxury .hero-price {
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.hero-price-old {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero-luxury .hero-price-old {
  color: rgba(255, 255, 255, 0.5);
}

.order-form-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-luxury .order-form-glass .order-form-title,
.hero-luxury .order-form-glass .form-label {
  color: var(--color-white);
}

.hero-luxury .order-form-glass .form-input,
.hero-luxury .order-form-glass .form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.hero-luxury .order-form-glass .form-input::placeholder,
.hero-luxury .order-form-glass .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-luxury .order-form-glass .form-input:focus,
.hero-luxury .order-form-glass .form-textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
}

.hero-luxury .order-form-glass .form-checkbox-label,
.hero-luxury .order-form-glass .form-checkbox-label a {
  color: rgba(255, 255, 255, 0.8);
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  transition: transform var(--transition-fast);
}

.hero-highlight:hover {
  transform: translateX(4px);
}

.hero-luxury .hero-highlight {
  color: rgba(255, 255, 255, 0.85);
}

.hero-highlight svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-accent);
}

.order-form {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.order-form-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.order-form-disclaimer a {
  color: var(--color-accent);
}

.hero-luxury .order-form-disclaimer {
  color: rgba(255, 255, 255, 0.7);
}

.hero-luxury .order-form-disclaimer a {
  color: #C4B5FD;
}

.order-form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-violet-mist);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-input.error,
.form-textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: var(--font-size-xs);
  color: #EF4444;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.form-checkbox-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-checkbox-label a:hover {
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--color-accent);
  color: var(--color-white);
  width: 100%;
  padding: var(--space-lg);
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.section {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.parallax-slow {
  will-change: transform;
}

.social-proof {
  background: var(--color-sky-whisper);
}

.social-proof-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.social-proof-summary {
  text-align: center;
}

.social-proof-rating {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.social-proof-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.social-proof-stars svg {
  width: 24px;
  height: 24px;
  fill: #FBBF24;
}

.social-proof-count {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBF24;
}

.review-card-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-card-author {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  color: var(--color-text-primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.bento-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.bento-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: var(--shadow-glow);
}

.bento-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.bento-tall {
  grid-row: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-morning-lilac), var(--color-lilac-breeze));
  border-radius: var(--radius-lg);
}

.bento-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.bento-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.bento-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.ingredient-spotlight {
  background: linear-gradient(180deg, var(--color-lilac-breeze) 0%, var(--color-white) 100%);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.ingredient-card:hover .ingredient-benefit {
  opacity: 1;
  max-height: 120px;
}

.ingredient-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-cloud-blue), var(--color-sky-whisper));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.ingredient-name {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.ingredient-benefit {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition-base), max-height var(--transition-base);
}

.trust-science {
  background: var(--color-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-morning-lilac) 0%, var(--color-violet-mist) 100%);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease-in-out infinite;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.trust-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.trust-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-md) 0;
  animation: scroll 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex: 0 0 280px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.carousel-image-wrap {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-morning-lilac), var(--color-lilac-breeze));
}

.carousel-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.carousel-info {
  padding: var(--space-lg);
}

.carousel-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.carousel-price {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.product-overview {
  background: var(--color-cloud-blue);
}

.product-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.product-overview-image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.product-overview-content h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.product-overview-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.spec-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform var(--transition-base);
}

.spec-card:hover {
  transform: translateY(-4px);
}

.spec-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.spec-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent);
}

.spec-content h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.spec-content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.steps {
  background: var(--color-violet-mist);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.step-item {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.step-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.ingredients-section {
  background: var(--color-white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.instructions {
  background: var(--color-sky-whisper);
}

.instructions-list {
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.instruction-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

.instruction-text {
  color: var(--color-text-secondary);
}

.reviews-section {
  background: var(--color-morning-lilac);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.review-card-large {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover {
  background: var(--color-morning-lilac);
}

.accordion-trigger svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  fill: var(--color-accent);
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-panel {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, #A78BFA 100%);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-3xl);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.cta-desc {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cta-benefit svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent);
  padding: var(--space-lg) var(--space-2xl);
}

.btn-white:hover {
  background: var(--color-morning-lilac);
  transform: translateY(-2px);
}

.disclaimer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-2xl);
  text-align: center;
}

.disclaimer p {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}

.footer {
  background: var(--color-text-primary);
  color: var(--color-white);
  padding: var(--space-2xl);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-legal p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.footer-address {
  font-size: var(--font-size-xs);
  opacity: 0.9;
  margin-top: var(--space-xs);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.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(--space-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.cookie-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-settings {
  background: var(--color-morning-lilac);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  display: none;
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: var(--color-violet-mist);
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-accent);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--color-white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform var(--transition-fast);
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-morning-lilac) 0%, var(--color-violet-mist) 50%, var(--color-cloud-blue) 100%);
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: thankYouFloat 15s ease-in-out infinite;
}

@keyframes thankYouFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2%, 2%); }
}

.thank-you-content {
  text-align: center;
  max-width: 560px;
  background: var(--color-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  position: relative;
  z-index: 1;
  animation: thankYouReveal 0.8s ease forwards;
}

@keyframes thankYouReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, var(--color-accent), #A78BFA);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thankYouPulse 2s ease-in-out infinite;
}

@keyframes thankYouPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 30px 10px rgba(139, 92, 246, 0.2); }
}

.thank-you-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--color-white);
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-dark), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-desc {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.thank-you-disclaimer {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.policy-page {
  padding: calc(80px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-morning-lilac) 30%, var(--color-cloud-blue) 100%);
  min-height: 100vh;
}

.policy-hero {
  text-align: center;
  padding: var(--space-3xl) 0;
  margin-bottom: var(--space-2xl);
}

.policy-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--color-accent), #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.policy-date-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  font-weight: var(--font-weight-medium);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 40px rgba(139, 92, 246, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xl);
  color: var(--color-dark);
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--color-dark);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-morning-lilac);
}

.policy-content h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--color-dark);
}

.policy-content p,
.policy-content li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.policy-content ul {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-contact {
  background: linear-gradient(135deg, var(--color-morning-lilac), var(--color-lilac-breeze));
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  margin-top: var(--space-2xl);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.policy-contact h2 {
  border-bottom: none;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
  }

  .hero-desc,
  .hero-highlights {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-rating,
  .hero-badges {
    justify-content: center;
  }

  .order-form {
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-card.bento-tall {
    grid-row: span 1;
  }

  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-inner {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .product-overview-inner {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    flex: 0 0 240px;
  }
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -8px 0 40px rgba(139, 92, 246, 0.15);
    z-index: 999;
    padding: calc(72px + var(--space-2xl)) var(--space-xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.35s ease;
  }

  .nav-panel.open {
    transform: translateX(0);
    height: 100vh;
  }

  .nav-panel .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  .nav-panel .nav-link {
    display: block;
    padding: var(--space-lg);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-lg);
    color: var(--color-text-primary);
    transition: transform var(--transition-fast), background var(--transition-fast);
  }

  .nav-panel .nav-link:hover {
    background: var(--color-morning-lilac);
    transform: translateX(4px);
  }

  .nav-panel.open .nav-list li {
    animation: navLinkReveal 0.4s ease forwards;
  }

  .nav-panel.open .nav-list li:nth-child(1) { animation-delay: 0.05s; }
  .nav-panel.open .nav-list li:nth-child(2) { animation-delay: 0.1s; }
  .nav-panel.open .nav-list li:nth-child(3) { animation-delay: 0.15s; }
  .nav-panel.open .nav-list li:nth-child(4) { animation-delay: 0.2s; }
  .nav-panel.open .nav-list li:nth-child(5) { animation-delay: 0.25s; }
  .nav-panel.open .nav-list li:nth-child(6) { animation-delay: 0.3s; }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(70px + var(--space-xl));
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.bento-large {
    grid-column: span 1;
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-benefits {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-item {
    flex: 0 0 200px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: var(--space-lg);
  }

  .thank-you-content {
    padding: var(--space-xl);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0 var(--space-sm);
  }

  .brand {
    font-size: var(--font-size-lg);
  }

  .hero {
    padding: calc(56px + var(--space-md)) var(--space-sm) var(--space-lg);
    min-height: auto;
    align-items: flex-start;
    padding-bottom: var(--space-xl);
    overflow-x: hidden;
  }

  .hero-content {
    min-width: 0;
  }

  .hero-desc {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-inner {
    gap: var(--space-lg);
    padding: 0;
  }

  .hero-bg {
    opacity: 0.85;
  }

  .hero-orb {
    transform: scale(0.35);
    filter: blur(50px);
    animation-duration: 30s;
  }

  .hero-orb-1 {
    width: 280px;
    height: 280px;
    top: -30%;
  }

  .hero-orb-2 {
    width: 200px;
    height: 200px;
  }

  .hero-orb-3 {
    width: 150px;
    height: 150px;
  }

  .hero-mesh {
    background-size: 40px 40px;
  }

  .hero-rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
  }

  .hero-stars svg {
    width: 14px;
    height: 14px;
  }

  .hero-rating-text {
    font-size: var(--font-size-xs);
    width: 100%;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  .hero-badge {
    padding: 4px var(--space-sm);
    font-size: 10px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }

  .hero-price-wrap {
    margin-bottom: var(--space-md);
  }

  .hero-price {
    font-size: var(--font-size-xl);
  }

  .hero-price-old {
    font-size: var(--font-size-sm);
  }

  .hero-highlights {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  .hero-highlight {
    font-size: var(--font-size-xs);
  }

  .hero-highlight svg {
    width: 14px;
    height: 14px;
  }

  .hero-image-wrap {
    margin-top: 0;
  }

  .hero-image {
    max-width: 200px;
  }

  .hero-image-ring {
    width: 100%;
    height: 100%;
  }

  .hero-image-ring-2 {
    width: 110%;
    height: 110%;
  }

  .order-form {
    padding: var(--space-md);
    max-width: 100%;
  }

  .order-form-disclaimer {
    font-size: 10px;
    margin-bottom: var(--space-sm);
  }

  .order-form-title {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-input,
  .form-textarea {
    padding: var(--space-sm);
    font-size: 16px;
  }

  .form-checkbox-label {
    font-size: var(--font-size-xs);
  }

  .btn-primary {
    padding: var(--space-md);
    font-size: var(--font-size-base);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .bento-card {
    padding: var(--space-md);
  }

  .bento-title {
    font-size: var(--font-size-base);
  }

  .stats-grid {
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-number {
    font-size: var(--font-size-xl);
  }

  .stat-label {
    font-size: var(--font-size-xs);
  }

  .trust-item {
    padding: var(--space-lg);
  }

  .trust-title {
    font-size: var(--font-size-base);
  }

  .steps-grid {
    gap: var(--space-md);
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: var(--font-size-base);
  }

  .footer-inner {
    padding: var(--space-md);
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cookie-banner-inner {
    padding: var(--space-md);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .burger-line {
    width: 18px;
  }

  .policy-content {
    padding: var(--space-md);
    margin: 0 var(--space-xs);
  }

  .policy-hero h1 {
    font-size: var(--font-size-3xl);
  }

  .thank-you-title {
    font-size: var(--font-size-2xl);
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
  }

  .thank-you-icon svg {
    width: 36px;
    height: 36px;
  }

  .cta-title {
    font-size: var(--font-size-2xl);
  }
}
