/* ===================================================================
   JD-HERBAL MASTER ADVERTORIAL & DIRECT RESPONSE LANDING PAGE STYLES
   High-Converting Affiliate & E-Commerce VSL / Advertorial Layout
   Shared across 1000+ single product landing pages
   =================================================================== */

:root {
  --primary-navy: #0b1f36;
  --primary-navy-dark: #061221;
  --primary-blue: #1d4ed8;
  --accent-gold: #f59e0b;
  --accent-gold-dark: #b45309;
  --accent-yellow: #facc15;
  --accent-yellow-bright: #fde047;
  --accent-green: #16a34a;
  --accent-green-dark: #15803d;
  --accent-red: #dc2626;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-light: #e2e8f0;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 10px 30px -5px rgba(11, 31, 54, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 8px 24px -2px rgba(245, 158, 11, 0.45);
  --shadow-btn: 0 6px 20px rgba(220, 38, 38, 0.35);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 85px; /* Space for sticky bottom bar */
}

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

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

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===================================================================
   1. TOP URGENCY WARNING BAR
   =================================================================== */
.top-bar {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 2px solid #eab308;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.top-bar .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 1.5s infinite;
}

.top-bar .countdown {
  background: #dc2626;
  color: #fff;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* ===================================================================
   2. ADVERTORIAL / CLINICAL REPORT HEADER
   =================================================================== */
.report-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.report-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.report-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

.report-logo span {
  color: var(--accent-green);
}

.header-claim-btn {
  background: linear-gradient(180deg, #fde047 0%, #eab308 100%);
  color: #713f12;
  border: 1px solid #ca8a04;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.35);
  transition: all 0.2s ease;
}

.header-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.45);
}

/* ===================================================================
   3. HERO SECTION (High Contrast & Trust)
   =================================================================== */
.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px 24px;
  margin: 20px 0 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 720px) {
  .hero-card {
    padding: 20px 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

.hero-media-wrap img {
  max-height: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.22));
  transition: transform 0.3s ease;
}

.hero-media-wrap:hover img {
  transform: scale(1.03);
}

.hero-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: var(--accent-green-dark);
  border: 1px solid #a7f3d0;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.hero-headline {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-headline span {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-checklist li {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.hero-checklist li .icon-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
}

/* ===================================================================
   4. STOCK URGENCY CALLOUT BAR
   =================================================================== */
.stock-bar-box {
  background: #fffbeb;
  border: 2px dashed #f59e0b;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.stock-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stock-meter {
  flex: 1;
  max-width: 180px;
  height: 10px;
  background: #fde68a;
  border-radius: 10px;
  overflow: hidden;
}

.stock-meter-fill {
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #dc2626 100%);
  border-radius: 10px;
}

/* ===================================================================
   5. BIG 3D CTA BUTTON (GLOSSY GOLD / RED PULSE)
   =================================================================== */
