/* ============================================================
   AVORUNE — Landing Page Styles
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

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

/* ── TYPOGRAPHY ── */
.header-large  { font-size: clamp(1.55rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; }
.header-medium { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 700; line-height: 1.3; }
.header-small  { font-size: 1rem; font-weight: 600; line-height: 1.4; }
.text-medium   { font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 0; }
.text-small    { font-size: 0.85rem; }
.text-blue     { color: #14495A !important; }
.rounded-img   { border-radius: 12px; }
.object-cover  { object-fit: cover; }

/* ── TOPBAR ── */
.topbar {
  background: #14495A;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  line-height: 1.4;
}
.topbar .topbar-highlight {
  color: #5AB8C8;
}

/* ── NAVBAR ── */
.navbar {
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  padding: 10px 0;
  z-index: 100;
}

.nav-logo {
  height: 72px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  padding: 6px 10px !important;
}
.navbar .nav-link:hover { color: #14495A; }

.tariff-badge { opacity: .85; }

/* ── CTA BUTTON ── */
.btn-cta,
a.btn-cta {
  background: #1ea826 !important;
  border-color: #1ea826 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  transition: background .15s;
}
.btn-cta:hover, a.btn-cta:hover {
  background: #179b1f !important;
  border-color: #179b1f !important;
  color: #fff !important;
}

@keyframes bounce-btn {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}
.bouncing { animation: bounce-btn 2s infinite; }

/* ── NAVBAR LOGO IMAGE ── */
.navbar-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Simplified centered navbar — no hamburger */
.navbar-simple {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.navbar-simple .container-xl {
  display: flex;
  justify-content: center;
}
.navbar-simple .navbar-brand {
  position: static;
  transform: none;
  padding: 0;
}

/* ── HERO PDP LAYOUT ── */
.hero-pdp {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Desktop: image left, text right ── */
@media (min-width: 768px) {
  .hero-pdp {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .hero-left-col {
    flex: 0 0 44%;
    max-width: 44%;
    min-width: 0;
  }
  .hero-text-block {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
  }
  /* Hide the duplicate "As Advertised On" inside the hero column on desktop */
  .hero-text-block .as-seen-on-wrap {
    display: none;
  }
  /* Center the mini review block */
  .hero-review {
    justify-content: center;
    text-align: center;
  }
  .hero-review > div {
    text-align: left;
  }
}

.hero-carousel-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  line-height: 0;
}

.hero-carousel-inner {
  display: flex;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.hero-carousel-slide {
  min-width: 100%;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
  color: #333;
  padding: 0;
  font-weight: 300;
}
.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }
.hero-arrow:hover { background: #fff; }

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.70));
  padding: 44px 20px 18px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  font-style: italic;
}

/* Thumbnail strip */
.hero-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #eee;
}
.hero-thumbs::-webkit-scrollbar { display: none; }

.hero-thumb {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.15s;
}
.hero-thumb.active { border-color: #14495A; }
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero text area */
.hero-text-block {
  padding: 16px 16px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

.hero-headline {
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 14px;
}

/* Hero feature list — circle-check style */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.hero-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  font-weight: 500;
  color: #222;
  line-height: 1.45;
}

/* Pill CTA button */
.hero-cta-wrap { margin-top: 4px; }
.hero-cta-pill {
  display: block;
  width: 100%;
  text-align: center;
  background: #1ea826;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 16px rgba(30,168,38,.35);
}
.hero-cta-pill:hover {
  background: #179b1f;
  color: #fff;
  text-decoration: none;
}
.hero-cta-pill:active { transform: scale(.98); }

.hero-subscribe-note {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.55;
}

/* Guarantee badge image */
.guarantee-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.guarantee-img--lg {
  width: 110px;
  height: 110px;
}

/* Star title (kept for other review blocks) */
.star_title { margin-top: 0; }
.star_title h2 { margin-top: 10px; }
.star_title h2 span {
  background: linear-gradient(transparent 60%, rgba(90,184,200,.35) 60%);
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
.feature-list li img { flex-shrink: 0; margin-top: 2px; }
.img-icon { width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; }
.feature-list--light li span { color: #ddd; font-weight: 400; }

/* CTA box */
.cta-box {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  margin-top: 16px;
  text-align: center;
  overflow: visible;
}

.cta-head, .cta-head-1 { display: none; }

.cta-prod-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}

.cta-btn-wrap {
  position: relative;
  display: block;
  padding-top: 14px;
}

.free-ship-badge {
  position: absolute;
  top: -13px;
  right: 8px;
  background: #2e7d32;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px 4px 0 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 -2px 6px rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  pointer-events: none;
}

.cta-head p,
.cta-head-1 p {
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dmo-product-img {
  width: 160px;
  height: auto;
  display: block;
  margin: 8px auto;
  object-fit: contain;
}
.guarantee-prod-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.cta-head p {
  background: #f0fff8;
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid #b2efd6;
}
.cta-head-1 p {
  background: #f0f4ff;
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid #d0e0ff;
}
.cta-head p span img,
.cta-head-1 p span img { width: 20px; height: auto; }

.cta-box .btn-cta {
  width: 100%;
  text-align: center;
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 0.03em;
  position: relative;
  overflow: visible;
}

/* Stock / date row */
.green-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #28a745;
  flex-shrink: 0;
}
.date-div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #555;
}
.date-div p { margin: 0; font-size: 0.8rem; color: #555; }
.stock-div p { font-size: 0.78rem; color: #555; margin: 0 0 3px; }
.stock { width: 14px; height: 8px; border-radius: 2px; }

/* ── AS SEEN ON ── */
.as-seen-on-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.as-seen-on-wrap-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.as-seen-on-p {
  font-size: 0.82rem;
  color: #888;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.as-seen-on-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .82;
}

.as-seen-on-wrap {
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.show-mob { display: none !important; }
.show-des { display: block !important; }

/* ── BEST IN CLASS ── */
.best-in-class.container-lg {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ── Desktop: image left, presell text right ── */
@media (min-width: 768px) {
  .best-in-class.container-lg {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
    max-width: 1100px;
  }
  .bic-img-col {
    flex: 0 0 44%;
    max-width: 44%;
    min-width: 0;
  }
  .bic-text-col {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
  }
}

/* ── Mobile: stacked, image below text ── */
@media (max-width: 767px) {
  .best-in-class.container-lg {
    display: block;
  }
  .bic-img-col {
    margin-top: 24px;
  }
  .bic-img-col img {
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }
}
.best-in-class .img-div {
  flex: 0 0 45%;
  max-width: 45%;
}
.best-in-class .img-div img,
.best-in-class .img-div video {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.best-in-class .content-div { flex: 1; }
.best-in-class .content-div p.text-medium { margin-top: 12px; }

/* ── SCROLLABLE FEATURES STRIP ── */
.scrollable-section.container-lg { padding: 24px 0; overflow: hidden; }
.scrollable-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 12px;
  padding: 0 12px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.scrollable-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 80px;
}
.scrollable-item img { width: 40px; height: 40px; object-fit: contain; }
.scrollable-item p   { font-size: 0.78rem; font-weight: 600; color: #444; margin: 0; line-height: 1.35; }

/* ── KEY FEATURES ── */
.key-features.container-lg { padding-top: 0; padding-bottom: 0; }

.feature-div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-top: 1px solid #f0f0f0;
}

.feature-content,
.feature-content1 {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Before/after result image above "Results That Last" */
.before-after-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 36px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* Feature 2: image left, content right */
.feature-content1 { order: 2; }
.feature-img1     { order: 1; }

.feature-img,
.feature-img1 { overflow: hidden; }
.feature-img img,
.feature-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.feature-review {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.feature-review-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-review-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}
.feature-review-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.feature-review p { font-size: 0.84rem; color: #555; margin: 0; line-height: 1.55; }

/* ── MONEY BACK ── */
.money-back { background: #111; padding: 44px 0; }

.money-back-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.money-back-card {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 24px 24px;
  border-right: 1px solid #2a2a2a;
}
.money-back-card:last-child { border-right: none; }

.money-back-icon { margin-bottom: 12px; }
.money-back-icon img { width: 44px; height: 44px; object-fit: contain; margin: 0 auto; }

.money-back-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.money-back-description { font-size: 0.8rem; color: #999; line-height: 1.6; }

/* ── BETTER BRIGHT ── */
.better-bright {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.better-bright-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.better-bright-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.better-bright-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 52px 48px 52px 20px;
}

/* ── SMALL AND STRONG (INGREDIENTS) ── */
.small-and-strong {
  background: #0f0f0f;
  display: flex;
}
.small-and-strong .text-content {
  flex: 1;
  padding: 52px 40px;
  display: flex;
  align-items: center;
}
.small-and-strong .text { flex: 1; }
.small-and-strong .img-content {
  flex: 0 0 44%;
  padding: 32px 32px 32px 0;
  display: flex;
  align-items: center;
}
.small-and-strong .img-content img { width: 100%; border-radius: 12px; }

.icons-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 24px;
}

/* Review block inside dark small-and-strong section */
.sas-review {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
}
.sas-review-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sas-review-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.icon-feature { display: flex; align-items: center; gap: 10px; min-width: 120px; }
.icon-feature img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) saturate(100%) invert(65%) sepia(100%) saturate(500%) hue-rotate(100deg) brightness(103%) contrast(103%); opacity: 1; }
.icon-feature span { font-size: 0.7rem; font-weight: 700; color: #ccc; text-transform: uppercase; letter-spacing: .04em; line-height: 1.35; }

/* ── STATS BAR (New Section A) ── */
.stats-bar {
  background: linear-gradient(135deg, #0e3547 0%, #14495A 60%, #0e3d4f 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(90,184,200,0.06);
  pointer-events: none;
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(90,184,200,0.05);
  pointer-events: none;
}
.stats-bar-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5AB8C8;
  margin: 0 0 36px;
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(90,184,200,0.2);
  border-top: 2px solid #5AB8C8;
  border-radius: 14px;
  padding: 24px 20px 20px;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.stat-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
}
.stat-icon {
  margin-bottom: 10px;
  opacity: 0.9;
}
.stat-number {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 0 0 12px;
  overflow: hidden;
}
.stat-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #5AB8C8, #1ea826);
  border-radius: 2px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}

/* ── TIMELINE (New Section B) ── */
.timeline-section {
  background: #EAF5F8;
  padding: 80px 0 96px;
}
.timeline-section .section-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 20px;
}
.timeline-section .section-header h2 {
  color: #14495A;
  margin-bottom: 12px;
}
.timeline-section .section-header p {
  font-size: 1.05rem;
  color: #5a6e7f;
  margin: 0;
}

/* ── Vertical alternating timeline ── */
.tl-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.tl-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, #5AB8C8 0%, #14495A 100%);
  border-radius: 2px;
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

/* Card side */
.tl-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 4px 24px rgba(20,73,90,0.09);
  flex: 1;
  position: relative;
  transition: box-shadow 0.2s;
}
.tl-card:hover {
  box-shadow: 0 8px 36px rgba(20,73,90,0.14);
}

/* Arrow from card toward the spine */
.tl-right .tl-card::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left-color: #fff;
  border-right: 0;
  filter: drop-shadow(3px 0 4px rgba(20,73,90,0.06));
}
.tl-left .tl-card::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-right-color: #fff;
  border-left: 0;
  filter: drop-shadow(-3px 0 4px rgba(20,73,90,0.06));
}

/* Spacer fills the other half */
.tl-spacer {
  flex: 1;
}

/* Node (dot on the spine) */
.tl-node {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tl-node-inner {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5AB8C8;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #5AB8C8;
}
.tl-node-final .tl-node-inner {
  width: 28px;
  height: 28px;
  background: #14495A;
  box-shadow: 0 0 0 3px #14495A, 0 0 0 6px rgba(20,73,90,0.15);
}

/* Text inside card */
.tl-period {
  font-size: 11px;
  font-weight: 800;
  color: #5AB8C8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}
.tl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #14495A;
  margin: 0 0 10px;
  line-height: 1.3;
}
.tl-body {
  font-size: 0.875rem;
  color: #5a6e7f;
  line-height: 1.7;
  margin: 0;
}
.tl-card-final {
  border-top: 3px solid #14495A;
}
.tl-card-final .tl-period {
  color: #14495A;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .timeline-section { padding: 48px 0 56px; }
  .timeline-section .section-header { margin-bottom: 36px; }

  .tl-track { padding: 0 12px 0 44px; }
  .tl-track::before { left: 16px; transform: none; width: 2px; }

  .tl-item { flex-direction: row; align-items: flex-start; margin-bottom: 12px; position: relative; }
  .tl-right { flex-direction: row; }
  .tl-left { flex-direction: row; }

  .tl-spacer { display: none; }

  .tl-node {
    position: absolute;
    left: -36px;
    top: 14px;
    flex: 0 0 28px;
  }
  .tl-node-inner { width: 14px; height: 14px; border-width: 3px; box-shadow: 0 0 0 2px #5AB8C8; }
  .tl-node-final .tl-node-inner { width: 18px; height: 18px; box-shadow: 0 0 0 2px #14495A, 0 0 0 4px rgba(20,73,90,0.12); }

  .tl-right .tl-card::after { display: none; }
  .tl-left .tl-card::before { display: none; }

  .tl-card {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(20,73,90,0.08);
  }
  .tl-card-final { border-top-width: 2px; }

  .tl-period { font-size: 9px; letter-spacing: 0.08em; margin-bottom: 3px; }
  .tl-title { font-size: 0.85rem; margin-bottom: 4px; }
  .tl-body { font-size: 0.775rem; line-height: 1.5; }
}

/* ── DOCTOR REVIEW (New Section C) ── */
.doctor-review {
  background: #fff;
  padding: 72px 20px;
}
.doctor-review-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.doctor-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #5AB8C8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}
.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #14495A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.doctor-quote {
  font-size: 17px;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin: 0 0 24px;
}
.doctor-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #14495A;
  margin: 0;
}
.doctor-title {
  font-size: 0.82rem;
  color: #888;
  margin: 4px 0 0;
}

/* ── OFFER PRESENTATION ── */
.offer-presentation {
  background: #fff;
  padding: 40px 0 36px;
  border-top: 1px solid #eee;
}

.op-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Gallery */
.op-gallery { position: sticky; top: 20px; }

.op-main-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f7fa;
  aspect-ratio: 1 / 1;
}
.op-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}

.op-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.op-thumb {
  flex: 0 0 calc(25% - 6px);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f7fa;
  padding: 0;
  transition: border-color .15s;
  aspect-ratio: 1 / 1;
}
.op-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.op-thumb.active,
.op-thumb:hover { border-color: #14495A; }

/* Info panel */
.op-info { display: flex; flex-direction: column; gap: 10px; }

.op-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.op-rating-txt { font-size: 0.85rem; color: #555; font-weight: 500; }

.op-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
}

.op-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.op-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.op-badge--blue { background: #14495A; color: #fff; }
.op-badge--outline { background: transparent; border: 1.5px solid #14495A; color: #14495A; }

.op-subtitle { font-size: 0.9rem; color: #444; line-height: 1.65; margin: 0; }

.op-price-row { display: flex; align-items: baseline; gap: 10px; }
.op-price-now { font-size: 1.75rem; font-weight: 900; color: #111; }
.op-price-was { font-size: 1rem; color: #e03131; text-decoration: line-through; }

.op-feature-ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.op-feature-ticks li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}
.op-feature-ticks li svg { flex-shrink: 0; }

.op-divider { height: 1px; background: #eee; }

.op-bundle-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.op-bundle-label::before,
.op-bundle-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.op-bundles { display: flex; flex-direction: column; gap: 10px; }

.op-bundle-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  gap: 12px;
}
.op-bundle-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.op-bundle-option:hover { border-color: #14495A; }
.op-bundle-selected { border-color: #14495A; background: #f0f6ff; }

.op-bundle-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.op-bundle-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.op-bundle-selected .op-bundle-radio {
  border-color: #14495A;
  background: #fff;
}
.op-bundle-selected .op-bundle-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #14495A;
}

.op-bundle-name { font-size: 0.9rem; font-weight: 700; color: #111; }
.op-bundle-save { font-size: 0.75rem; color: #555; margin-top: 2px; }

.op-bundle-price { text-align: right; flex-shrink: 0; }
.op-bundle-price-now { font-size: 0.95rem; font-weight: 800; color: #111; display: block; }
.op-bundle-price-was { font-size: 0.75rem; color: #999; text-decoration: line-through; display: block; }

.op-bundle-has-bonus {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.op-bundle-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 12px;
}
.op-bundle-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #14495A;
  padding: 8px 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.op-bundle-bonus-price {
  margin-left: auto;
  text-decoration: line-through;
  opacity: 0.75;
  font-weight: 600;
}

.op-bundle-popular {
  position: absolute;
  top: -1px;
  left: 60%;
  transform: translateX(-50%);
  background: #e03131;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.op-bonus-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e8fff5;
  border: 1.5px solid #b2efd6;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #14495A;
}
.op-bonus-value {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 800;
  color: #14495A;
}

.op-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 18px rgba(90,184,200,.35);
}

.op-testimonial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #eee;
}
.op-testi-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.op-testi-text {
  font-size: 0.84rem;
  color: #444;
  line-height: 1.55;
  margin: 0 0 5px;
  font-style: italic;
}
.op-testi-footer { display: flex; align-items: center; gap: 8px; }
.op-testi-name { font-size: 0.78rem; font-weight: 700; color: #333; }

/* ── COMPARISON ── */
.comparison { background: #f9fafb; padding: 60px 0; }

.s4CompBox {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 700px;
  margin: 0 auto 44px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
}

.compCol1 { flex: 1; }
.compCol1 ul { list-style: none; padding: 100px 0 0; margin: 0; }
.compCol1 ul li {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  height: 50px;
}
.compCol1 ul li:last-child { border-bottom: none; }
.compCol1 ul li p { margin: 0; }

.compCol2 {
  flex: 0 0 130px;
  text-align: center;
  border-left: 1px solid #eee;
}
.compCol2.one {
  box-shadow: 0 0 0 2px #14495A inset;
  background: #f0f6ff;
  flex: 0 0 140px;
  position: relative;
  z-index: 1;
}
.compCol2Top {
  padding: 14px 10px 12px;
  border-bottom: 1px solid #eee;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.compCol2.one .compCol2Top { background: #e8f2ff; height: 100px; }
.compCol2Top.compCol3Top { background: #f7f7f7; }

.product { width: 56px; height: 56px; object-fit: contain; }
.product3 { width: 56px; height: 48px; object-fit: contain; opacity: .65; }

.compCol2 h5 { font-size: 0.82rem; margin: 6px 0 0; }
.compCol2 p  { font-size: 0.78rem; color: #888; margin: 4px 0 0; font-weight: 600; }

.compCol2 ul { list-style: none; padding: 0; margin: 0; }
.compCol2 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  border-bottom: 1px solid #f5f5f5;
  height: 50px;
}
.compCol2 ul li:last-child { border-bottom: none; }

/* ── GUARANTEE SECTION ── */
.guarantee_disclaimer {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px;
}
.guarantee-seal { flex-shrink: 0; }
.guarantee-info h3 { font-size: 1.15rem; font-weight: 700; color: #14495A; margin-bottom: 8px; }
.guarantee-info p { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 16px; }

/* ── REVIEWS ── */
.trust-ratings-section { background: #fff; padding: 52px 0 40px; }

.trust-stats-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 0 16px;
}

.rating-categories { display: flex; flex-direction: column; gap: 14px; }
.rating-item { display: flex; align-items: center; gap: 12px; }
.rating-label { font-size: 0.88rem; font-weight: 600; color: #444; width: 130px; flex-shrink: 0; }
.stars-rating { display: flex; align-items: center; gap: 8px; }
.rating-number { font-size: 0.88rem; font-weight: 700; color: #333; }

.trust-score-center { text-align: center; }
.large-score { font-size: 4rem; font-weight: 900; color: #14495A; line-height: 1; }
.large-stars { margin: 8px auto; }
.review-count { font-size: 0.82rem; color: #888; margin-top: 6px; }

.customer-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.group-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

/* Review cards */
.reviews { padding: 40px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.review-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.review-img {
  height: 220px;
  overflow: hidden;
}
.review-content { padding: 20px; }
.review-stars { margin-bottom: 10px; }
.review-title { font-size: 1rem; font-weight: 700; color: #111; margin: 0 0 8px; }
.review-text { font-size: 0.88rem; color: #555; line-height: 1.6; margin: 0 0 12px; }
.reviewr-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reviewer-name { font-size: 0.85rem; font-weight: 700; color: #333; }
.verified { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: #888; }
.verified img { width: 16px; height: auto; }

/* ── URGENCY / DON'T MISS OUT ── */
.offer-box { }
.dont-miss-out { background: #111; }
.dont-miss-out-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.dont-miss-out-content {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dont-miss-out-bg-img { overflow: hidden; }
.dont-miss-out-bg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FAQ ── */
#faq .wrapper.container { padding: 64px 24px; max-width: 720px; }

.accordion-item { border: none; border-bottom: 1px solid #e5e7eb; }
.accordion-item:first-child { border-top: 1px solid #e5e7eb; }

.accordion-button {
  font-size: 0.97rem;
  font-weight: 600;
  color: #222;
  background: #fff;
  padding: 18px 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: #14495A; background: #fff; }
.accordion-button:not(.collapsed)::after,
.accordion-button::after { color: #14495A; }

.accordion-body { padding: 4px 0 20px; font-size: 0.92rem; color: #555; line-height: 1.7; }
.accordion-body p { margin: 0; }

/* ── FIXED BOTTOM CTA ── */
.cta_fixed_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.12);
  z-index: 1000;
  transition: transform .25s ease;
}
.cta_fixed_bottom .cta-box { border: none; padding: 0; margin: 0; background: transparent; }
.cta_fixed_bottom .btn-cta { width: 100%; display: block; text-align: center; padding: 14px; font-size: 1rem; }
.cta_fixed_bottom.hidden { transform: translateY(110%); }

/* ── FOOTER ── */
.footer {
  background: #fff;
  padding: 40px 20px 28px;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { width: 160px; height: auto; display: block; margin: 0 auto; }
.footer-logo h2 { font-size: 1.5rem; }
.footer-logo h2 em { font-style: normal; }
.footer-links { flex-wrap: wrap; justify-content: center; margin-bottom: 10px; }
.link-item { font-size: 0.82rem; color: #888; }
.link-item:hover { color: #14495A; }
.link-divider { font-size: 0.82rem; color: #ccc; }
.footer-disclaimer {
  max-width: 780px;
  margin: 0 auto 8px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: left;
}
.footer-disclaimer p {
  font-size: 0.65rem;
  color: #999;
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: #777; }
.copy { font-size: 0.78rem; color: #aaa; margin: 0; }
.copy .text-blue { color: #14495A !important; }

/* ── AVORUNE TEXT LOGO ── */
.avorune-logo-text {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #14495A;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.avorune-logo-dot {
  width: 8px;
  height: 8px;
  background: #5AB8C8;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  margin-bottom: 2px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {

  /* Hero PDP — full width on tablet, cap slide height */
  .hero-carousel-slide { max-height: 420px; }

  .as-seen-on-wrap { align-items: center; text-align: center; }
  .show-des { display: none !important; }

  .cta-head p,
  .cta-head-1 p { margin-left: auto; margin-right: auto; }

  /* Best in class stacks */
  .best-in-class.container-lg {
    flex-direction: column;
    gap: 24px;
    padding: 36px 16px;
  }
  .best-in-class .img-div { flex: 0 0 auto; max-width: 100%; width: 100%; }

  /* Scrollable: horizontal scroll on mobile */
  .scrollable-section.container-lg { padding: 0; }
  .scrollable-wrapper {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .scrollable-wrapper::-webkit-scrollbar { display: none; }
  .scrollable-item { min-width: 72px; }

  /* Feature sections stack */
  .feature-div {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    border-top: 1px solid #f0f0f0;
  }

  .feature-content,
  .feature-content1 {
    padding: 28px 20px 24px;
    order: 2;
  }
  .feature-img,
  .feature-img1 {
    height: 280px;
    order: 1;
  }
  .feature-img img,
  .feature-img1 img { border-radius: 0; }

  /* Ingredients section stacks */
  .small-and-strong { flex-direction: column; }
  .small-and-strong .text-content { padding: 36px 20px 20px; text-align: center; }
  .small-and-strong .text h4,
  .small-and-strong .text p { text-align: center; }
  .small-and-strong .icons-div { justify-content: center; }
  .small-and-strong .img-content  { flex: 0 0 auto; padding: 0 20px 32px; }

  /* Better Bright — stronger overlay for readability on mobile */
  .better-bright { min-height: 360px; justify-content: center; }
  .better-bright-content { max-width: 100%; padding: 32px 20px; text-align: center; }
  .better-bright-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.45) 100%);
  }
  .better-bright-content h4,
  .better-bright-content p {
    text-shadow: 0 1px 6px rgba(0,0,0,.7);
  }

  /* Offer Presentation */
  .op-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .op-gallery { position: static; }

  /* Comparison — all 3 columns side by side on mobile */
  .s4CompBox { max-width: 100%; flex-direction: row; border-radius: 10px; }
  .compCol1 { display: block; flex: 1 1 0; min-width: 0; }
  .compCol1 ul { padding: 76px 0 0; }
  .compCol1 ul li {
    font-size: 0.7rem;
    padding: 0 8px;
    height: 46px;
    white-space: normal;
    line-height: 1.2;
  }
  .compCol2 { flex: 0 0 72px; width: 72px; border-left: 1px solid #eee; border-top: none; }
  .compCol2.one { border-top: none; border-left: none; flex: 0 0 80px; width: 80px; }
  .compCol2 ul li { height: 46px; padding: 8px 4px; justify-content: center; }
  .compCol2 ul li:last-child { border-bottom: none; }
  .compCol2Top { padding: 8px 4px 8px; height: 76px; }
  .compCol2.one .compCol2Top { height: 76px; }
  .compCol2Top .product { max-width: 36px; }
  .compCol2Top h5 { font-size: 0.65rem; }
  .compCol2Top p { font-size: 0.65rem; margin: 0; }

  /* Guarantee side by side → stacked */
  .guarantee_disclaimer { flex-direction: column; align-items: center; text-align: center; max-width: 420px; gap: 16px; }

  /* Trust section */
  .trust-stats-wrapper { flex-direction: column; align-items: stretch; gap: 20px; }
  .trust-score-center { align-self: center; }
  .customer-photos-grid { grid-template-columns: repeat(4, 1fr); justify-content: center; }

  /* Reviews 1 column */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Don't Miss Out stacks */
  .dont-miss-out-content-wrapper { grid-template-columns: 1fr; }
  .dont-miss-out-content { padding: 36px 20px; }
  .dont-miss-out-bg-img { min-height: 260px; max-height: 320px; }

  /* Money Back stays in a row on mobile */
  .money-back { padding: 20px 0; }
  .money-back-container { flex-direction: row; align-items: stretch; flex-wrap: nowrap; }
  .money-back-card { flex: 1; min-width: 0; padding: 12px 8px; border-right: 1px solid #2a2a2a; border-bottom: none; }
  .money-back-card:last-child { border-right: none; }
  .money-back-icon { margin-bottom: 6px; }
  .money-back-icon img { width: 28px; height: 28px; }
  .money-back-title { font-size: 0.6rem; letter-spacing: 0.03em; margin-bottom: 0; }
  .money-back-description { display: none; }

  /* Stats bar stack */
  .stats-bar { padding: 48px 0; }
  .stat-number { font-size: 52px; }

  /* FAQ */
  #faq .wrapper.container { padding: 40px 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤575px)
   ============================================================ */
@media (max-width: 575px) {
  .topbar { font-size: 0.72rem; padding: 8px 12px; }

  .nav-logo { height: 60px; }

  .hero.container { padding: 16px 12px 20px; }
  .hero-main-img { max-height: 360px; }
  .guarantee-img { width: 70px; height: 70px; }
  .hero-guarantee { bottom: 8px; right: 8px; }

  .star_title h2 { font-size: 1.45rem; }

  .cta-box { padding: 14px 12px; }
  .cta-box .btn-cta { font-size: 0.88rem; padding: 13px 12px; }

  .feature-img,
  .feature-img1 { height: 220px; }

  .feature-content,
  .feature-content1 { padding: 24px 16px; }

  .best-in-class.container-lg { padding: 28px 16px; }

  .s4CompBox { border-radius: 8px; }

  .header-large  { font-size: 1.45rem; }
  .header-medium { font-size: 1.15rem; }

  .large-score { font-size: 3.5rem; }

  .review-img { height: 180px; }

  .trust-stats-wrapper { padding: 0 16px; }
  .rating-label { width: 95px; font-size: 0.8rem; }

  .dont-miss-out-content { padding: 28px 16px; }

  #faq .wrapper.container { padding: 36px 12px; }

  .money-back { padding: 28px 0; }

  .better-bright { display: none; }

  .as-seen-on-img { width: 100%; height: auto; }

  .scrollable-item img { width: 34px; height: 34px; }
  .scrollable-item p { font-size: 0.72rem; }

  .guarantee-img--lg { width: 88px; height: 88px; }
  .guarantee_disclaimer { padding: 24px 16px; }

  .small-and-strong .text-content { padding: 28px 16px 16px; }
  .small-and-strong .img-content  { padding: 0 16px 24px; }

  .stats-bar { padding: 40px 0; }
  .stat-number { font-size: 48px; }
  .stat-item { min-width: 140px; }

  .doctor-review-inner { padding: 32px 20px; }
  .doctor-quote { font-size: 15px; }

  .op-title { white-space: normal; }
}

/* ══════════════════════════════════════════════
   FIX 5 — INGREDIENTS AS CARDS
══════════════════════════════════════════════ */
.small-and-strong {
  background: #F8F9FA !important;
  color: #222;
}
.small-and-strong .text-content { background: transparent; }
.small-and-strong .text { color: #222; }
.ingredient-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.ingredient-name {
  font-size: 17px;
  font-weight: 700;
  color: #5AB8C8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ingredient-name::before { content: "✦"; font-size: 12px; }
.ingredient-desc { font-size: 15px; line-height: 1.7; color: #444; margin: 0; }
.ingredients-headline { color: #14495A !important; }

/* ══════════════════════════════════════════════
   FIX 8 — DOCTOR CARD
══════════════════════════════════════════════ */
.doctor-review { background: #F8F9FA; }
.doctor-review-inner {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-top: 4px solid #5AB8C8;
  border-radius: 0 0 16px 16px;
  padding: 40px 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.doctor-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5AB8C8;
  margin-bottom: 24px;
}
.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14495A, #2a5570);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #5AB8C8;
}
.doctor-quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: #444;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-top: 12px;
}
.doctor-quote::before {
  content: "\201C";
  font-size: 60px;
  color: #5AB8C8;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}
.doctor-name { font-weight: 700; font-size: 16px; color: #14495A; text-align: center; }
.doctor-title { font-size: 13px; color: #888; text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════════════
   FIX 9 — URGENCY SECTION
══════════════════════════════════════════════ */
.urgency-section {
  background: #14495A;
  padding: 72px 24px;
  text-align: center;
}
.urgency-headline {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.25;
}
.urgency-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
}
.urgency-cta {
  display: inline-block;
  background: #1ea826;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 52px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(30,168,38,.35);
  transition: background .15s;
}
.urgency-cta:hover { background: #179b1f; color: #fff; text-decoration: none; }
