:root {
  --color-black-sapphire: #0A1A2F;
  --color-molten-gold: #E0B84C;
  --color-velvet-crimson: #6A0F1B;
  --color-emerald-royale: #0B5D3B;
  --color-graphite-obsidian: #1F1F1F;
  --color-white: #FFFFFF;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-05: rgba(255, 255, 255, 0.05);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-weight-display: 700;
  --font-weight-display-bold: 800;
  --font-weight-body: 400;
  --font-weight-body-medium: 500;
  --letter-spacing-tight: -0.02em;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 60px rgba(224, 184, 76, 0.15);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --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;
  --border-thin: 1px solid rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  color: var(--color-white-90);
  background: var(--color-black-sapphire);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  position: relative;
  color: var(--color-molten-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-white);
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-molten-gold);
  transition: width var(--transition-fast);
}

a:hover::after {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 26, 47, 0.7);
  border-bottom: var(--border-thin);
  transition: all var(--transition-fast);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  header nav {
    padding: 24px 40px;
  }
}

.brand {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display-bold);
  font-size: 1.25rem;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .brand {
    font-size: 1.5rem;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: var(--font-weight-body-medium);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(224, 184, 76, 0.08);
  border: 1px solid rgba(224, 184, 76, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(224, 184, 76, 0.15);
  border-color: rgba(224, 184, 76, 0.4);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-molten-gold);
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    background: linear-gradient(180deg, var(--color-black-sapphire) 0%, var(--color-graphite-obsidian) 100%);
    border-left: 1px solid rgba(224, 184, 76, 0.2);
    padding: 80px 32px 32px;
    gap: 8px;
    display: none;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    display: flex;
    animation: slideInRight 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) { transition: all 0.3s ease 0.05s; }
  .nav-links.open li:nth-child(2) { transition: all 0.3s ease 0.1s; }
  .nav-links.open li:nth-child(3) { transition: all 0.3s ease 0.15s; }
  .nav-links.open li:nth-child(4) { transition: all 0.3s ease 0.2s; }
  .nav-links.open li:nth-child(5) { transition: all 0.3s ease 0.25s; }

  .nav-links a {
    font-size: 1.1rem;
    padding: 16px 0;
    display: block;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-overlay {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  opacity: 0;
  transition:  0.3s ease;
}

.nav-overlay.active {
  display: block;
  height: 100vh;
  opacity: 1;
}

@media (min-width: 768px) {
  .nav-overlay {
    display: none !important;
  }
}

main {
  min-height: 100vh;
}

section {
  padding: var(--spacing-section-mobile) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--spacing-section-desktop) 0;
  }
}

.section-title {
  font-size: 2rem;
  margin-bottom: 48px;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
    margin-bottom: 64px;
  }
}

.section-title span {
  color: var(--color-molten-gold);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--font-weight-body-medium);
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.btn-primary {
  background: var(--color-emerald-royale);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-molten-gold);
  border: 1px solid var(--color-molten-gold);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 16px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-input);
  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-molten-gold);
  box-shadow: 0 0 0 3px rgba(224, 184, 76, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-white-70);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-group textarea + label {
  top: 28px;
  transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid + label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 0.75rem;
  color: var(--color-molten-gold);
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-error {
  color: var(--color-velvet-crimson);
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--color-velvet-crimson);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group .form-error {
  flex-basis: 100%;
}

.checkbox-group input {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--color-molten-gold);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-white-70);
}

.checkbox-group label a {
  text-decoration: underline;
}

.checkbox-group.error label {
  color: var(--color-velvet-crimson);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(10, 26, 47, 0.95);
  border-top: var(--border-thin);
  padding: 24px;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-settings {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-thin);
}

