/* ==========================================================================
   PROVADENT — EYE-CATCHING MINIMALIST CLINICAL-LUXURY DESIGN SYSTEM
   Fresh, Luminous, Botanical & Clean Aesthetic (No Harsh Black)
   ========================================================================== */

:root {
  /* Core Luminous Palette — Clean, Crisp, High-End Luxury (No Murky Green Wash) */
  --bg-body: #f8fafc;
  --bg-stage: #ffffff;
  --bg-card: #ffffff;
  --bg-card-subtle: #f8fafc;
  --bg-card-hover: #f0fdf4;
  --bg-arch: #edf7f2;
  --bg-arch-tint: #dcf2e8;
  
  --surface-glass: rgba(255, 255, 255, 0.92);
  --surface-glass-border: rgba(15, 23, 42, 0.08);
  --surface-card-border: rgba(15, 23, 42, 0.08);

  /* Typography Colors (Rich Deep Forest Teal & Clean Slate — High Legibility) */
  --text-primary: #0f2e28;
  --text-heading: #07221d;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* Fresh Dental Accents */
  --accent-mint: #059669;
  --accent-mint-light: #10b981;
  --accent-mint-subtle: rgba(5, 150, 105, 0.08);
  --accent-mint-glow: rgba(5, 150, 105, 0.22);
  
  --accent-cyan: #0284c7;
  --accent-cyan-subtle: rgba(2, 132, 199, 0.08);
  --accent-cyan-glow: rgba(2, 132, 199, 0.2);
  
  --accent-coral: #ea580c;
  --accent-amber: #f59e0b;
  --accent-gold: #d97706;
  --accent-red: #dc2626;

  /* Border & Elevation */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-arch: 260px 260px 0 0;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(11, 42, 38, 0.04);
  --shadow-md: 0 12px 32px -8px rgba(11, 42, 38, 0.08);
  --shadow-lg: 0 24px 56px -12px rgba(11, 42, 38, 0.12);
  --shadow-glow: 0 0 40px -8px rgba(5, 150, 105, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Radiant Ambient Mesh Background */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.glow-orb-2 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 70%);
  bottom: 15%;
  left: -200px;
}

.glow-orb-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  top: 35%;
  right: 5%;
}

/* Layout Wrapper */
.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 36px 90px 36px;
}

@media (max-width: 768px) {
  .site-wrapper {
    padding: 16px 16px 70px 16px;
  }
}

/* Ambient Top Micro-Bar (Headerless Minimalist Affordance) */
.ambient-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  margin-bottom: 32px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-glass-border);
  box-shadow: var(--shadow-sm);
}

.ambient-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 10px var(--accent-mint);
  animation: pulse-dot 2s infinite ease-in-out;
}

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

.ambient-badge {
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-mint-subtle);
  color: var(--accent-mint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ambient-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-cart-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--text-heading);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(11, 42, 38, 0.15);
}

.mini-cart-pill:hover {
  transform: translateY(-2px);
  background: var(--accent-mint);
  box-shadow: var(--shadow-glow);
}

.cart-count-badge {
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cart-count-badge.badge-pop {
  animation: badge-pop 0.35s ease;
}

@keyframes badge-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   HERO STAGE (KØHAKU-INSPIRED EDITORIAL CANVAS)
   ========================================================================== */

.hero-stage {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 72px;
  padding: 44px 52px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-card-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

@media (max-width: 1200px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 36px 24px;
  }
}

/* Left Column: Brand & Conversion */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-heading);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

/* Mint Organic SVG Highlight Loop */
.highlight-wrap {
  position: relative;
  display: inline-block;
}

.sketch-loop {
  position: absolute;
  top: -12%;
  left: -8%;
  width: 116%;
  height: 130%;
  pointer-events: none;
  stroke: var(--accent-mint);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: draw-loop 1.2s ease forwards;
}

@keyframes draw-loop {
  from { stroke-dasharray: 600; stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}

.accent-arrow {
  color: var(--accent-mint);
  font-size: 2.8rem;
  margin-left: 8px;
  display: inline-block;
  transform: translateY(-2px);
  transition: transform var(--transition-fast);
}

.hero-title:hover .accent-arrow {
  transform: translate(8px, -2px);
}

.bolt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-coral);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.1rem;
  margin-left: 10px;
  vertical-align: middle;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

