:root {
  --color-fuchsia: #FF4EC1;
  --color-turquoise: #40E0D0;
  --color-amber: #FFB800;
  --color-slate-teal: #317873;
  --color-lilac: #C8A2C8;
  --color-white: #FFFFFF;
  --color-black: #0a0a0a;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-500: #6c757d;
  --color-gray-600: #5a6268;
  --color-gray-700: #495057;
  --color-gray-900: #212529;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-weight-display: 700;
  --font-weight-body: 400;
  --font-weight-medium: 500;
  --letter-spacing-tight: -0.02em;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(255, 78, 193, 0.15);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --margin-section-desktop: 140px;
  --margin-section-mobile: 72px;
  --margin-card: 28px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  color: var(--color-gray-900);
  background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 50%, rgba(200, 162, 200, 0.08) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-slate-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-fuchsia);
}

a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-fuchsia);
  transition: width var(--transition-medium);
}

a:hover::after {
  width: 100%;
}

a.btn::after {
  display: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: 1.25rem;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-slate-teal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
}

main {
  min-height: 60vh;
}

section {
  padding: var(--margin-section-desktop) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: var(--margin-section-mobile) 20px;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  padding-top: 40px;
}

.hero-content {
  order: 1;
}

.hero-visual {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255, 78, 193, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-slate-teal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--color-amber);
  font-size: 1.25rem;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.price-current {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-slate-teal);
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  text-decoration: line-through;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-turquoise);
}

.hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 100px 24px 80px;
  display: flex;
  align-items: center;
}

.hero-bg-modern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: shapeMorph 12s ease-in-out infinite;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 78, 193, 0.3), rgba(64, 224, 208, 0.15));
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(225deg, rgba(64, 224, 208, 0.25), rgba(49, 120, 115, 0.2));
  bottom: -80px;
  left: -100px;
  animation-delay: -4s;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(200, 162, 200, 0.35);
  top: 40%;
  left: 10%;
  animation-delay: -2s;
}

.hero-shape-4 {
  width: 150px;
  height: 150px;
  background: rgba(255, 184, 0, 0.2);
  top: 20%;
  right: 25%;
  animation-delay: -6s;
}

@keyframes shapeMorph {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.4; }
  25% { transform: translate(30px, -20px) scale(1.1) rotate(5deg); opacity: 0.5; }
  50% { transform: translate(-20px, 25px) scale(0.95) rotate(-3deg); opacity: 0.35; }
  75% { transform: translate(15px, 15px) scale(1.05) rotate(2deg); opacity: 0.45; }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(49, 120, 115, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: dotsShift 20s linear infinite;
}

@keyframes dotsShift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  opacity: 0.5;
  animation: meshPulse 6s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-modern-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-modern-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-product-ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.hero-product-ring-1 {
  width: 280px;
  height: 280px;
  border-color: rgba(255, 78, 193, 0.3);
  animation-duration: 12s;
  animation-direction: reverse;
}

.hero-product-ring-2 {
  width: 340px;
  height: 340px;
  border-color: rgba(64, 224, 208, 0.25);
  animation-duration: 15s;
  animation-delay: -2s;
}

.hero-product-ring-3 {
  width: 400px;
  height: 400px;
  border-color: rgba(49, 120, 115, 0.15);
  animation-duration: 18s;
  animation-direction: reverse;
  animation-delay: -5s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-product-wrap {
  position: relative;
  z-index: 2;
  animation: productFloat 6s ease-in-out infinite;
}

.hero-product-wrap img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(49, 120, 115, 0.2));
  transition: transform 0.5s ease;
}

.hero-product-wrap:hover img {
  transform: scale(1.05) translateY(-8px);
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-modern-content {
  animation: contentReveal 1s ease-out;
}

@keyframes contentReveal {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-modern-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-slate-teal);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(49, 120, 115, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  animation: badgePop 0.8s ease-out 0.2s both;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-modern-title {
  margin-bottom: 20px;
}

.hero-modern-title-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  letter-spacing: -0.04em;
  color: var(--color-slate-teal);
  line-height: 1.05;
  animation: titleSlide 0.9s ease-out 0.3s both;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modern-title-sub {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-slate-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  animation: titleSlide 0.9s ease-out 0.45s both;
}

.hero-modern-desc {
  font-size: 1.1rem;
  color: var(--color-gray-700);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.7;
  animation: titleSlide 0.9s ease-out 0.6s both;
}

.hero-modern-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  animation: titleSlide 0.9s ease-out 0.75s both;
}

.hero-modern-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hero-modern-price .price-current {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--color-slate-teal), var(--color-fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-modern-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.hero-modern-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  animation: titleSlide 0.9s ease-out 0.9s both;
}

.hero-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-slate-teal);
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(49, 120, 115, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.hero-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(49, 120, 115, 0.12);
  border-color: rgba(64, 224, 208, 0.4);
}

.hero-modern-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 12px 48px rgba(49, 120, 115, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
  animation: formReveal 1s ease-out 1s both;
}