.cookie-settings.show {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: var(--border-thin);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-toggle {
  width: 48px;
  height: 26px;
  background: var(--color-graphite-obsidian);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle.active {
  background: var(--color-emerald-royale);
}

.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;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

footer {
  background: var(--color-graphite-obsidian);
  padding: 64px 0 32px;
  border-top: var(--border-thin);
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-business {
  font-size: 0.9rem;
  color: var(--color-white-70);
}

.footer-company {
  font-weight: var(--font-weight-body-medium);
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-address {
  font-style: normal;
  margin-bottom: 8px;
}

.footer-email {
  margin: 0;
}

.footer-email a {
  color: var(--color-molten-gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-nav a {
  margin-right: 0;
}

footer .copyright {
  font-size: 0.9rem;
  color: var(--color-white-70);
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-white-70);
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-input);
  border-left: 3px solid var(--color-molten-gold);
}

.reviews-disclaimer {
  font-size: 0.85rem;
  color: var(--color-white-70);
  margin-bottom: 24px;
}

.ingredients-note {
  font-size: 0.85rem;
  color: var(--color-white-70);
  margin-bottom: 32px;
}

.hero {
  position: relative;
  padding-top: 48px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 80px;
  }
}

.hero-luxury {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .hero-luxury {
    min-height: 92vh;
    padding-top: 40px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 184, 76, 0.25) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 93, 59, 0.15) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(106, 15, 27, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 184, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 184, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-float {
  position: absolute;
  border: 1px solid rgba(224, 184, 76, 0.08);
  border-radius: 50%;
  animation: floatRing 15s linear infinite;
}

.hero-float-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: 20%;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 200px;
  height: 200px;
  bottom: 25%;
  left: 15%;
  animation-delay: -5s;
  animation-duration: 12s;
}

.hero-float-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation-delay: -10s;
  animation-duration: 18s;
}

@keyframes floatRing {
  0% { transform: rotate(0deg) scale(1); opacity: 0.5; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.5; }
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  padding: 48px;
  animation: frameReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes frameReveal {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-frame-inner {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(224, 184, 76, 0.2);
  border-radius: 50%;
  animation: frameRotate 30s linear infinite;
}

@keyframes frameRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-product-wrap {
  position: relative;
  animation: heroProductFloat 5s ease-in-out infinite;
}

@keyframes heroProductFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

.hero-product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(224, 184, 76, 0.25) 0%, rgba(11, 93, 59, 0.1) 40%, transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-product-wrap img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.hero-label {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-molten-gold);
  opacity: 0.9;
  animation: labelFade 1s ease-out 0.8s both;
}

@keyframes labelFade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 0.9; transform: translateX(-50%) translateY(0); }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  order: 2;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-stars {
  display: flex;
  gap: 4px;
}

.hero-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--color-molten-gold);
  animation: starTwinkle 2s ease-in-out infinite;
}

.hero-stars svg:nth-child(1) { animation-delay: 0s; }
.hero-stars svg:nth-child(2) { animation-delay: 0.2s; }
.hero-stars svg:nth-child(3) { animation-delay: 0.4s; }
.hero-stars svg:nth-child(4) { animation-delay: 0.6s; }
.hero-stars svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-badge {
  font-size: 0.85rem;
  color: var(--color-white-70);
}

.hero-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: titleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-white-90) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
}

.hero-title-accent {
  font-size: 0.5em;
  font-weight: var(--font-weight-body-medium);
  background: linear-gradient(135deg, var(--color-molten-gold) 0%, rgba(224, 184, 76, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.5s;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-title-accent {
    font-size: 0.45em;
  }
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-white-70);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-price-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-price {
  position: relative;
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: var(--font-weight-display);
  color: var(--color-molten-gold);
  overflow: hidden;
}

.hero-price-value {
  position: relative;
  z-index: 1;
}

.hero-price-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero-price-old {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-white-70);
  text-decoration: line-through;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-white-70);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.hero-highlight:hover {
  color: var(--color-white-90);
  transform: translateX(4px);
}

.hero-highlight-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 184, 76, 0.1);
  border: 1px solid rgba(224, 184, 76, 0.2);
  transition: all var(--transition-fast);
}

.hero-highlight:hover .hero-highlight-icon {
  background: rgba(224, 184, 76, 0.2);
  border-color: rgba(224, 184, 76, 0.4);
}