/* Dynamic Price Box */
.hero-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-price {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}

.hero-price-unit {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-savings-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: var(--accent-mint);
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* Eye-Catching Gradient Primary CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 38px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -4px rgba(5, 150, 105, 0.4);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px -4px rgba(5, 150, 105, 0.5);
  background: linear-gradient(135deg, #047857 0%, #0f766e 100%);
}

.btn-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--surface-card-border);
  background: var(--bg-card-subtle);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.btn-icon-circle:hover {
  background: #f0fdf4;
  border-color: var(--accent-mint);
  color: var(--accent-mint);
  transform: scale(1.08);
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.guarantee-icon {
  color: var(--accent-amber);
  font-size: 1.15rem;
}

/* ==========================================================================
   CENTER COLUMN: ARCH STAGE (UNOBSTRUCTED BOTTLE SHOWCASE)
   ========================================================================== */

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Architectural Arch Portal */
.arch-stage {
  position: relative;
  width: 100%;
  max-width: 390px;
  height: 480px;
  background: linear-gradient(180deg, var(--bg-arch) 0%, var(--bg-arch-tint) 100%);
  border-radius: var(--radius-arch);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: inset 0 2px 14px rgba(255, 255, 255, 0.9), 0 16px 36px -12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.14);
  overflow: visible;
  transition: all var(--transition-smooth);
}

/* 3D Bottle Image — Crisp & Unobstructed */
.bottle-showcase-img {
  max-width: 95%;
  max-height: 460px;
  object-fit: contain;
  z-index: 2;
  transform: translateY(20px);
  filter: drop-shadow(0 20px 30px rgba(11, 42, 38, 0.16));
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottle-showcase-img.switching {
  opacity: 0;
  transform: translateY(35px) scale(0.96);
}

/* Subtle Orbit Bezier SVG */
.orbit-svg {
  position: absolute;
  top: 15%;
  left: -15%;
  width: 130%;
  height: 65%;
  pointer-events: none;
  z-index: 1;
  stroke: rgba(5, 150, 105, 0.25);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 6 6;
  animation: orbit-spin 24s linear infinite;
}

@keyframes orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Subtle Non-Intrusive Floating Orbs (Behind Bottle Bounds) */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  animation: float-orb 6s ease-in-out infinite;
}

.orb-1 {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-mint);
  top: 15%;
  left: -22px;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-cyan);
  top: 45%;
  right: -24px;
  animation-delay: 2s;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   PRODUCT SOCIAL PROOF DECK (PLACED BENEATH PRODUCT — 100% UNOBSTRUCTED)
   ========================================================================== */

.product-proof-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  width: 100%;
  max-width: 390px;
}

/* Star Rating Badge */
.product-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 14px rgba(11, 42, 38, 0.06);
}

.stars-row {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-heading);
}

.rating-divider {
  color: var(--text-muted);
}

.rating-reviews {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Dynamic Live Activity Ticker (Rotating Toast Beneath Product) */
.live-activity-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.08);
  font-size: 0.84rem;
  color: var(--text-primary);
  width: 100%;
  justify-content: center;
  transition: all var(--transition-fast);
}

.ticker-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 8px var(--accent-mint);
  animation: pulse-dot 1.5s infinite;
}

.ticker-avatar {
  font-size: 0.95rem;
}

.ticker-text {
  font-weight: 600;
}

.ticker-time {
  font-size: 0.75rem;
  color: var(--accent-mint);
  font-weight: 700;
}

/* Scroll Prompt Down Arrow */
.scroll-indicator-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.scroll-indicator-btn:hover {
  transform: translateY(4px);
  border-color: var(--accent-mint);
  color: var(--accent-mint);
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.15);
}

/* ==========================================================================
   RIGHT COLUMN: BUNDLE SELECTOR & ACCORDIONS
   ========================================================================== */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
}

