
/* ============================================
   VEYANA — Ultra Premium Feminine Wellness
   Luxury Landing Page Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Pantone-matched brand colors */
  --gold: #C4A35A;
  --soft-gold: #E8C87A;
  --burgundy: #8B3A4A;
  --deep-burgundy: #6B2D3C;
  --dark-wine: #3D1A24;
  --rose-gold: #D4A5A5;
  --champagne: #F5E6D3;
  --ivory: #FAF6F0;
  --blush: #F0D5D5;
  --dusty-rose: #A35D6E;

  /* Gradients */
  --gradient-luxury: linear-gradient(135deg, #3D1A24 0%, #6B2D3C 40%, #8B3A4A 70%, #A35D6E 100%);
  --gradient-champagne: linear-gradient(180deg, #FAF6F0 0%, #F5E6D3 50%, #F0D5D5 100%);
  --gradient-burgundy: linear-gradient(180deg, #3D1A24 0%, #6B2D3C 60%, #8B3A4A 100%);
  --gradient-gold: linear-gradient(135deg, #C4A35A 0%, #E8C87A 50%, #D4A5A5 100%);
  --gradient-gold-shine: linear-gradient(90deg, #C4A35A 0%, #E8C87A 25%, #FAF6F0 50%, #E8C87A 75%, #C4A35A 100%);

  /* Shadows */
  --shadow-luxury: 0 8px 32px rgba(61, 26, 36, 0.15);
  --shadow-luxury-dark: 0 8px 32px rgba(61, 26, 36, 0.3);
  --shadow-gold: 0 4px 24px rgba(196, 163, 90, 0.4);
  --shadow-gold-hover: 0 8px 40px rgba(196, 163, 90, 0.6);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--dark-wine);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(196, 163, 90, 0.3);
  color: var(--dark-wine);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-burgundy {
  background: linear-gradient(135deg, #8B3A4A 0%, #A35D6E 50%, #D4A5A5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.shimmer-text {
  background: var(--gradient-gold-shine);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  box-shadow: var(--shadow-luxury-dark), inset 0 1px 0 rgba(255,255,255,0.05);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 165, 165, 0.15);
  border-radius: 2rem;
  box-shadow: var(--shadow-luxury), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-gold);
  background-size: 200% 200%;
  color: var(--dark-wine);
  box-shadow: var(--shadow-gold);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-luxury:hover {
  background-position: 100% 0;
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

.btn-luxury:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--gold);
  background: transparent;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover {
  background: rgba(196, 163, 90, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(196, 163, 90, 0.2);
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.label-pill-dark {
  border: 1px solid rgba(212, 165, 165, 0.3);
  background: rgba(61, 26, 36, 0.3);
  color: var(--champagne);
}

.label-pill-light {
  border: 1px solid rgba(139, 58, 74, 0.2);
  background: rgba(240, 213, 213, 0.3);
  color: var(--deep-burgundy);
}

/* Organic blob animation */
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.scrolled {
  background: rgba(61, 26, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(61, 26, 36, 0.3);
  padding: 14px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.75);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}

.nav-cart:hover {
  background: rgba(196, 163, 90, 0.1);
  border-color: var(--gold);
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(61, 26, 36, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-luxury);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.3;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--deep-burgundy);
  top: -100px;
  left: -150px;
  animation: blob 15s infinite ease-in-out;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: var(--dusty-rose);
  top: 40%;
  right: -150px;
  animation: blob 18s infinite ease-in-out 3s;
}

.hero-blob-3 {
  width: 400px;
  height: 400px;
  background: var(--dark-wine);
  bottom: -50px;
  left: 30%;
  animation: blob 20s infinite ease-in-out 6s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(61,26,36,0.3) 60%, rgba(61,26,36,0.7) 100%);
  z-index: 20;
}

.hero-curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 30;
}

.hero-curve-bottom svg {
  display: block;
  width: 100%;
}

.hero-inner {
  position: relative;
  z-index: 25;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 160px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-label {
  margin-bottom: 28px;
}

.hero-label .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(245, 230, 211, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Product Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.08);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-product-img {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(61, 26, 36, 0.4));
}

.hero-product-img img {
  width: 100%;
  height: auto;
}

/* Floating heart gummies */
.heart-float {
  position: absolute;
  pointer-events: none;
  z-index: 6;
}

.heart-float-1 {
  width: 60px;
  top: -20px;
  left: -10px;
  animation: float 6s ease-in-out infinite;
}

.heart-float-2 {
  width: 50px;
  bottom: 20px;
  right: -20px;
  animation: float 7s ease-in-out infinite 1s;
}

.heart-float-3 {
  width: 40px;
  top: 30%;
  right: -40px;
  animation: float 5s ease-in-out infinite 2s;
}

.heart-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(61, 26, 36, 0.3));
}

/* ============================================
   SECTION BASE
   ============================================ */

.section-pad {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: italic;
}

.section-header p {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--dusty-rose);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 163, 90, 0.3);
  box-shadow: var(--shadow-luxury), inset 0 1px 0 rgba(255,255,255,0.5), 0 20px 40px rgba(61,26,36,0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(3deg);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--dark-wine);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.benefit-card:hover h3 {
  color: var(--burgundy);
}