.hero-highlight-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-molten-gold);
}

.hero-form-card {
  background: rgba(10, 26, 47, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(224, 184, 76, 0.12);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--color-white);
}

.stats-section {
  background: linear-gradient(180deg, var(--color-black-sapphire) 0%, rgba(31, 31, 31, 0.4) 50%, var(--color-black-sapphire) 100%);
}

.stats-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-white-70);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 184, 76, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-molten-gold);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: var(--font-weight-display);
  color: var(--color-molten-gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--color-molten-gold);
}

.stat-label {
  font-size: 1rem;
  font-weight: var(--font-weight-body-medium);
  color: var(--color-white);
  margin: 8px 0 4px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--color-white-70);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--color-white-70);
}

.value-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-molten-gold);
  flex-shrink: 0;
}

.review-cards {
  display: grid;
  gap: var(--spacing-card);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .review-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 184, 76, 0.2);
}

.review-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-card .stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-molten-gold);
}

.review-card p {
  font-size: 0.95rem;
  color: var(--color-white-70);
  margin-bottom: 12px;
}

.review-card .author {
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: var(--font-weight-body-medium);
}

.bento-grid {
  display: grid;
  gap: var(--spacing-card);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-card:nth-child(2),
  .bento-card:nth-child(3) {
    grid-column: span 1;
  }

  .bento-card:nth-child(4) {
    grid-column: span 2;
  }

  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: span 2;
  }
}

.bento-card {
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 184, 76, 0.2);
}

.bento-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.bento-card .icon-wrap svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-molten-gold);
}

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.product-overview {
  background: linear-gradient(180deg, transparent 0%, var(--color-graphite-obsidian) 50%, transparent 100%);
}

.overview-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.overview-content p {
  font-size: 1.1rem;
  color: var(--color-white-70);
  margin-bottom: 20px;
  line-height: 1.7;
}

.overview-image {
  position: relative;
}

.overview-image img {
  border-radius: var(--radius-card);
}

.specs-grid {
  display: grid;
  gap: var(--spacing-card);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-card {
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 184, 76, 0.2);
}

.spec-card .spec-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.spec-card .spec-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-molten-gold);
}

.spec-card .spec-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-white-70);
  margin-bottom: 8px;
}

.spec-card .spec-value {
  font-size: 1.1rem;
  font-weight: var(--font-weight-body-medium);
  color: var(--color-white);
}

.how-it-works {
  background: var(--color-graphite-obsidian);
}

.steps-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item::after {
  content: '';
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-white-10);
}

@media (min-width: 768px) {
  .step-item:not(:last-child)::after {
    display: block;
  }
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: var(--font-weight-display);
  color: var(--color-molten-gold);
  border: var(--border-thin);
  border-radius: 50%;
}

.step-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-white);
}

.step-item p {
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.ingredients-grid {
  display: grid;
  gap: var(--spacing-card);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient-card {
  background: var(--color-white-05);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 184, 76, 0.2);
}

.ingredient-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.ingredient-card p {
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.instructions-list {
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.instruction-step:last-child {
  margin-bottom: 0;
}

.instruction-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: var(--font-weight-display);
  color: var(--color-molten-gold);
  border: var(--border-thin);
  border-radius: var(--radius-input);
}

.instruction-step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-white);
}

.instruction-step p {
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: var(--border-thin);
}

.faq-item:first-child {
  border-top: var(--border-thin);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--font-weight-body-medium);
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-molten-gold);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
  stroke: var(--color-molten-gold);
  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: 0 0 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-white-70);
}

.final-cta {
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 93, 59, 0.15) 100%);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--color-white-70);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  background: var(--color-graphite-obsidian);
  border-top: var(--border-thin);
}

.disclaimer .container {
  text-align: center;
}

.disclaimer p {
  font-size: 0.85rem;
  color: var(--color-white-70);
  max-width: 800px;
  margin: 0 auto;
}