.bundle-selector-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* Package Stack */
.package-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card-subtle);
  border: 2px solid var(--surface-card-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.package-card:hover {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.4);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.package-card.selected {
  border-color: var(--accent-mint);
  background: #f0fdf4;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.12);
}

.pkg-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.package-card.selected .pkg-radio {
  border-color: var(--accent-mint);
  background: var(--accent-mint);
}

.pkg-radio-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.package-card.selected .pkg-radio-inner {
  opacity: 1;
}

.pkg-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pkg-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
}

.pkg-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pkg-tag.best {
  background: var(--accent-mint);
  color: #ffffff;
}

.pkg-tag.popular {
  background: var(--accent-cyan);
  color: #ffffff;
}

.pkg-perks {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pkg-pricing {
  text-align: right;
}

.pkg-price-each {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
}

.pkg-price-total {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Accordion Component */
.specs-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--surface-card-border);
}

.accordion-item {
  border-bottom: 1px solid var(--surface-card-border);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--accent-mint);
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--accent-mint);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.accordion-item.active .accordion-content {
  padding-bottom: 18px;
}

/* ==========================================================================
   SEAMLESS BLENDED SECTIONS
   ========================================================================== */

.blended-section {
  padding: 72px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-mint);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Microbiome Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-card {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card.negative {
  border-left: 5px solid #f87171;
  background: #fffafa;
}

.comparison-card.positive {
  border-left: 5px solid var(--accent-mint);
  background: #fafffc;
  box-shadow: var(--shadow-glow);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.comp-badge.bad {
  background: #fee2e2;
  color: #dc2626;
}

.comp-badge.good {
  background: #dcfce7;
  color: #059669;
}

.comp-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.comp-list li span.icon {
  font-size: 1rem;
  margin-top: 2px;
}

/* ==========================================================================
   INGREDIENTS SHOWCASE CARDS
   ========================================================================== */

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

@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
}

.ingredient-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-smooth);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(5, 150, 105, 0.35);
}

.ing-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.ing-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
}

.ing-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-mint);
}

.ing-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   BONUSES SPOTLIGHT
   ========================================================================== */

.bonuses-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bonuses-wrapper {
    grid-template-columns: 1fr;
  }
}

.bonus-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
  .bonus-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.bonus-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(11, 42, 38, 0.12));
}

.bonus-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.bonus-value {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent-mint);
  margin-top: 4px;
}

.bonus-value del {
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 6px;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */

.guarantee-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
  border: 1px solid rgba(5, 150, 105, 0.25);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 768px) {
  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }
}

.guarantee-seal-img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(245, 158, 11, 0.35));
}

.guarantee-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.guarantee-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  background: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--surface-card-border);
  box-shadow: var(--shadow-sm);
}

.trust-badge-item img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   REAL CUSTOMER REVIEWS
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-card-border);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(5, 150, 105, 0.25);
}

.review-stars {
  color: var(--accent-amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.68;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-card-border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

.author-meta {
  font-size: 0.78rem;
  color: var(--accent-mint);
  font-weight: 600;
}

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

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(5, 150, 105, 0.3);
}

.faq-header {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.35rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-mint);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  padding: 0 26px 26px 26px;
}

/* ==========================================================================
   CHECKOUT DRAWER / MODAL
   ========================================================================== */

.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 42, 38, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px -10px rgba(11, 42, 38, 0.25);
  z-index: 101;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.active .checkout-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-heading);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-order-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #f0fdf4;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.modal-pkg-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.modal-pkg-details {
  flex: 1;
}

.modal-pkg-name {
  font-weight: 800;
  color: var(--text-heading);
  font-size: 1.05rem;
}

.modal-pkg-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-mint);
}

.modal-security-pills {
  display: flex;
  justify-content: space-around;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 12px 0;
  border-top: 1px solid var(--surface-card-border);
  border-bottom: 1px solid var(--surface-card-border);
}

.btn-checkout-confirm {
  width: 100%;
  padding: 17px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  transition: all var(--transition-fast);
}

.btn-checkout-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.5);
}

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

.minimal-footer {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--surface-card-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.footer-disclaimer {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-mint);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