.benefit-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(163, 93, 110, 0.8);
  line-height: 1.7;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */

.ingredients {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(245,230,211,0.4) 50%, var(--ivory) 100%);
  overflow: hidden;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ingredient-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ingredient-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 163, 90, 0.3);
}

.ingredient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,163,90,0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  border-radius: 2rem;
}

.ingredient-card:hover::before {
  opacity: 1;
}

.ingredient-card-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.ingredient-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196,163,90,0.15), rgba(212,165,165,0.1));
  border: 1px solid rgba(196,163,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}

.ingredient-card:hover .ingredient-icon {
  transform: scale(1.1);
}

.ingredient-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  color: var(--burgundy);
}

.ingredient-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark-wine);
  margin-bottom: 4px;
}

.ingredient-dose {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.12);
  color: var(--deep-burgundy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ingredient-role {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ingredient-info p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(163, 93, 110, 0.8);
  line-height: 1.7;
}

/* Molecular decorations */
.molecule-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */

.science {
  position: relative;
  background: var(--gradient-burgundy);
  overflow: hidden;
}

.science .section-header h2,
.science .section-header p {
  color: var(--ivory);
}

.science .section-header p {
  opacity: 0.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.stat-card {
  text-align: center;
  padding: 36px 24px;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 230, 211, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.science-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.science-card {
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.science-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 163, 90, 0.3);
}

.science-card svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
  color: var(--gold);
  margin-bottom: 24px;
}

.science-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 12px;
}

.science-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
}

.checks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.2);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 230, 211, 0.8);
}

.check-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   MADE IN USA SECTION
   ============================================ */

.madeinusa {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(245,230,211,0.3) 50%, var(--ivory) 100%);
  overflow: hidden;
}

.madeinusa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.madeinusa-visual {
  position: relative;
}

.madeinusa-visual-inner {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-wine), var(--deep-burgundy));
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
}

.madeinusa-visual-inner::before,
.madeinusa-visual-inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.15);
}

.madeinusa-visual-inner::before {
  width: 120px;
  height: 120px;
  top: 30px;
  right: 30px;
}

.madeinusa-visual-inner::after {
  width: 90px;
  height: 90px;
  bottom: 30px;
  left: 30px;
  border-color: rgba(212, 165, 165, 0.15);
}

.madeinusa-seal {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 32px;
}

.madeinusa-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(196, 163, 90, 0.3);
  animation: rotate-slow 60s linear infinite;
}

.madeinusa-seal-ring-inner {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.2);
}

.madeinusa-seal-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.madeinusa-seal-icon svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  stroke-width: 1;
}

.madeinusa-visual-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.madeinusa-visual-inner p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.6);
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.madeinusa-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark-wine);
  line-height: 1.1;
  margin-bottom: 20px;
}

.madeinusa-content h2 em {
  font-style: italic;
}

.madeinusa-content > p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--dusty-rose);
  line-height: 1.7;
  margin-bottom: 40px;
}

