:root {
  --color-imperial-plum: #580F41;
  --color-silken-ivory: #FAF4E3;
  --color-bronzed-gold: #A67C52;
  --color-midnight-teal: #043C40;
  --color-graphite-shadow: #3A3A3A;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --shadow-soft: 0 4px 24px rgba(88, 15, 65, 0.08);
  --shadow-card: 0 8px 32px rgba(4, 60, 64, 0.06);
  --shadow-glow: 0 0 60px rgba(166, 124, 82, 0.15);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --radius-small: 12px;
  --spacing-section-desktop: 140px;
  --spacing-section-mobile: 72px;
  --spacing-card: 28px;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-graphite-shadow);
  background-color: var(--color-silken-ivory);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-midnight-teal);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

a {
  color: var(--color-bronzed-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-imperial-plum);
}

a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-bronzed-gold);
  transition: width var(--transition-fast);
}

a:hover::after {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 244, 227, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-midnight-teal);
}

.brand:hover::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-input);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(166, 124, 82, 0.1);
}

.nav-toggle .burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-midnight-teal);
  margin: 5px auto;
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.nav-toggle .burger-line:nth-child(1) { margin-top: 0; }
.nav-toggle .burger-line:nth-child(3) { margin-bottom: 0; }

.nav-toggle.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    background: linear-gradient(180deg, rgba(250, 244, 227, 0.98) 0%, rgba(250, 244, 227, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }

  nav ul.open {
    display: flex;
    animation: slideInRight 0.4s ease;
    height: 100vh;
  }

  nav ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul a {
    font-size: 1.1rem;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 60, 64, 0.2);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

body.menu-open .menu-overlay {
  display: block;
  opacity: 1;
}

@media (min-width: 769px) {
  .menu-overlay {
    display: none !important;
  }
}

nav a {
  font-weight: 500;
  color: var(--color-graphite-shadow);
}

main {
  min-height: 60vh;
}

section {
  padding: var(--spacing-section-desktop) 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-section-mobile) 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-bronzed-gold), var(--color-imperial-plum));
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-midnight-teal);
  border: 2px solid var(--color-bronzed-gold);
}

.hero {
  position: relative;
  padding: 5rem 2rem 7rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(88, 15, 65, 0.35) 0%, transparent 70%);
  top: -10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(166, 124, 82, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(4, 60, 64, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes blobMorph {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.hero-gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(166, 124, 82, 0.12) 0%, transparent 55%);
  animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(58, 58, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 58, 58, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding: 3rem 2rem 5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-blob {
    filter: blur(60px);
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .hero-glass-card {
    padding: 1.75rem;
  }

  .hero-product-img {
    max-width: 220px;
  }

  .hero-badge-tl {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-glass-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(4, 60, 64, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.hero-glass-card:hover {
  transform: rotateY(-5deg) rotateX(3deg);
}

.hero-product-img-wrapper {
  position: relative;
}

.hero-product-img {
  max-width: 280px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-badge-tl {
  top: -0.5rem;
  right: -0.5rem;
}

.hero-badge-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-imperial-plum);
}

.hero-badge .hero-rating-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-bronzed-gold);
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(166, 124, 82, 0.2);
  animation: floatOrb 6s ease-in-out infinite;
}

.hero-float-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 0;
  animation-delay: -2s;
}

.hero-float-3 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 10%;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(10px, -15px); opacity: 1; }
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronzed-gold);
  background: rgba(166, 124, 82, 0.12);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--color-bronzed-gold);
  letter-spacing: -0.01em;
}

.hero-desc {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 480px;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s ease forwards;
}

.hero-content .hero-reveal:nth-child(1) { animation-delay: 0.1s; }
.hero-content .hero-reveal:nth-child(2) { animation-delay: 0.25s; }
.hero-content .hero-reveal:nth-child(3) { animation-delay: 0.4s; }
.hero-content .hero-reveal:nth-child(4) { animation-delay: 0.55s; }
.hero-content .hero-reveal:nth-child(5) { animation-delay: 0.7s; }
.hero-content .hero-reveal:nth-child(6) { animation-delay: 0.85s; }
.hero-content .hero-reveal:nth-child(7) { animation-delay: 1s; }
.hero-content .hero-reveal:nth-child(8) { animation-delay: 1.15s; }
.hero-content .hero-reveal:nth-child(9) { animation-delay: 1.3s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-imperial-plum);
}

