/* ==========================================================================
   APEX-DTC WORLD-CLASS DESIGN SYSTEM — MACA NEGRA
   Designed for Ultra-High Conversion, Mobile-First DTC, Luxury Bio-Tech Aesthetic
   ========================================================================== */

:root {
  /* Color Palette — verde/crema natural (adaptógeno andino, distinto de la familia navy/dorado de Presmin) */
  --bg-black: #f3f8f0;
  --bg-dark: #e9f3e4;
  --bg-card: #ffffff;
  --bg-card-hover: #e9f3e4;
  --bg-elevated: #ffffff;
  --border-subtle: rgba(45, 90, 39, 0.10);
  --border-active: rgba(217, 161, 46, 0.4);
  --border-glow: rgba(217, 161, 46, 0.6);

  /* Brand Accents */
  --gold-primary: #d9a12e;
  --gold-light: #8a6414;
  --gold-dark: #b5842a;
  --gold-gradient: linear-gradient(135deg, #f6e081 0%, #d9a12e 50%, #8a6414 100%);
  --gold-glow: rgba(217, 161, 46, 0.25);

  --emerald-primary: #2d5a27;
  --emerald-light: #4a7d3f;
  --emerald-glow: rgba(45, 90, 39, 0.18);

  --danger-primary: #ef4444;

  /* Typography */
  --text-main: #2d5a27;
  --text-muted: #4a5c46;
  --text-dim: #7a8c76;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Effects */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border-subtle);
  --shadow-glow: 0 0 40px -10px var(--gold-glow);
  --shadow-cta: 0 12px 28px -6px rgba(245, 158, 11, 0.5), 0 0 0 1px rgba(253, 230, 138, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, 0.08), transparent),
    radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.04), transparent 400px),
    radial-gradient(circle at 90% 70%, rgba(217, 119, 6, 0.05), transparent 500px);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   1. TOP URGENCY ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #b45309 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #06080d;
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-title span {
  color: var(--gold-light);
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--emerald-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-guarantee {
  display: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  align-items: center;
  gap: 6px;
}

.nav-cta-btn {
  background: var(--gold-gradient);
  color: #06080d;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ==========================================================================
   3. HERO SECTION (APEX DTC VISUAL EXCELLENCE)
   ========================================================================== */
.hero-section {
  padding: 38px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-tag .green-live {
  width: 7px;
  height: 7px;
  background: var(--emerald-light);
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-description strong {
  color: var(--text-main);
}

/* Hero Value Highlights */
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #4a5c46;
}

.bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  color: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Box */
.hero-cta-wrapper {
  margin-bottom: 28px;
}

.btn-primary-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold-gradient);
  color: #06080d;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: shine-sweep 3.5s infinite;
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%); }
  25%, 100% { transform: translateX(100%); }
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px -4px rgba(245, 158, 11, 0.65);
}

.btn-primary-cta .cta-subtext {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e293b;
  margin-top: 4px;
}

/* Trust Pill underneath CTA */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #e9f3e4;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

/* Social Rating Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-black);
  margin-left: -8px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

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

.stars {
  color: #d9a12e;
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text-main);
}

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

.visual-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  padding: 16px;
}

.product-stage img.main-prod-img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-stage:hover img.main-prod-img {
  transform: scale(1.02);
}

/* Floating Badges on Product Visual */
.float-pill {
  position: absolute;
  z-index: 4;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(45, 90, 39, 0.10);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  animation: float-slow 4s ease-in-out infinite;
}

.float-pill.top-right {
  top: 18px;
  right: -12px;
  animation-delay: 0s;
  border-color: rgba(201, 162, 100, 0.5);
}

.float-pill.bottom-left {
  bottom: 24px;
  left: -14px;
  animation-delay: 2s;
  border-color: rgba(45, 90, 39, 0.25);
}

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

.pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.pill-icon.gold {
  background: rgba(201, 162, 100, 0.2);
  color: var(--gold-light);
}

.pill-icon.green {
  background: rgba(45, 90, 39, 0.08);
  color: var(--text-main);
}

.pill-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pill-value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
}

/* ==========================================================================
   4. TRUST CREDENTIALS MARQUEE / GRID
   ========================================================================== */
.trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #e9f3e4;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.trust-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--gold-light);
}

.trust-card-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-card-info p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. UNIQUE MECHANISM SECTION (THE BIOLOGICAL BREAKTHROUGH)
   ========================================================================== */
.section-wrapper {
  padding: 80px 0;
  position: relative;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Two Phase Dual-Action Engine */
.mechanism-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.mech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.mech-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-card), 0 0 30px -10px var(--gold-glow);
}

