:root {
  --color-mint-sky: #DFFCF8;
  --color-soft-sage: #D8EAD9;
  --color-aqua-sky: #D6F3FF;
  --color-fresh-leaf: #BEE7C5;
  --color-blue-breeze: #E8F6FF;
  --color-primary: #2D8B6F;
  --color-primary-dark: #1F6B54;
  --color-accent: #0EA5E9;
  --color-text: #1A2E2A;
  --color-text-muted: #4A6B65;
  --color-white: #FFFFFF;
  --color-dark: #0F172A;
  --color-gold: #B8860B;
  --color-gold-light: #D4AF37;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-luxury: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 40px rgba(46, 139, 111, 0.25);
  --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-normal: 250ms ease;
  --transition-slow: 400ms 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);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 139, 111, 0.1);
  transition: all var(--transition-normal);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--margin-md) var(--margin-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.open .burger__line--top {
  transform: translateY(8px) rotate(45deg);
}

.header.open .burger__line--mid {
  opacity: 0;
}

.header.open .burger__line--bot {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__toggle {
  display: none;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--margin-xl);
}

.nav__link {
  font-weight: 500;
  color: var(--color-text);
  padding: var(--margin-sm) var(--margin-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-primary);
  background: var(--color-mint-sky);
}

.hero {
  padding: 8rem var(--margin-xl) var(--margin-3xl);
  background: linear-gradient(135deg, var(--color-blue-breeze) 0%, var(--color-mint-sky) 50%, var(--color-soft-sage) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(46, 139, 111, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero--v2 {
  padding: 7rem var(--margin-xl) 4rem;
  background: #0a1628;
  isolation: isolate;
}

.hero--v2 .hero__content { color: var(--color-white); }
.hero--v2 .hero__title { color: var(--color-white); }
.hero--v2 .hero__description { color: rgba(255,255,255,0.75); }
.hero--v2 .hero__trust-text { color: rgba(255,255,255,0.7); }
.hero--v2 .hero__old-price { color: rgba(255,255,255,0.5); }
.hero--v2 .hero__highlight { color: rgba(255,255,255,0.9); }
.hero--v2 .hero::before { display: none; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero__gradient-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(45, 139, 111, 0.4);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.hero__gradient-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.35);
  top: 30%;
  right: 10%;
  animation-delay: -5s;
}

.hero__gradient-orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(190, 231, 197, 0.25);
  bottom: -5%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__gradient-orb,
  .hero__grid,
  .hero__shape,
  .hero__product-wrap,
  .hero__glow--pulse,
  .hero__ring,
  .hero__scroll-hint {
    animation: none;
  }
}

@keyframes gridShift {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.hero__floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: shapeFloat 8s ease-in-out infinite;
}

.hero__shape--1 { width: 20px; height: 20px; top: 15%; right: 20%; animation-delay: 0s; }
.hero__shape--2 { width: 12px; height: 12px; top: 60%; left: 15%; animation-delay: -2s; }
.hero__shape--3 { width: 16px; height: 16px; bottom: 25%; right: 25%; animation-delay: -4s; }
.hero__shape--4 { width: 8px; height: 8px; top: 40%; right: 35%; animation-delay: -1s; }
.hero__shape--5 { width: 14px; height: 14px; bottom: 40%; left: 25%; animation-delay: -3s; }

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--margin-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badges--animate {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero__title--animate .hero__title-line {
  display: block;
  animation: heroTitleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero__title--animate .hero__title-line:nth-child(1) { animation-delay: 0.2s; }
.hero__title--animate .hero__title-line:nth-child(2) { animation-delay: 0.35s; }
.hero__title--animate .hero__title-line:nth-child(3) { animation-delay: 0.5s; }

.hero__title-line--accent {
  background: linear-gradient(135deg, var(--color-fresh-leaf), var(--color-mint-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero__title-line--sub {
  font-size: 0.85em;
  font-weight: 500;
  opacity: 0.9;
}

.hero__description--animate {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
  transform: translateY(25px);
}

.hero__price-block--animate {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
  opacity: 0;
  transform: translateY(25px);
}

.hero__highlights--animate {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  opacity: 0;
  transform: translateY(25px);
}

.hero__form--animate {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero__highlights--animate .hero__highlight:nth-child(1) .hero__highlight-icon { animation-delay: 1.1s; }
.hero__highlights--animate .hero__highlight:nth-child(2) .hero__highlight-icon { animation-delay: 1.2s; }
.hero__highlights--animate .hero__highlight:nth-child(3) .hero__highlight-icon { animation-delay: 1.3s; }

@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: var(--margin-lg);
  margin-bottom: var(--margin-lg);
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__stars svg {
  width: 20px;
  height: 20px;
  fill: #F59E0B;
}

.hero__trust-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--color-dark);
  margin-bottom: var(--margin-md);
  line-height: 1.1;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--margin-xl);
}

.hero__price-block {
  display: flex;
  align-items: center;
  gap: var(--margin-md);
  margin-bottom: var(--margin-xl);
}

.hero__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__old-price {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-md);
  margin-bottom: var(--margin-xl);
}

.hero__highlight {
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
  font-size: 0.875rem;
  color: var(--color-text);
}

.hero__highlight svg,
.hero__highlight-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero__visual-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__product-wrap {
  position: relative;
  animation: productFloat 6s ease-in-out infinite;
}

.hero__product-img {
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(46, 139, 111, 0.3));
  transition: transform var(--transition-slow);
}

.hero--v2 .hero__product-img {
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}

.hero__product-img:hover {
  transform: scale(1.05) rotate(3deg);
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 139, 111, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__glow--pulse {
  animation: glowPulse 4s ease-in-out infinite;
}

.hero--v2 .hero__glow {
  background: radial-gradient(circle, rgba(46, 139, 111, 0.35) 0%, transparent 65%);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.hero__ring--outer {
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  animation-direction: reverse;
}

.hero__ring--inner {
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  animation-duration: 15s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--margin-sm);
  margin-top: var(--margin-2xl);
  animation: scrollHint 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  border-radius: 2px;
}

.hero__scroll-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

.hero__form--animate.form-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero__form--animate .form__label,
.hero__form--animate .form__checkbox-label { color: var(--color-text); }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(45, 139, 111, 0.1);
}

.form__group {
  margin-bottom: var(--margin-lg);
}

.form__label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--margin-sm);
  color: var(--color-text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--margin-md);
  border: 1px solid var(--color-soft-sage);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 139, 111, 0.15);
}