.hero-price-old {
  font-size: 1.25rem;
  color: var(--color-graphite-shadow);
  text-decoration: line-through;
}

.hero-price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--color-graphite-shadow);
  margin-top: 0.35rem;
  opacity: 0.9;
}

.hero-price-note a {
  color: var(--color-bronzed-gold);
}

.reviews-disclaimer {
  font-size: 0.9rem;
  color: var(--color-graphite-shadow);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--color-graphite-shadow);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.hero-highlight-dot {
  width: 6px;
  height: 6px;
  background: var(--color-bronzed-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-form {
  animation-delay: 1.6s;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(58, 58, 58, 0.2);
  border-radius: var(--radius-input);
  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-bronzed-gold);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}

.form-group label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--color-graphite-shadow);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.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: -0.5rem;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--color-bronzed-gold);
  background: var(--color-white);
  padding: 0 0.25rem;
}

.form-group textarea + label {
  top: 1rem;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
}

.form-group .error-message {
  font-size: 0.875rem;
  color: #c53030;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c53030;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: var(--color-bronzed-gold);
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-group .error-message {
  font-size: 0.875rem;
  color: #c53030;
  margin-top: 0.25rem;
  display: none;
}

.checkbox-group.has-error .error-message {
  display: block;
}

.order-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.order-form .btn {
  width: 100%;
  padding: 1.25rem;
}

.journey-section {
  background: linear-gradient(180deg, rgba(4, 60, 64, 0.04) 0%, rgba(88, 15, 65, 0.06) 50%, var(--color-silken-ivory) 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(166, 124, 82, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.journey-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.journey-title {
  margin-bottom: 0.5rem;
}

.journey-subtitle {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--color-graphite-shadow);
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .journey-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .journey-stats {
    grid-template-columns: 1fr;
  }
}

.journey-stat {
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.journey-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(4, 60, 64, 0.1);
}

.journey-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-imperial-plum);
  line-height: 1;
  display: inline-block;
}

.journey-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bronzed-gold);
}

.journey-stat-label {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-graphite-shadow);
}

.journey-timeline {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .journey-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  max-width: 280px;
}

.journey-step-dot {
  width: 12px;
  height: 12px;
  background: var(--color-bronzed-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.2);
}

.social-proof {
  background: linear-gradient(180deg, rgba(250, 244, 227, 0.5) 0%, var(--color-silken-ivory) 100%);
}

.social-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .social-proof-inner {
    grid-template-columns: 1fr;
  }
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-card);
}

.review-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 82, 0.3);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--spacing-card);
}

@media (max-width: 968px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 82, 0.3);
}

.bento-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card:nth-child(2) {
  grid-column: span 2;
}

.bento-card:nth-child(3),
.bento-card:nth-child(4),
.bento-card:nth-child(5),
.bento-card:nth-child(6) {
  grid-column: span 1;
}

@media (max-width: 968px) {
  .bento-card:nth-child(1),
  .bento-card:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: span 1;
  }
}

.bento-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  stroke: var(--color-bronzed-gold);
}

.product-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .product-overview-inner {
    grid-template-columns: 1fr;
  }
}

.product-overview-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-card);
}

.spec-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.spec-card svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--color-bronzed-gold);
}

.spec-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-midnight-teal);
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.how-step {
  text-align: center;
}

.how-step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-bronzed-gold), var(--color-imperial-plum));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-card);
}

.ingredient-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform var(--transition-fast);
}

.ingredient-card:hover {
  transform: translateY(-4px);
}

.instructions-list {
  list-style: none;
  counter-reset: step;
}

.instructions-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  counter-increment: step;
}