@keyframes formReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modern-form .form-disclaimer {
  margin-bottom: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-shape,
  .hero-dots,
  .hero-gradient-mesh,
  .hero-product-ring,
  .hero-product-wrap,
  .hero-modern-badge,
  .hero-modern-title-main,
  .hero-modern-title-sub,
  .hero-modern-desc,
  .hero-modern-meta,
  .hero-modern-pills,
  .hero-modern-form {
    animation: none !important;
  }

  .hero-pill:hover {
    transform: none;
  }

  .hero-product-wrap:hover img {
    transform: none;
  }
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-gray-600);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(49, 120, 115, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-slate-teal);
}

.order-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 16px 8px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-fuchsia);
  box-shadow: 0 0 0 3px rgba(255, 78, 193, 0.15);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-gray-500);
  pointer-events: none;
  transition: all var(--transition-medium);
}

.form-group textarea + label {
  top: 24px;
  transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 0.75rem;
  color: var(--color-fuchsia);
  transform: none;
}

.form-group textarea + label {
  top: 24px;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 8px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-fuchsia);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.checkbox-group label a {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-medium), filter var(--transition-medium);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-slate-teal));
  color: var(--color-white);
  width: 100%;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--color-slate-teal);
  color: var(--color-white);
}

.btn-secondary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.form-error {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #dc3545;
}

.form-group.has-error .checkbox-group {
  outline: 1px solid #dc3545;
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--margin-card);
}

.bento-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-fast);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(64, 224, 208, 0.3);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-tall {
  grid-row: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  stroke: var(--color-turquoise);
}

.bento-title {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: 1.25rem;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-slate-teal);
  margin-bottom: 8px;
}

.bento-text {
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-slate-teal);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition-medium);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: var(--color-amber);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 12px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-slate-teal);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--transition-medium);
}

.spec-card:hover {
  transform: translateY(-4px);
}

.spec-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  stroke: var(--color-turquoise);
}

.spec-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-slate-teal);
  font-weight: var(--font-weight-medium);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-item {
  text-align: center;
}

.step-item h3 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: 1.15rem;
  color: var(--color-slate-teal);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-lilac), var(--color-turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition-medium);
}

.ingredient-card:hover {
  transform: translateY(-4px);
}

.ingredient-name {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  font-size: 1.1rem;
  color: var(--color-slate-teal);
  margin-bottom: 8px;
}

.instructions-list {
  max-width: 600px;
  margin: 48px auto 0;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.instruction-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-turquoise);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-display);
}

.accordion-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.accordion-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-slate-teal);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion-trigger:hover {
  color: var(--color-fuchsia);
}

.accordion-icon {
  transition: transform var(--transition-medium);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-content-inner {
  padding-bottom: 20px;
  color: var(--color-gray-700);
}

.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(200, 162, 200, 0.15), rgba(64, 224, 208, 0.1));
  border-radius: var(--radius-xl);
}

.cta-section .btn {
  margin: 6px;
}

.disclaimer {
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-size: 0.9rem;
  color: var(--color-gray-700);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(49, 120, 115, 0.98);
  color: var(--color-white);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.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: 20px;
}

.cookie-banner p {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-settings {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: var(--color-gray-300);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-turquoise);
}

.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);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

footer {
  background: var(--color-slate-teal);
  color: var(--color-white);
  padding: 48px 24px 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
  color: var(--color-turquoise);
}

.footer-links a::after {
  background: var(--color-turquoise);
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.9;
}

.overview-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.overview-text p {
  margin-bottom: 16px;
  color: var(--color-gray-700);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-modern {
    min-height: auto;
    padding: 60px 20px 64px;
  }

  .hero-modern-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-modern-visual {
    order: 1;
    min-height: 280px;
  }

  .hero-modern-content {
    order: 2;
  }

  .hero-product-wrap img {
    max-width: 220px;
  }

  .hero-product-ring-1 { width: 200px; height: 200px; }
  .hero-product-ring-2 { width: 260px; height: 260px; }
  .hero-product-ring-3 { width: 320px; height: 320px; }

  .hero-modern-meta {
    flex-wrap: wrap;
    gap: 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-large,
  .bento-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .overview-section {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 16px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-page main {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-slate-teal);
  margin-bottom: 24px;
}

.policy-page h2 {
  font-size: 1.35rem;
  color: var(--color-slate-teal);
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-page p,
.policy-page li {
  margin-bottom: 12px;
  color: var(--color-gray-700);
}

.policy-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.thank-you-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-slate-teal);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 32px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform var(--transition-medium);
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-slate-teal);
  transition: all var(--transition-medium);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(200, 162, 200, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(49, 120, 115, 0.12);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-fuchsia);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.stat-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-business {
  margin-bottom: 24px;
}

.footer-business-name {
  font-weight: var(--font-weight-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-address {
  font-style: normal;
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 4px;
}

.footer-email {
  font-size: 0.95rem;
}

.footer-email a {
  color: var(--color-turquoise);
}

.policy-body {
  background: linear-gradient(180deg, #faf9fc 0%, #f5f3f8 50%, #f0eef5 100%);
}

main.policy-page {
  max-width: 900px;
  margin: 0 auto;
}

.policy-luxury .policy-hero {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(49, 120, 115, 0.15);
  margin-bottom: 48px;
}

.policy-luxury .policy-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-slate-teal);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.policy-luxury .policy-meta {
  font-size: 0.95rem;
  color: var(--color-gray-500);
}

.policy-luxury .policy-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-turquoise);
}

.policy-luxury .policy-block {
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: box-shadow var(--transition-medium);
}

.policy-luxury .policy-block:hover {
  box-shadow: 0 8px 32px rgba(49, 120, 115, 0.08);
}

.policy-luxury .policy-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--color-slate-teal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(49, 120, 115, 0.2);
}

