@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --teal: #1D3B26;
  --teal-dark: #113552;
  --teal-light: #E0F4F5;
  --teal-mid: #83C5BE;
  --gold: #E8A020;
  --gold-light: #FFF3D4;
  --text-dark: #1A1A2E;
  --text-mid: #3D3D5C;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --off-white: #F8FFFE;
  --border: #D1EAE8;
  --shadow-sm: 0 2px 12px rgba(0, 109, 119, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 109, 119, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 109, 119, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.04)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes badgePop {
  0% {
    transform: scale(0.7);
    opacity: 0
  }

  60% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes starWiggle {

  0%,
  100% {
    transform: rotate(-3deg)
  }

  50% {
    transform: rotate(3deg)
  }
}

.animate-fadeUp {
  animation: fadeUp 0.7s ease both;
}

.animate-slideRight {
  animation: slideRight 0.7s ease both;
}

.animate-slideLeft {
  animation: slideLeft 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s
}

.delay-2 {
  animation-delay: 0.2s
}

.delay-3 {
  animation-delay: 0.3s
}

.delay-4 {
  animation-delay: 0.4s
}

.delay-5 {
  animation-delay: 0.5s
}

.delay-6 {
  animation-delay: 0.6s
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 119, 0.3) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 4px;
  transition: var(--transition);
}

@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── TICKER BAR ── */
.ticker {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 10px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-item i {
  color: var(--gold)
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 40%, #fff9ee 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 32px 70px;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  right: -100px
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  bottom: -80px;
  left: -80px
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--teal-mid);
  top: 50%;
  left: 35%
}

.hero-inner {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: badgePop 0.6s ease both 0.2s;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  /* font-weight: 800; */
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
  position: relative
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-desc a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px
}

.stars-row {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1.1rem
}

.rating-text {
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 500
}

.rating-text strong {
  color: var(--teal);
  font-weight: 700
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--t);
  animation: pulse 2.5s ease infinite;
  box-shadow: 0 6px 24px rgba(232, 160, 32, 0.35);
}

.btn-primary:hover {
  background: #d4911a;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 160, 32, 0.45)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--teal);
  transition: var(--t);
}

.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px)
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
}

.hero-pill i {
  color: var(--teal);
  font-size: 0.8rem
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-img-ring {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(27, 106, 178, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowRing 3s ease-in-out infinite;
}

.hero-img-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(27, 106, 178, 0.2);
  animation: spin 20s linear infinite;
}

.hero-img-ring img {
  width: 400px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(27, 106, 178, 0.25));
  position: relative;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.fb-1 {
  top: 10px;
  right: -20px;
  animation-delay: -1s
}

.floating-badge.fb-2 {
  bottom: 20px;
  left: -30px;
  animation-delay: -2.5s
}

.floating-badge.fb-3 {
  top: 50%;
  right: -40px;
  animation-delay: -0.5s;
  transform: translateY(-50%)
}

.fb-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center
}

.fb-icon i {
  color: var(--teal);
  font-size: 0.9rem
}

.fb-text {
  line-height: 1.3
}

.fb-text strong {
  font-size: 0.85rem;
  color: var(--text-dark);
  display: block
}

.fb-text span {
  font-size: 0.72rem;
  color: var(--text-light)
}



/* ─── SECTION STRUCTURE ─── */
section {
  padding: 72px 32px;
}

.container {
  max-width: 1280px;
  margin: auto;
}

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {

  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title em {
  color: var(--teal);
  font-style: normal;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 940px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ─── WHY CHOOSE ─── */
.why-section {
  background: var(--off-white);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.badge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.badge-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.badge-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.badge-image img {
  width: 100%;
}

.badge-card h3 {

  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.badge-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── REVIEWS ─── */
.reviews-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-light) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  transform: scaleX(0);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-light);
}

.reviewer-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 109, 119, 0.08);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: auto;
}

.review-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-style: italic;
}

.review-quote {
  font-size: 2.5rem;
  color: var(--teal);

  line-height: 1;
  margin-bottom: 8px;
}