.form__input.error,
.form__textarea.error {
  border-color: #DC2626;
  background: #FEF2F2;
}

.form__error {
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: var(--margin-sm);
  display: none;
}

.form__error.visible {
  display: block;
}

.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--margin-md);
}

.form__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.form__checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form__checkbox-label a {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--margin-md) var(--margin-xl);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
}

.section {
  padding: var(--margin-3xl) var(--margin-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-dark);
  text-align: center;
  margin-bottom: var(--margin-lg);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--margin-2xl);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: var(--margin-lg);
}

.bento-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 139, 111, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--margin-md);
}

.bento-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--margin-sm);
  color: var(--color-dark);
}

.bento-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.trust-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--margin-xl);
  padding: var(--margin-2xl);
  background: var(--color-blue-breeze);
  border-radius: var(--radius-xl);
}

.trust-item {
  text-align: center;
  padding: var(--margin-lg);
}

.trust-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--margin-md);
}

.trust-item__title {
  font-size: 1.125rem;
  margin-bottom: var(--margin-sm);
  color: var(--color-dark);
}

.trust-item__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.carousel {
  position: relative;
  overflow: hidden;
  padding: var(--margin-xl) 0;
}

.carousel__track {
  display: flex;
  gap: var(--margin-xl);
  transition: transform var(--transition-slow);
}

.carousel__item {
  flex: 0 0 280px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--margin-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: center;
}

.carousel__item:hover {
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  box-shadow: var(--shadow-glow);
}