.policy-page {
  padding: 0 0 120px;
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  color: var(--color-white);
}

.policy-page h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--color-white);
}

.policy-page h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--color-white-90);
}

.policy-page p,
.policy-page li {
  font-size: 1rem;
  color: var(--color-white-70);
  margin-bottom: 16px;
}

.policy-page ul,
.policy-page ol {
  margin-left: 24px;
}

.policy-page address {
  font-style: normal;
  color: var(--color-white-70);
}

.policy-hero {
  background: linear-gradient(135deg, rgba(224, 184, 76, 0.06) 0%, transparent 50%, rgba(11, 93, 59, 0.04) 100%);
  border-bottom: 1px solid rgba(224, 184, 76, 0.15);
  padding: 80px 0 48px;
  text-align: center;
}

.policy-title {
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-molten-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-meta {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-white-70);
  margin-top: 16px;
}

.policy-content {
  padding-top: 64px;
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h2 {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--color-molten-gold);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.thank-you-page h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.thank-you-page p {
  font-size: 1.1rem;
  color: var(--color-white-70);
  margin-bottom: 32px;
}

.thank-you-luxury {
  position: relative;
  overflow: hidden;
}

.thank-you-hero {
  position: relative;
  padding: 80px 24px;
}

.thank-you-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 184, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.thank-you-content {
  position: relative;
  z-index: 1;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  animation: thankYouCheck 0.6s ease-out;
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes thankYouCheck {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

.thank-you-title {
  font-size: 3rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-molten-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: thankYouFade 0.6s ease-out 0.2s both;
}

.thank-you-subtitle {
  font-size: 1.25rem;
  color: var(--color-molten-gold);
  margin-bottom: 24px;
  animation: thankYouFade 0.6s ease-out 0.3s both;
}

.thank-you-desc {
  max-width: 480px;
  margin: 0 auto 32px;
  animation: thankYouFade 0.6s ease-out 0.4s both;
}

.thank-you-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-molten-gold), transparent);
  margin: 0 auto 24px;
  animation: thankYouFade 0.6s ease-out 0.5s both;
}

.thank-you-note {
  margin-bottom: 32px !important;
  font-size: 0.95rem;
  animation: thankYouFade 0.6s ease-out 0.6s both;
}

@keyframes thankYouFade {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 320px) {
  .container {
    padding: 0 16px;
  }

  header nav {
    padding: 16px 16px;
  }

  .brand {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .nav-toggle span {
    width: 18px;
  }

  .nav-links {
    width: 100%;
    padding: 70px 20px 24px;
  }

  .hero-luxury {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-frame {
    padding: 32px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-title-accent {
    font-size: 0.5em;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-price {
    font-size: 1.5rem;
  }

  .hero-price-old {
    font-size: 1rem;
  }

  .hero-form-card {
    padding: 20px 16px;
  }

  .hero-orb-1 {
    width: 300px;
    height: 300px;
  }

  .hero-float-1 {
    width: 180px;
    height: 180px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  section {
    padding: 48px 0;
  }

  .stats-grid {
    gap: 16px;
    margin-bottom: 32px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.25rem;
  }

  .bento-card {
    padding: 24px 20px;
  }

  .bento-card h3 {
    font-size: 1.1rem;
  }

  .spec-card {
    padding: 20px 16px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .final-cta .btn {
    display: block;
    width: 100%;
    margin: 8px 0 !important;
  }

  .policy-hero {
    padding: 56px 0 32px;
  }

  .policy-title {
    font-size: 2rem;
  }

  .policy-content {
    padding-top: 40px;
  }

  .thank-you-hero {
    padding: 48px 16px;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-subtitle {
    font-size: 1rem;
  }

  .thank-you-desc {
    font-size: 0.95rem;
  }

  .cookie-banner .container {
    padding: 16px;
  }

  .cookie-buttons .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  footer {
    padding: 40px 0 24px;
  }

  footer .container {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    flex-direction: column;
  }

  .footer-nav a {
    display: block;
    margin-bottom: 8px;
  }
}