/* ─── WHAT IS ─── */
.what-section {
  background: var(--white);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.what-img {
  position: relative;
}

.what-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.what-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.what-img-badge .num {

  font-size: 2rem;
  font-weight: 900;
  display: block;
}

.what-img-badge .lbl {
  font-size: 0.75rem;
  font-weight: 600;
}

.what-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.what-content a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

/* ─── BENEFITS ─── */
.benefits-section {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.benefits-section .section-title {
  color: #fff;
}

.benefits-section .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.benefits-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(6px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: #fff;
  font-size: 1rem;
}

.benefit-text h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.benefit-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card h3 {

  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── INGREDIENTS ─── */
.ingredients-section {
  background: var(--white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ingredient-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

.ingredient-card:hover {
  border-color: var(--teal-mid);
  background: var(--teal-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.ingredient-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ingredient-img img {
  width: 100%;
}

.ingredient-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal);
  margin: 10px auto;
}

.ingredient-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── GUARANTEE ─── */
.guarantee-section {
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

.guarantee-badge-img {
  text-align: center;
}

.guarantee-badge-img .badge-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.guarantee-badge-img .badge-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
}

.badge-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  border: 6px solid var(--teal-mid);
}

.badge-circle img {
  border-radius: 50%;
  width: 100%;
}


.guarantee-content h2 {

  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.guarantee-content h2 span {
  color: var(--teal);
}

.guarantee-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}


/* ─── FAQ ─── */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.faq-q i {
  color: var(--teal);
  transition: transform 0.35s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
}

.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ─── SCAM / LEGIT ─── */
.legit-section {
  background: var(--teal-light);
}

.legit-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.legit-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-align: center;
}



/* CTA */
.cta-section {
  text-align: center;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 201, 177, 0.1) 0%, transparent 70%)
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.cta-section h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 920px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1
}

.cta-img-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

.cta-img-row img {
  height: 300px;
  filter: drop-shadow(0 20px 40px rgba(0, 201, 177, 0.25));
  animation: float 4s ease-in-out infinite
}

.cta-price-box {
  text-align: center
}

.cta-was {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through
}

.cta-now {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1
}

.cta-per {
  font-size: 0.85rem;
  color: var(--muted)
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal));
  color: var(--off-white);
  padding: 15px 56px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
  position: relative;
  z-index: 1;
  animation: glowPulse 2.5s ease-in-out infinite
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(245, 166, 35, 0.5)
}

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px
}

.cta-trust .ico {
  color: var(--teal)
}



/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 48px 32px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {

  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-brand .logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--teal-mid);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: var(--teal-mid);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--teal-mid);
}

.disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: #030101;
  background: linear-gradient(90deg, rgba(3, 1, 1, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(51, 51, 51, 1) 100%);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
  max-width: 1280px;
  margin: auto;
}

.stat-item {
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border: none;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--off-white);
  font-weight: 500;
}

/* ─── MOBILE MENU ─── */
@media(max-width:1024px) {
   .hero-img-ring{width:300px;height:300px}
  .hero-img-ring img{width:230px}
  .floating-badge.fb-3{display:none}
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .hero-inner{grid-template-columns:1fr}
  .hero-visual{order:-1}
  .hero-img-ring{width:260px;height:260px}
  .hero-img-ring img{width:300px}
  .hero{padding:40px 20px 52px}
  section {
    padding: 52px 20px;
  }
  .fb-text strong {
    font-size: 0.65rem;
  }
  .fb-text span {
    font-size: 0.52rem;
  }
  .floating-badge.fb-1 {
    top: -12px;
}
.floating-badge.fb-2 {
    bottom: -22px;
}
.hero-desc {
    font-size: 0.8rem;
    line-height: 1.6;
}

  .cta-img-row {
    flex-direction: column;
    gap: 20px
  }

  .cta-now {
    font-size: 2rem;
  }

  .cta-section h2 {
    line-height: 1.3;
  }

  .btn-primary {
    font-size: 0.8rem;
  }

  .btn-cta {
    font-size: 0.9rem;
  }
  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .what-inner {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .badges-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-bottle {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    padding: 10px 20px;
  }

  .what-img-badge .num {
    font-size: 1rem;
    font-weight: 900;
    display: block;
  }

  .stat-num {
    font-size: 1.5rem;
  }

}

@media(max-width:480px) {
  .hero h1{font-size:1.8rem}

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .what-img-badge {
    right: 10px;
    top: 10px;
  }

  .cta-section {
    padding: 60px 20px
  }
}

a {
  text-decoration: none;
  color: inherit;
}




#pricing {
  background: #f0f4f8;
}