.instructions-list li::before {
  content: counter(step);
  width: 40px;
  height: 40px;
  background: var(--color-bronzed-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(58, 58, 58, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--color-graphite-shadow);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-midnight-teal);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  padding-right: 2rem;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-midnight-teal), var(--color-imperial-plum));
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: var(--color-bronzed-gold);
}

.disclaimer {
  background: rgba(58, 58, 58, 0.05);
  padding: 2rem;
  border-radius: var(--radius-card);
  font-size: 0.9rem;
  color: var(--color-graphite-shadow);
}

.disclaimer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-midnight-teal);
}

footer {
  background: var(--color-midnight-teal);
  color: var(--color-silken-ivory);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-business {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 244, 227, 0.3);
}

.footer-business p {
  margin: 0.25rem 0;
}

.footer-business a {
  color: var(--color-silken-ivory);
}

.footer-business a:hover::after {
  background: var(--color-silken-ivory);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-links a {
  color: var(--color-silken-ivory);
}

.footer-links a:hover::after {
  background: var(--color-silken-ivory);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid rgba(58, 58, 58, 0.1);
  padding: 2rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.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: 1.5rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-settings {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(58, 58, 58, 0.1);
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.08);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: rgba(58, 58, 58, 0.2);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-bronzed-gold);
}

.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;
}

.thank-you-page {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.thank-you-page .thank-you-card {
  padding: 4rem 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 244, 227, 0.4) 100%);
  border-radius: var(--radius-card);
  border: 1px solid rgba(166, 124, 82, 0.2);
  box-shadow: var(--shadow-card);
}

.thank-you-page .thank-you-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-bronzed-gold), var(--color-imperial-plum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-page .thank-you-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
}

.thank-you-page h1 {
  margin-bottom: 1rem;
}

.thank-you-page p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.policy-page {
  padding: 5rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.policy-page .policy-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(4, 60, 64, 0.03) 0%, rgba(88, 15, 65, 0.08) 100%);
  border-radius: var(--radius-card);
  border: 1px solid rgba(166, 124, 82, 0.15);
}

.policy-page .policy-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.policy-page .policy-date {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-bronzed-gold);
  letter-spacing: 0.05em;
}

.policy-page h1 {
  margin-bottom: 2rem;
}

.policy-page h2 {
  margin: 3rem 0 1.25rem;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(166, 124, 82, 0.2);
}

.policy-page h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.policy-page p,
.policy-page ul {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.policy-page ul {
  padding-left: 2rem;
}

.policy-page .policy-block {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(250, 244, 227, 0.2) 100%);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.policy-page .contact-info {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(250, 244, 227, 0.8) 0%, rgba(166, 124, 82, 0.15) 100%);
  border-radius: var(--radius-card);
  border: 1px solid rgba(166, 124, 82, 0.2);
}

.policy-page .toc-item {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.08);
  color: var(--color-graphite-shadow);
  transition: color var(--transition-fast);
}

.policy-page .toc-item:hover {
  color: var(--color-bronzed-gold);
}

.policy-page .toc-item:last-child {
  border-bottom: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 320px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  section {
    padding: 48px 1rem;
  }

  .hero {
    padding: 2rem 1rem 4rem;
    min-height: auto;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .hero-glass-card {
    padding: 1.5rem;
  }

  .hero-product-img {
    max-width: 200px;
  }

  .hero-float {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-price-current {
    font-size: 1.5rem;
  }

  .order-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 16px;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .bento-card {
    padding: 1.25rem;
  }

  .spec-card {
    padding: 1.25rem;
  }

  .journey-stat {
    padding: 1.25rem 1rem;
  }

  .journey-stat-number {
    font-size: 2rem;
  }

  .cta-section {
    padding: 2.5rem 1rem;
  }

  .footer-business {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .policy-page {
    padding: 3rem 1rem 4rem;
  }

  .policy-page .policy-hero {
    padding: 2rem 1rem;
  }

  nav ul {
    width: 100%;
    padding: 4rem 1rem 2rem;
  }

  .thank-you-page {
    padding: 3rem 1rem;
  }

  .thank-you-page .thank-you-card {
    padding: 2rem 1.5rem;
  }
}