.carousel__img-wrap {
  position: relative;
  margin-bottom: var(--margin-md);
}

.carousel__img {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(46, 139, 111, 0.15));
}

.ingredient-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--margin-lg);
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-soft-sage);
  transition: all var(--transition-normal);
  position: relative;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-fresh-leaf);
}

.ingredient-card__benefit {
  display: none;
  margin-top: var(--margin-md);
  padding-top: var(--margin-md);
  border-top: 1px solid var(--color-mint-sky);
  font-size: 0.875rem;
  color: var(--color-primary-dark);
}

.ingredient-card:hover .ingredient-card__benefit {
  display: block;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--margin-lg);
}

.spec-card {
  background: var(--color-aqua-sky);
  border-radius: var(--radius-md);
  padding: var(--margin-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--margin-md);
}

.spec-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.spec-card__content h4 {
  font-size: 1rem;
  margin-bottom: var(--margin-sm);
  color: var(--color-dark);
}

.spec-card__content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--margin-xl);
  counter-reset: step;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--margin-md);
  counter-increment: step;
}

.step-item::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: 700;
  flex-shrink: 0;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--margin-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-blue-breeze);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--margin-md);
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--margin-md);
}

.review-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.accordion__item {
  border-bottom: 1px solid var(--color-soft-sage);
}

.accordion__trigger {
  width: 100%;
  padding: var(--margin-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-dark);
  transition: background var(--transition-fast);
}

.accordion__trigger:hover {
  background: var(--color-mint-sky);
}

.accordion__trigger svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.accordion__item.active .accordion__trigger svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion__content-inner {
  padding: 0 var(--margin-lg) var(--margin-lg);
}

.disclaimer {
  background: var(--color-soft-sage);
  padding: var(--margin-xl);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--margin-3xl) var(--margin-xl) var(--margin-xl);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-xl);
  margin-bottom: var(--margin-2xl);
}

.footer__link {
  color: var(--color-mint-sky);
}

.footer__link:hover {
  color: var(--color-white);
}

.site-disclaimer {
  background: var(--color-soft-sage);
  border-bottom: 1px solid rgba(45, 139, 111, 0.2);
  padding: var(--margin-md) var(--margin-xl);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text);
  margin: 0;
}

.site-disclaimer p {
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer__contact {
  margin-bottom: var(--margin-lg);
  font-size: 0.875rem;
  color: var(--color-aqua-sky);
}

.footer__contact p {
  margin: 0 0 var(--margin-sm);
}

.footer__legal {
  margin-top: var(--margin-lg);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-aqua-sky);
}

.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-normal);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--margin-lg);
}

.cookie-banner__text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--margin-md);
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--margin-2xl);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal__title {
  margin-bottom: var(--margin-lg);
  font-size: 1.5rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--margin-md) 0;
  border-bottom: 1px solid var(--color-soft-sage);
}

.cookie-option__label {
  font-weight: 500;
}

.cookie-option__toggle {
  width: 48px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--color-soft-sage);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}

.cookie-option__toggle.active {
  background: var(--color-primary);
}

.cookie-option__toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
}

.cookie-option__toggle.active::after {
  transform: translateX(22px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .bento-card,
.reveal.visible .ingredient-card,
.reveal.visible .stat-card,
.reveal.visible .spec-card,
.reveal.visible .step-item,
.reveal.visible .trust-item {
  animation: fadeSlideUp 0.6s ease forwards;
}

.reveal.visible .bento-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .bento-card:nth-child(2) { animation-delay: 0.15s; }
.reveal.visible .bento-card:nth-child(3) { animation-delay: 0.2s; }
.reveal.visible .bento-card:nth-child(4) { animation-delay: 0.25s; }
.reveal.visible .bento-card:nth-child(5) { animation-delay: 0.3s; }
.reveal.visible .ingredient-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .ingredient-card:nth-child(2) { animation-delay: 0.15s; }
.reveal.visible .ingredient-card:nth-child(3) { animation-delay: 0.2s; }
.reveal.visible .ingredient-card:nth-child(4) { animation-delay: 0.25s; }
.reveal.visible .stat-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .stat-card:nth-child(2) { animation-delay: 0.2s; }
.reveal.visible .stat-card:nth-child(3) { animation-delay: 0.3s; }
.reveal.visible .stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-xl);
  margin-top: var(--margin-2xl);
}