.trust-point {
  display: flex;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  transition: background 0.3s;
}

.trust-point:hover {
  background: rgba(255, 255, 255, 0.5);
}

.trust-point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,163,90,0.15), rgba(212,165,165,0.1));
  border: 1px solid rgba(196,163,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-point-icon svg {
  width: 22px;
  height: 22px;
  color: var(--burgundy);
  stroke-width: 1.5;
}

.trust-point h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--dark-wine);
  margin-bottom: 4px;
}

.trust-point p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(163, 93, 110, 0.8);
  line-height: 1.6;
}

/* ============================================
   LIFESTYLE SECTION
   ============================================ */

.lifestyle {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(245,230,211,0.3) 100%);
  overflow: hidden;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lifestyle-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.lifestyle-card:nth-child(2) {
  margin-top: 64px;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.lifestyle-card:hover img {
  transform: scale(1.05);
}

.lifestyle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,26,36,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.lifestyle-card-overlay p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ivory);
  font-style: italic;
  line-height: 1.3;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  position: relative;
  background: linear-gradient(180deg, rgba(245,230,211,0.3) 0%, var(--ivory) 50%, var(--ivory) 100%);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 163, 90, 0.3);
}

.testimonial-quote {
  width: 32px;
  height: 32px;
  color: rgba(196, 163, 90, 0.25);
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(61, 26, 36, 0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--deep-burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ivory);
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark-wine);
}

.testimonial-location {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--dusty-rose);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(245,230,211,0.2) 100%);
  overflow: hidden;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 165, 0.12);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(196, 163, 90, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark-wine);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s;
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--burgundy);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 32px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(163, 93, 110, 0.8);
  line-height: 1.7;
}

/* ============================================
   SUBSCRIPTION / PRICING SECTION
   ============================================ */

.pricing {
  position: relative;
  background: var(--gradient-burgundy);
  overflow: hidden;
}

.pricing .section-header h2,
.pricing .section-header p {
  color: var(--ivory);
}

.pricing .section-header p {
  opacity: 0.6;
}

.perks-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.15);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 230, 211, 0.7);
}

.perk-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 40px 32px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  background: linear-gradient(135deg, rgba(196,163,90,0.15), rgba(212,165,165,0.05));
  border-color: rgba(196, 163, 90, 0.3);
  box-shadow: 0 20px 60px rgba(196, 163, 90, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark-wine);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 4px;
}

.pricing-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 230, 211, 0.5);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-price .amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
}

.pricing-price .period {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245, 230, 211, 0.5);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-card .btn-luxury,
.pricing-card .btn-outline {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  background: var(--dark-wine);
  padding-top: 100px;
  padding-bottom: 48px;
  overflow: hidden;
}

.footer-curve {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
}

.footer-curve svg {
  display: block;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 163, 90, 0.6);
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: rgba(196, 163, 90, 0.5);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.5);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-newsletter {
  padding: 32px 40px;
  border-radius: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 64px;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-newsletter h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 6px;
}

.footer-newsletter p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.5);
}

.footer-newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter-form input::placeholder {
  color: rgba(245, 230, 211, 0.3);
}

.footer-newsletter-form input:focus {
  border-color: rgba(196, 163, 90, 0.4);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 230, 211, 0.3);
}

.footer-bottom .heart {
  width: 12px;
  height: 12px;
  color: var(--burgundy);
  fill: var(--burgundy);
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-product-img {
    max-width: 360px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .science-cards {
    grid-template-columns: 1fr;
  }
  .madeinusa-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-card:nth-child(2) {
    margin-top: 0;
  }
  .lifestyle-card:nth-child(3) {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-luxury,
  .nav-cart {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 40px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 24px 16px;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-card:nth-child(3) {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-newsletter-form {
    width: 100%;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .checks-row {
    flex-direction: column;
    align-items: stretch;
  }
  .check-pill {
    justify-content: center;
  }
  .perks-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .perk-pill {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-luxury,
  .btn-outline {
    width: 100%;
  }
  .hero-product-img {
    max-width: 280px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .stat-value {
    font-size: 32px;
  }
}