.btn-cta-giant {
  background: linear-gradient(180deg, #fde047 0%, #eab308 50%, #ca8a04 100%);
  color: #451a03;
  border: 2px solid #fef08a;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 25px rgba(202, 138, 4, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-cta-giant:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 30px rgba(202, 138, 4, 0.6);
  background: linear-gradient(180deg, #fef08a 0%, #facc15 50%, #d97706 100%);
}

.btn-cta-giant .sub {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
  color: #78350f;
  letter-spacing: normal;
}

/* ===================================================================
   6. SECTION HEADINGS (NAVY BARS)
   =================================================================== */
.section-banner {
  background: linear-gradient(135deg, #0b1f36 0%, #061221 100%);
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 32px 0 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(11, 31, 54, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===================================================================
   7. 4 CIRCLE BADGES (Made in India, GMP Certified, 100% Natural)
   =================================================================== */
.badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 32px;
  text-align: center;
}

@media (max-width: 600px) {
  .badges-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 16px 10px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

.badge-item:hover {
  transform: translateY(-2px);
}

.badge-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.badge-circle.blue {
  border: 3px solid #2563eb;
  color: #1d4ed8;
  background: #eff6ff;
}

.badge-circle.red {
  border: 3px solid #dc2626;
  color: #b91c1c;
  background: #fef2f2;
}

.badge-circle.green {
  border: 3px solid #16a34a;
  color: #15803d;
  background: #f0fdf4;
}

.badge-circle.gold {
  border: 3px solid #d97706;
  color: #b45309;
  background: #fffbeb;
}

.badge-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.badge-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===================================================================
   8. ULTRA-PREMIUM 3D PRICING & BUNDLE CARDS (1 Bottle, 3 Bottles, 6 Bottles)
   =================================================================== */
.pricing-section-wrap {
  margin: 35px 0 50px;
  position: relative;
}

.pricing-header-box {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-ribbon {
  text-align: center;
  margin-bottom: 12px;
}

.pricing-ribbon span {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
  animation: pulseBadge 2.2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 12px 28px rgba(239, 68, 68, 0.6); }
}

.pricing-sub-banner {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pricing-sub-banner .live-badge {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-sub-banner .live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Interactive Treatment Goal Tabs */
.pricing-goal-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 26px;
  max-width: 650px;
  background: #f1f5f9;
  padding: 5px;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
}

.pricing-goal-tab {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pricing-goal-tab.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.pricing-goal-tab.active.recommended {
  background: linear-gradient(135deg, #0d2847 0%, #061524 100%);
  color: #facc15;
  box-shadow: 0 6px 18px rgba(13, 40, 71, 0.35);
}

.pricing-goal-tab .tab-badge {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* 3D Pricing Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 24px;
  }
}

/* Base Pricing Card */
.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #94a3b8;
}

/* Special High-Converting Featured / Center Card */
.pricing-card.featured {
  background: radial-gradient(circle at 50% 0%, #173860 0%, #081a2e 100%);
  color: #ffffff;
  border: 3px solid #facc15;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(250, 204, 21, 0.25), 0 20px 50px rgba(8, 26, 46, 0.5);
  z-index: 10;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-25deg);
  animation: shineSweep 4.5s infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0% { left: -150%; }
  35%, 100% { left: 200%; }
}

@media (max-width: 820px) {
  .pricing-card.featured {
    transform: none;
  }
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-total {
  color: #ffffff;
}

.pricing-card.featured .pricing-subtitle {
  color: #93c5fd;
}

.pricing-card.featured .pricing-price {
  color: #fde047;
  text-shadow: 0 2px 10px rgba(250, 204, 21, 0.3);
}

/* Card Header Badges */
.featured-pill {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: #451a03;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 6px 20px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.savings-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.savings-pill.standard {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.savings-pill.gold {
  background: rgba(250, 204, 21, 0.2);
  color: #fef08a;
  border: 1px solid rgba(250, 204, 21, 0.5);
}

.savings-pill.vip {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.pricing-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-top: 6px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.pricing-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

/* 3D Multi-Bottle Visual Presentation Stages */
.pricing-img-stage {
  height: 165px;
  margin: 10px auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Single Bottle Showcase */
.bottle-showcase-single {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-showcase-single img {
  max-height: 145px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.pricing-card:hover .bottle-showcase-single img {
  transform: scale(1.06);
}

/* 3-Bottle 3D Multi Stack Presentation */
.bottle-showcase-multi3 {
  position: relative;
  width: 200px;
  height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bottle-showcase-multi3 .bottle-flank-left {
  position: absolute;
  left: 8px;
  bottom: 10px;
  height: 120px;
  transform: rotate(-10deg) scale(0.88);
  opacity: 0.9;
  filter: drop-shadow(-8px 10px 14px rgba(0,0,0,0.4)) brightness(0.92);
  border-radius: 10px;
  z-index: 1;
}

.bottle-showcase-multi3 .bottle-flank-right {
  position: absolute;
  right: 8px;
  bottom: 10px;
  height: 120px;
  transform: rotate(10deg) scale(0.88);
  opacity: 0.9;
  filter: drop-shadow(8px 10px 14px rgba(0,0,0,0.4)) brightness(0.92);
  border-radius: 10px;
  z-index: 1;
}

.bottle-showcase-multi3 .bottle-main-center {
  position: relative;
  height: 150px;
  z-index: 3;
  filter: drop-shadow(0 14px 25px rgba(0,0,0,0.5)) drop-shadow(0 0 15px rgba(250, 204, 21, 0.3));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.pricing-card.featured:hover .bottle-main-center {
  transform: scale(1.08) translateY(-4px);
}

/* 6-Bottle VIP Presentation */
.bottle-showcase-multi6 {
  position: relative;
  width: 210px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-showcase-multi6 .vip-stack-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bottle-showcase-multi6 img.vip-bottle {
  height: 135px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
  border-radius: 10px;
}

.bottle-showcase-multi6 .vip-badge-overlay {
  position: absolute;
  bottom: 2px;
  right: -6px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
  z-index: 5;
  border: 1.5px solid #ffffff;
}

/* Pricing Breakdown */
.pricing-price-wrap {
  margin: 6px 0 10px;
}

.pricing-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0.85;
}

.pricing-savings-callout {
  font-size: 0.8rem;
  font-weight: 800;
  color: #15803d;
  margin-top: 4px;
}

.pricing-card.featured .pricing-savings-callout {
  color: #4ade80;
}

.pricing-shipping-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pricing-card.featured .pricing-shipping-tag {
  color: #86efac;
}

.pricing-total {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.pricing-total .strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.82rem;
  margin-left: 4px;
}

/* Glowing Gold / Shimmer CTA Button */
.btn-order-cta {
  background: linear-gradient(180deg, #fde047 0%, #eab308 100%);
  color: #451a03;
  border: 1px solid #ca8a04;
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(234, 179, 8, 0.45);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.btn-order-cta:hover {
  background: linear-gradient(180deg, #fef08a 0%, #facc15 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.65);
}

.btn-order-cta.pulse-hero {
  background: linear-gradient(180deg, #facc15 0%, #eab308 100%);
  border: 1px solid #fef08a;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6), 0 8px 20px rgba(0,0,0,0.3);
  animation: heroButtonPulse 2s infinite;
}

@keyframes heroButtonPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.5), 0 6px 16px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 0 32px rgba(250, 204, 21, 0.85), 0 8px 24px rgba(0,0,0,0.4); }
}

.pricing-feature-list {
  text-align: left;
  margin: 14px 0 6px;
  font-size: 0.74rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: #f8fafc;
  border-radius: 10px;
}

.pricing-card.featured .pricing-feature-list {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.pricing-feature-item .check {
  color: #16a34a;
  font-weight: 900;
}

.pricing-card.featured .pricing-feature-item .check {
  color: #4ade80;
}

.pricing-guarantee-note {
  font-size: 0.74rem;
  margin-top: 8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
}

.pricing-card.featured .pricing-guarantee-note {
  color: #fde047;
}

/* ===================================================================
   9. CUSTOMER TRANSFORMATION TIMELINE & REVIEWS
   =================================================================== */
.timeline-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

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

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

.timeline-step {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.timeline-step .week {
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.timeline-step .title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.timeline-step .desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
}

/* ===================================================================
   10. REVIEWS (PHOTO + VERIFIED BADGES)
   =================================================================== */
.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 14px;
}

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

.review-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  margin: 0 auto;
  border: 2px solid var(--accent-green);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-author {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.review-badge {
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}

.review-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
  font-style: italic;
}

/* ===================================================================
   11. NATURAL INGREDIENTS BREAKDOWN
   =================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.ingredient-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ingredient-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid #bbf7d0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.ingredient-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.ingredient-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

/* ===================================================================
   12. 100% 30-DAY MONEY BACK GUARANTEE CERTIFICATE
   =================================================================== */
.guarantee-box {
  background: #ffffff;
  border: 3px solid #facc15;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.2);
}

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

.guarantee-seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #fde047 0%, #ca8a04 100%);
  border: 5px double #ffffff;
  box-shadow: 0 8px 20px rgba(202, 138, 4, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #451a03;
  text-align: center;
  margin: 0 auto;
}

.guarantee-seal .days {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.guarantee-seal .text {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.guarantee-content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.guarantee-content p {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
}

/* ===================================================================
   13. FAQS ACCORDION
   =================================================================== */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.faq-question {
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question .icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-green);
  transition: transform 0.25s ease;
}

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: #dc2626;
}

/* ===================================================================
   14. FOOTER & LEGAL DISCLAIMER
   =================================================================== */
.landing-footer {
  background: var(--primary-navy-dark);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 36px 16px;
  text-align: center;
  line-height: 1.7;
}

.landing-footer a {
  color: #cbd5e1;
  text-decoration: underline;
  margin: 0 8px;
}

.landing-footer .disclaimer {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 0.7rem;
  color: #64748b;
}

/* ===================================================================
   15. STICKY MOBILE BOTTOM ORDER BAR
   =================================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #facc15;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-bottom-bar .info {
  display: flex;
  flex-direction: column;
}

.sticky-bottom-bar .prod-name {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--primary-navy);
}

.sticky-bottom-bar .prod-price {
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 800;
}

.sticky-bottom-bar .btn-claim {
  background: linear-gradient(180deg, #fde047 0%, #eab308 100%);
  color: #451a03;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #ca8a04;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}