.pricing-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem;
}

.pricing {
  padding: 20px 20px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  position: relative;
  border: 3px solid #f1c40f;
}

.card h3 {
  font-size: 22px;
  font-weight: 900;
  color: #145a32;
}

.supply {
  color: red;
  font-weight: 600;
}

.bottles {
  font-weight: bold;
  margin-bottom: 10px;
}

.product-img {
  width: 260px;
  margin: 10px auto;
}

.card:first-child .product-img {
  width: 140px;
  height: auto;
}

.price-title {
  font-weight: 800;
  margin-top: 10px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #145a32;
}

.per {
  font-size: 13px;
  color: #555;
}

.save {
  background: #145a32;
  color: #fff;
  padding: 8px;
  margin: 10px 0;
  font-weight: bold;
}

.highlight {
  background: #0b5e3c;
}

.card ul {
  text-align: left;
  padding: 0;
  list-style: none;
}

.card ul li {
  margin: 6px 0;
  font-size: 14px;
}

.card ul li::before {
  content: "✔";
  color: green;
  margin-right: 8px;
}

.card button {
  background: #f1c40f;
  border: none;
  padding: 14px;
  font-weight: bold;
  width: 100%;
  font-size: 20px;
  margin-top: 15px;
  border-radius: 8px;
  cursor: pointer;
}

.card button:hover {
  background: #d4ac0d;
}

.checkout-img {
  width: 100%;
  margin: 4% auto;
}

.checkout-img img {
  width: 80%;
}

/* FEATURED CENTER CARD */
.featured {
  transform: scale(1.05);
  background: #eef6f0;
}

/* TOP BADGES */
.top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f1c40f;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
}

.yellow {
  background: #f7dc6f;
}

/* MOBILE */
@media (max-width: 900px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
  #pricing{
    padding: 52px 8px;
  }

  .featured {
    transform: none;
  }
}



.comparison {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: Arial, sans-serif;
}

.cmp-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cmp-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.cmp-sub {
  color: #475569;
  margin-bottom: 40px;
}

/* TABLE */
.cmp-table-wrapper {
  overflow-x: auto;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.cmp-table th,
.cmp-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.cmp-table th {
  background: #0f172a;
  color: #fff;
  font-weight: 600;
}

.cmp-table td {
  color: #334155;
}

/* Highlight Column */
.highlight {
  background: #ecfdf5;
  font-weight: 600;
  color: #065f46;
}

/* Badge */
.badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 5px;
}

/* CTA */
.cmp-cta {
  margin-top: 30px;
}

.cmp-btn {
  display: inline-block;
  background: var(--btn);
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cmp-btn:hover {
  background: var(--gold-bright);
}



.pros-cons {
  padding: 40px 20px;
  background: #004224;
}

.pc-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.pc-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.pc-sub {
  margin-bottom: 40px;
}


.pc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pc-box {
  background: #f5fffb;
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.pc-box:hover {
  transform: translateY(-5px);
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

}

.pc-header h3 {
  font-size: 30px;
}

.pc-header span {
  font-size: 24px;
  transition: 0.3s;
}

.pc-list {
  margin-top: 15px;
  text-align: left;
  list-style: none;
  padding-left: 0;
}

.pc-list li {
  font-size: 18px;
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.pros li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

.cons li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .faq-q,
  .faq-a-inner,  
  .pc-list li,
  .reviewer-info h4,
  .cmp-table th, .cmp-table td,  
  p {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }
    .guarantee-inner {
      padding: 15px;
    }
    .cta-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }
    .hero-eyebrow {
    font-size: 0.55rem;
    }
    .nav-logo {
    font-size: 1.5rem;
    }
}