/* ==========================================================================
   SODASLIM - Official Sales Page Design System
   Exact Color Palette & Typography matched to the Original Reference Print
   ========================================================================== */

:root {
  /* Brand Color Palette - Extracted from Reference Print */
  --hero-orange-1: #d8892b;
  --hero-orange-2: #b86214;
  --hero-orange-3: #9c4e0b;
  --hero-gradient: linear-gradient(135deg, #d8892b 0%, #b86214 50%, #9c4e0b 100%);

  /* Section Background Colors */
  --bg-navy: #1c2d5a;
  --bg-navy-dark: #142143;
  --bg-terracotta: #b85d1e;
  --bg-bonuses-black: #0c0c0c;
  --bg-footer-black: #000000;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray-box: #f1f5f9;

  /* Accent & Highlight Colors */
  --accent-yellow: #ffe600;
  --accent-gold-btn: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  --accent-gold-btn-hover: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  --accent-orange: #c4612f;
  --accent-green: #10b981;
  --accent-red: #dc2626;

  /* Header Bar Card Colors */
  --card-header-orange: #d8882d;
  --card-header-gold: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);

  /* Typography Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #334155;

  /* Fonts */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Radii */
  --container-max: 1140px;
  --container-narrow: 860px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Resets & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Utility Classes & Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.highlight-yellow {
  color: var(--accent-yellow);
}

.highlight-orange {
  color: var(--accent-orange);
}

.section-padding {
  padding: 70px 0;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pill-badge-orange {
  display: inline-block;
  background: var(--accent-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin: 10px 0;
  box-shadow: 0 4px 12px rgba(196, 97, 47, 0.3);
}

/* --------------------------------------------------------------------------
   1. Hero Section (Warm Golden/Caramel Orange Gradient)
   -------------------------------------------------------------------------- */
.hero-section {
  background: var(--hero-gradient);
  color: var(--text-white);
  padding: 55px 0 65px;
  position: relative;
  overflow: hidden;
}

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

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  animation: floatHero 6s ease-in-out infinite;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.hero-badge-item {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.hero-badge-item:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.hero-badge-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   2. Doctor Discovery Section (Clean White)
   -------------------------------------------------------------------------- */
.doctor-section {
  background: var(--bg-white);
  padding: 70px 0;
  border-bottom: 1px solid var(--border-light);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.doctor-content h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.divider-line {
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.doctor-description {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.doctor-image-wrapper {
  display: flex;
  justify-content: center;
}

.doctor-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   3. Countdown Urgency Banners (Deep Navy Blue)
   -------------------------------------------------------------------------- */
.pricing-wrapper-section {
  position: relative;
  background: #fafaf9;
}

.countdown-banner {
  background: var(--bg-navy);
  color: var(--text-white);
  padding: 28px 20px 22px;
  text-align: center;
}

.countdown-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 12px;
}

.countdown-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.countdown-timer-box {
  display: inline-block;
  background: #0f172a;
  border: 2px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 6px 20px;
  margin-top: 4px;
}

.countdown-timer {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-yellow);
  letter-spacing: 2px;
}

.shape-divider-triangle {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bg-navy);
}

.shape-divider-triangle svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 35px;
  fill: #fafaf9;
}

/* --------------------------------------------------------------------------
   4. High-Converting CTA Offer Containers (Replacing old multi-card grid)
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 40px 0 70px;
  background: #fafaf9;
}

.cta-offer-container {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-top: 5px solid #f59e0b;
  border-radius: var(--radius-xl);
  padding: 40px 45px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-offer-container:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.cta-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 45px;
  align-items: center;
}

.cta-offer-image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-discount-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-bundle-image {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-normal);
}

.cta-offer-image-box:hover .cta-bundle-image {
  transform: scale(1.03);
}

.cta-offer-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-pill-highlight {
  align-self: flex-start;
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-offer-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
}

.cta-offer-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0;
}

.cta-benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.cta-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.cta-urgency-note {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  line-height: 1.5;
  margin-top: 4px;
}

.btn-cta-large {
  font-size: 1.35rem;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-top: 6px;
  margin-bottom: 8px;
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
  animation: pulseCta 3s infinite ease-in-out;
}

@keyframes pulseCta {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.65);
  }
}

.cta-trust-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}


/* Golden/Orange CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent-gold-btn);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
  transition: all var(--transition-fast);
  margin-bottom: 14px;
}

.btn-cta:hover {
  background: var(--accent-gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.55);
}

.cart-icon {
  font-size: 1.3rem;
}

.payment-methods-img {
  max-width: 180px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   5. 60-Day Money Back Guarantee Section (White Card + Badges)
   -------------------------------------------------------------------------- */
.guarantee-section {
  background: var(--bg-white);
  padding: 70px 0;
  border-bottom: 1px solid var(--border-light);
}

.guarantee-card-box {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.guarantee-seal-wrapper {
  display: flex;
  justify-content: center;
}

.guarantee-seal-img {
  max-width: 380px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.guarantee-subhead {
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.guarantee-main-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.guarantee-content-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.trust-badge-item {
  width: 65px;
  height: 65px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.trust-badge-item:hover {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   6. Dr. Emily Gottfried Endorsement (Soft Gray Box)
   -------------------------------------------------------------------------- */
.doctor-quote-section {
  background: var(--bg-gray-box);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.doctor-quote-card-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 35px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.doctor-quote-text h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}

.doctor-quote-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.doctor-quote-avatar {
  display: flex;
  justify-content: center;
}

.doctor-portrait-img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

/* --------------------------------------------------------------------------
   7. 5 Natural Ingredients Showcase Section (Clean White)
   -------------------------------------------------------------------------- */
.ingredients-showcase-section {
  background: var(--bg-white);
  padding: 75px 0;
  border-bottom: 1px solid var(--border-light);
}

.ingredients-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.ingredients-grid-5 .ingredient-card:nth-child(1) { grid-column: 1 / 3; }
.ingredients-grid-5 .ingredient-card:nth-child(2) { grid-column: 3 / 5; }
.ingredients-grid-5 .ingredient-card:nth-child(3) { grid-column: 5 / 7; }
.ingredients-grid-5 .ingredient-card:nth-child(4) { grid-column: 2 / 4; }
.ingredients-grid-5 .ingredient-card:nth-child(5) { grid-column: 4 / 6; }

.ingredient-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: auto;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ingredient-img-box {
  width: 100%;
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.ingredient-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.ingredient-body {
  padding: 22px 20px;
  flex-grow: 1;
}

.ingredient-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ingredient-body p strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   8. 6 FREE Bonuses Section (Solid Deep Charcoal/Black Background)
   -------------------------------------------------------------------------- */
.bonuses-section {
  background: var(--bg-bonuses-black);
  color: var(--text-white);
  padding: 80px 0 90px;
}

.bonuses-header {
  text-align: center;
  margin-bottom: 45px;
}

.bonuses-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-white);
}

.bonuses-list-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.bonus-card-horizontal {
  background: #ffffff;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal);
}

.bonus-card-horizontal:hover {
  transform: translateY(-4px);
}

.bonus-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-img-wrapper img {
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.bonus-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
}

.bonus-strike-price {
  color: var(--accent-red);
  font-weight: 800;
  margin-left: 6px;
}

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

.bonus-access-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   9. Reviews & Customer Results (Clean White Background)
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--bg-white);
  padding: 75px 0;
  border-bottom: 1px solid var(--border-light);
}

.polaroids-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.polaroids-desktop {
  max-width: 900px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.polaroids-mobile {
  display: none;
}

.reviews-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.review-card-horizontal {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.review-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-author-thumb {
  display: flex;
  justify-content: center;
}

.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
}

.review-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-stars-badge {
  font-size: 0.95rem;
  font-weight: 700;
  color: #059669;
}

.review-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
}

.shipping-callout-card {
  background: linear-gradient(135deg, var(--bg-navy) 0%, #0f172a 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 980px;
  margin: 28px auto 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shipping-callout-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.shipping-callout-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.shipping-callout-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin: 4px 0 0;
}

/* --------------------------------------------------------------------------
   10. 6 Synergistic Benefits (Warm Terracotta / Caramel Orange Background)
   -------------------------------------------------------------------------- */
.benefits-synergy-section {
  background: var(--bg-terracotta);
  color: var(--text-white);
  padding: 75px 0 85px;
}

.benefits-synergy-section .section-header h2 {
  color: var(--text-white);
}

.stars-rating-header {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

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

.synergy-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
}

.synergy-card:hover {
  transform: translateY(-5px);
}

.synergy-icon-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.synergy-icon-box img {
  max-height: 80px;
  object-fit: contain;
}

.synergy-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   11. What is SodaSlim & How It Works Section
   -------------------------------------------------------------------------- */
.about-sodaslim-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
}

.about-sodaslim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.about-sodaslim-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-top: 4px solid var(--accent-orange);
}

.about-sodaslim-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card-badge-tag {
  align-self: flex-start;
  background: rgba(196, 97, 47, 0.1);
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.about-card-heading {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 14px;
}

.about-card-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Features List */
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.about-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.about-feature-row:hover {
  background: #ffffff;
  border-color: var(--accent-orange);
}

.about-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.about-feature-row h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.about-feature-row p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 3-Step How It Works Cards */
.how-steps-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.how-step-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.how-step-card:hover {
  transform: translateX(4px);
  border-color: var(--accent-orange);
  background: #ffffff;
}

.how-step-num {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--hero-orange-1) 0%, var(--hero-orange-2) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(196, 97, 47, 0.3);
}

.how-step-details h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.how-step-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. FAQ Section (Deep Navy Blue Background)
   -------------------------------------------------------------------------- */
.faq-section-navy {
  background: var(--bg-navy);
  color: var(--text-white);
  padding: 80px 0 90px;
}

.faq-header-navy {
  text-align: center;
  margin-bottom: 45px;
}

.faq-question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-header-navy h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.faq-accordion-navy {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-fast);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-left: 14px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  background: var(--bg-navy);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Bottom Guarantee Banner
   -------------------------------------------------------------------------- */
.bottom-guarantee-banner-section {
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.bottom-guarantee-wrapper {
  display: flex;
  justify-content: center;
}

.bottom-guarantee-img {
  max-width: 960px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   15. Scientific References Section
   -------------------------------------------------------------------------- */
.references-section {
  background: var(--bg-white);
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
}

.references-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.references-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.references-logos-img {
  max-width: 750px;
  width: 100%;
  object-fit: contain;
}

.references-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. Footer (Solid Black Background)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-footer-black);
  color: #94a3b8;
  padding: 55px 0 40px;
  font-size: 0.82rem;
  line-height: 1.7;
  border-top: 1px solid #1f2937;
}

.footer-copyright-top {
  text-align: center;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #1f2937;
}

.footer-nav-links a {
  color: #cbd5e1;
  font-weight: 500;
}

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

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: justify;
  max-width: 960px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Sticky Floating Buy Bar
   -------------------------------------------------------------------------- */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 45, 90, 0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--accent-yellow);
  padding: 10px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

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

.sticky-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-bar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.sticky-bar-badge {
  background: var(--accent-yellow);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.sticky-bar-cta {
  background: var(--accent-gold-btn);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.5);
  white-space: nowrap;
  transition: transform var(--transition-fast);
}

.sticky-bar-cta:hover {
  transform: scale(1.04);
  background: var(--accent-gold-btn-hover);
}