.stat-card {
  background: linear-gradient(145deg, var(--color-white) 0%, var(--color-mint-sky) 100%);
  border-radius: var(--radius-xl);
  padding: var(--margin-2xl);
  text-align: center;
  border: 1px solid rgba(45, 139, 111, 0.1);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  display: inline;
  line-height: 1.2;
}

.stat-card__suffix {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-left: 2px;
}

.stat-card__label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: var(--margin-sm);
}

.page-luxury {
  background: linear-gradient(180deg, #FAFBFC 0%, #F5F7F8 100%);
}

.header--luxury {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.policy-page--luxury {
  padding: 6rem var(--margin-xl) var(--margin-3xl);
  max-width: 720px;
}

.policy-page__header {
  margin-bottom: var(--margin-3xl);
}

.policy-page__header h1 {
  font-family: var(--font-luxury);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}

.policy-page__date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--margin-md);
}

.policy-section {
  margin-bottom: var(--margin-3xl);
}

.policy-section h2 {
  font-family: var(--font-luxury);
  font-size: 1.5rem;
  margin-bottom: var(--margin-lg);
  color: var(--color-dark);
  padding-bottom: var(--margin-sm);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.policy-section h3 {
  font-size: 1.125rem;
  margin: var(--margin-xl) 0 var(--margin-md);
}

.thank-you--luxury {
  background: linear-gradient(135deg, #F8FAF9 0%, #EFF5F3 50%, #E8F0ED 100%);
  min-height: 100vh;
  position: relative;
}

.thank-you__ornament {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 50%;
}

.thank-you__card--luxury {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--margin-3xl);
  background: var(--color-white);
  border: 1px solid rgba(184, 134, 11, 0.1);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.thank-you__icon-wrap {
  margin-bottom: var(--margin-xl);
}

.thank-you__icon {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
}

.thank-you__title--luxury {
  font-family: var(--font-luxury);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.thank-you__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--margin-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.thank-you__divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--margin-xl) 0;
}

.thank-you__note {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--margin-xl);
}

.btn--luxury {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--margin-xl);
  background: linear-gradient(135deg, var(--color-blue-breeze) 0%, var(--color-mint-sky) 100%);
}

.thank-you__card {
  max-width: 560px;
  text-align: center;
  padding: var(--margin-3xl);
}

.thank-you__title {
  font-size: 2rem;
  margin-bottom: var(--margin-md);
  color: var(--color-dark);
}

.thank-you__text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--margin-xl);
}

.policy-page {
  padding: var(--margin-3xl) var(--margin-xl);
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: var(--margin-lg);
  color: var(--color-dark);
}

.policy-page h2 {
  font-size: 1.5rem;
  margin: var(--margin-2xl) 0 var(--margin-md);
  color: var(--color-dark);
}

.policy-page p,
.policy-page li {
  margin-bottom: var(--margin-md);
  color: var(--color-text-muted);
}