.policy-luxury .policy-block h3 {
  font-size: 1.2rem;
  color: var(--color-slate-teal);
  margin: 24px 0 12px;
}

.policy-luxury .policy-subblock {
  margin: 24px 0;
  padding: 20px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: var(--radius-sm);
}

.policy-luxury .policy-address {
  font-style: normal;
  padding: 20px;
  background: rgba(64, 224, 208, 0.08);
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.policy-luxury .policy-contact {
  background: linear-gradient(135deg, rgba(200, 162, 200, 0.1), rgba(64, 224, 208, 0.08));
}

.thank-you-luxury .thank-you-icon {
  color: var(--color-turquoise);
  margin-bottom: 24px;
  animation: checkPop 0.6s ease-out;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-luxury h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 78, 193, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 78, 193, 0.35); }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 968px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .burger-btn {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 32px 32px;
    transition: right var(--transition-medium);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .policy-luxury .policy-block {
    padding: 20px 16px;
  }

  .policy-luxury .policy-intro {
    padding: 16px;
  }
}

@media (max-width: 320px) {
  :root {
    --margin-section-desktop: 80px;
    --margin-section-mobile: 48px;
    --margin-card: 16px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
  }

  body {
    font-size: 14px;
  }

  .header-inner {
    padding: 0 12px;
  }

  .brand {
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .burger-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .burger-btn span {
    width: 20px;
  }

  section {
    padding: var(--margin-section-mobile) 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    gap: 24px;
  }

  .hero-modern {
    padding: 40px 12px 48px;
  }

  .hero-modern-inner {
    gap: 32px;
  }

  .hero-modern-visual {
    min-height: 220px;
  }

  .hero-product-wrap img {
    max-width: 180px;
  }

  .hero-product-ring-1 { width: 160px; height: 160px; }
  .hero-product-ring-2 { width: 200px; height: 200px; }
  .hero-product-ring-3 { width: 240px; height: 240px; }

  .hero-modern-title-main {
    font-size: 2rem;
  }

  .hero-modern-title-sub {
    font-size: 1.25rem;
  }

  .hero-modern-form {
    padding: 24px 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-price {
    margin-bottom: 16px;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .hero-highlights {
    gap: 12px;
    margin-bottom: 20px;
  }

  .highlight-item {
    font-size: 0.8rem;
  }

  .order-form {
    padding: 20px 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 12px 6px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .bento-card {
    padding: 20px;
  }

  .bento-icon {
    width: 36px;
    height: 36px;
  }

  .bento-title {
    font-size: 1.1rem;
  }

  .bento-text {
    font-size: 0.85rem;
  }

  .social-proof {
    gap: 16px;
    margin-top: 24px;
  }

  .review-card {
    padding: 16px;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .spec-card {
    padding: 20px;
  }

  .spec-value {
    font-size: 0.9rem;
  }

  .steps-grid {
    gap: 24px;
    margin-top: 32px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .step-item h3 {
    font-size: 1rem;
  }

  .step-item p {
    font-size: 0.85rem;
  }

  .ingredients-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .ingredient-card {
    padding: 20px;
  }

  .ingredient-name {
    font-size: 1rem;
  }

  .instruction-step {
    gap: 12px;
    margin-bottom: 16px;
  }

  .instruction-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .accordion-trigger {
    padding: 16px 0;
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 48px 16px;
  }

  .disclaimer {
    padding: 20px 16px;
    font-size: 0.8rem;
  }

  .footer-inner {
    padding: 0 12px;
  }

  .footer-links {
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .cookie-banner {
    padding: 16px 12px;
  }

  .cookie-banner p {
    font-size: 0.85rem;
    min-width: auto;
  }

  .cookie-banner-buttons {
    gap: 8px;
  }

  .cookie-banner-buttons .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  main.policy-page,
  .policy-luxury .policy-content {
    padding: 24px 12px;
  }

  .policy-luxury .policy-hero {
    padding: 40px 0 24px;
    margin-bottom: 32px;
  }

  .policy-luxury .policy-hero h1 {
    font-size: 1.75rem;
  }

  .policy-luxury .policy-block {
    padding: 16px 12px;
    margin-bottom: 24px;
  }

  .policy-luxury .policy-block h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .thank-you-content h1 {
    font-size: 1.75rem;
  }

  .thank-you-content p {
    font-size: 0.95rem;
  }

  .main-nav {
    width: 100%;
    max-width: 100vw;
    padding: 70px 20px 24px;
  }
}