.mech-card.phase-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.mech-card.phase-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.mech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.mech-card.phase-one .mech-badge {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.mech-card.phase-two .mech-badge {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mech-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.mech-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.mech-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mech-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #4a5c46;
}

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

.mech-card.phase-two .mech-features li svg {
  color: var(--emerald-light);
}

/* Comparison Table: Métodos Agresivos vs Presmin */
.comparison-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comp-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comp-header .comp-col-bad {
  color: var(--danger-primary);
}

.comp-header .comp-col-good {
  color: var(--emerald-light);
}

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  align-items: center;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-feature-name {
  font-weight: 600;
  color: var(--text-main);
}

.comp-bad-val {
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-good-val {
  color: #108644;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   6. INGREDIENTS SHOWCASE (LUXURY BIO-TECH NUTRACEUTICAL)
   ========================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.ing-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.ing-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ing-card h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}

.ing-dosage {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.ing-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   7. GRAND SLAM OFFER STACK (HORMOZI VALUE EQUATION)
   ========================================================================== */
.offer-section {
  background: linear-gradient(180deg, #0f2410 0%, #2d5a27 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.offer-stack-box {
  background: var(--bg-elevated);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  position: relative;
}

.offer-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #06080d;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.offer-header-center {
  text-align: center;
  margin-bottom: 34px;
}

.offer-header-center h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.stack-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.stack-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stack-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stack-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stack-item-desc h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.stack-item-desc p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stack-item-val {
  text-align: right;
}

.val-free {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.val-struck {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
  display: block;
}

/* Pricing Breakdown Hero */
.offer-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #2d5a27;
  border: 1px dashed rgba(201, 162, 100, 0.5);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.total-left {
  display: flex;
  flex-direction: column;
}

.val-regular-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.val-regular-num {
  text-decoration: line-through;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d9c9a3;
}

.total-right {
  text-align: right;
}

.val-today-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.val-today-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: #f6e081;
  line-height: 1;
}

/* ==========================================================================
   8. INTERACTIVE BUNDLE SELECTOR & COD CHECKOUT FORM
   ========================================================================== */
.checkout-section {
  padding: 80px 0;
  position: relative;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Bundle Options Cards */
.bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bundle-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.bundle-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--bg-card-hover);
}

.bundle-card.selected {
  border-color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.06);
  box-shadow: 0 0 25px -5px var(--gold-glow);
}

.bundle-tag-best {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold-gradient);
  color: #06080d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

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

.bundle-radio-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.custom-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.bundle-card.selected .custom-radio {
  border-color: var(--gold-light);
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d5a27;
  display: none;
}

.bundle-card.selected .custom-radio::after {
  display: block;
}

.bundle-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.bundle-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.bundle-price-val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  display: block;
}

.bundle-savings-badge {
  font-size: 0.74rem;
  color: var(--emerald-light);
  font-weight: 800;
}

/* COD Form Card */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
  position: relative;
}

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

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 162, 100, 0.25);
}

.form-select option {
  background: #ffffff;
  color: var(--text-main);
}

.input-helper {
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Selected Summary inside form */
.form-summary-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.summary-row.total-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-main);
}

.summary-row.total-row span:last-child {
  color: var(--gold-light);
  font-family: var(--font-display);
}

.free-tag {
  color: var(--emerald-light);
  font-weight: 800;
}

/* Form Trust Badges */
.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.form-security span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   9. REAL REVIEWS & SOCIAL PROOF CAROUSEL / GRID
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reviewer-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.verified-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-body {
  font-size: 0.9rem;
  color: #4a5c46;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}

/* ==========================================================================
   10. FAQ ACCORDION (SURGICAL OBJECTION CRUSHER)
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #06080d;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px 24px;
}

/* ==========================================================================
   11. FOOTER & DISCLAIMER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #2d5a27;
  padding: 48px 0 100px 0;
  font-size: 0.8rem;
  color: #a9b6c9;
}

.footer-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.footer-disclaimer {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-copy {
  color: var(--text-muted);
}

/* ==========================================================================
   12. MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #2d5a27;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 16px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.sticky-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #f6e081;
  line-height: 1;
}

.sticky-sub {
  font-size: 0.72rem;
  color: var(--emerald-light);
  font-weight: 700;
}

.sticky-btn {
  background: var(--gold-gradient);
  color: #06080d;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #108644;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 767px) {
  .wa-float {
    bottom: 115px;
  }
}

/* ==========================================================================
   13. LIVE SOCIAL PROOF PURCHASE TICKER
   ========================================================================== */
.purchase-toast {
  position: fixed;
  bottom: 110px;
  left: 20px;
  z-index: 85;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 320px;
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 134, 68, 0.14);
  color: #108644;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.toast-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.toast-time {
  font-size: 0.68rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS (MOBILE PERFECTION)
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-visual {
    order: -1;
  }

  .float-pill.top-right {
    right: 10px;
  }

  .float-pill.bottom-left {
    left: 10px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mechanism-cards {
    grid-template-columns: 1fr;
  }

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

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .comp-header, .comp-row {
    grid-template-columns: 1.1fr 1fr 1fr;
    padding: 14px 10px;
    font-size: 0.78rem;
  }

  .offer-stack-box {
    padding: 30px 18px;
  }

  .form-box {
    padding: 24px 18px;
  }

  .nav-brand .brand-title {
    font-size: 1rem;
  }

  .purchase-toast {
    left: 12px;
    right: 90px;
    max-width: none;
    bottom: 110px;
  }
}