.policy-page h3 {
  font-size: 1.25rem;
  margin: var(--margin-xl) 0 var(--margin-md);
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__highlights {
    justify-content: center;
  }

  .hero__price-block {
    justify-content: center;
  }

  .hero--v2 .hero__ring--outer {
    width: 320px;
    height: 320px;
    margin: -160px 0 0 -160px;
  }

  .hero--v2 .hero__ring--inner {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
  }

  .hero__scroll-hint {
    margin-top: var(--margin-xl);
  }

  .burger {
    display: flex;
  }

  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--margin-md);
    box-shadow: var(--shadow-md);
    gap: 0;
  }

  .nav.open .nav__list {
    display: flex;
  }

  .nav__link {
    padding: var(--margin-md);
    display: block;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-block {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--margin-2xl) var(--margin-md);
  }

  .cookie-banner__inner {
    flex-direction: column;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .header__inner {
    padding: var(--margin-sm) var(--margin-md);
  }

  .header__brand {
    font-size: 0.875rem;
  }

  .site-disclaimer {
    font-size: 0.6875rem;
  }

  .site-disclaimer p {
    line-height: 1.4;
  }

  .hero {
    padding: 5.5rem 0.75rem var(--margin-xl);
    min-height: auto;
  }

  .hero--v2 {
    padding: 5.5rem 0.75rem var(--margin-lg);
  }

  .hero__inner {
    gap: var(--margin-lg);
    padding: 0 var(--margin-sm);
  }

  .hero__gradient-orb--1 {
    width: 180px;
    height: 180px;
  }

  .hero__gradient-orb--2 {
    width: 140px;
    height: 140px;
  }

  .hero__gradient-orb--3 {
    width: 120px;
    height: 120px;
  }

  .hero__grid {
    background-size: 40px 40px;
  }

  .hero--v2 .hero__ring--outer {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
  }

  .hero--v2 .hero__ring--inner {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
  }

  .hero__glow {
    width: 180px;
    height: 180px;
  }

  .hero__product-img {
    max-width: 160px;
  }

  .hero__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--margin-sm);
  }

  .hero__stars svg {
    width: 14px;
    height: 14px;
  }

  .hero__trust-text {
    font-size: 0.75rem;
  }

  .hero__title {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .hero--v2 .hero__title-line--accent {
    font-size: 1.125rem;
  }

  .hero--v2 .hero__title-line--sub {
    font-size: 0.875rem;
  }

  .hero__description {
    font-size: 0.875rem;
  }

  .hero__price-block {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--margin-sm);
  }

  .hero__price {
    font-size: 1.375rem;
  }

  .hero__old-price {
    font-size: 1rem;
  }

  .hero__highlights {
    flex-direction: column;
    align-items: center;
    gap: var(--margin-sm);
  }

  .hero__highlight {
    font-size: 0.8125rem;
  }

  .hero__highlight svg,
  .hero__highlight-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero__form--animate.form-card,
  .hero .form-card {
    padding: var(--margin-md);
  }

  .hero .form__group {
    margin-bottom: var(--margin-md);
  }

  .hero .form__label {
    font-size: 0.875rem;
  }

  .hero .btn--full {
    padding: var(--margin-md) var(--margin-lg);
    font-size: 0.9375rem;
  }

  .hero__scroll-hint {
    display: none;
  }

  .hero__visual {
    margin-top: var(--margin-md);
  }

  .hero__visual-frame {
    min-height: 180px;
  }

  .section {
    padding: var(--margin-xl) var(--margin-sm);
  }

  .section__title {
    font-size: 1.375rem;
  }

  .section__subtitle {
    font-size: 0.9375rem;
  }

  .bento-grid {
    gap: var(--margin-md);
  }

  .bento-card {
    padding: var(--margin-md);
  }

  .form-card {
    padding: var(--margin-md);
  }

  .form__input,
  .form__textarea {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--margin-md);
    margin-top: var(--margin-lg);
  }

  .stat-card {
    padding: var(--margin-lg);
  }

  .stat-card__number {
    font-size: 1.75rem;
  }

  .trust-block {
    padding: var(--margin-lg);
    gap: var(--margin-md);
  }

  .footer {
    padding: var(--margin-2xl) var(--margin-md);
  }

  .footer__nav {
    flex-direction: column;
    gap: var(--margin-md);
  }

  .cookie-banner {
    padding: var(--margin-md);
  }

  .cookie-banner__text {
    font-size: 0.8125rem;
  }

  .burger {
    width: 32px;
    height: 32px;
  }

  .burger__line {
    width: 20px;
  }

  .policy-page--luxury {
    padding: 5rem var(--margin-md) var(--margin-2xl);
  }

  .thank-you__card--luxury {
    padding: var(--margin-xl);
  }
}
