:root {
  --teal: #1D4A6E;
  --teal-dark: #113552;
  --teal-light: #E0F4F5;
  --teal-mid: #83C5BE;
  --gold: #36a6da;
  --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: 'DM 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(--gold);
}

.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);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--teal);
  padding: 10px 32px;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: waveMove 22s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--teal-light) 100%);
  padding: 40px 32px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  animation: badgePop 0.6s ease both 0.2s;
}

.hero-badge i {
  animation: starWiggle 1.5s ease infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.price-now {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal);
}

.price-was {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-save {
  background: var(--teal);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 160, 32, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--teal);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.83rem;
  color: var(--text-light);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i {
  color: var(--teal);
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 380px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 109, 119, 0.2));
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 109, 119, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-count {
  font-size: 0.85rem;
  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.5;
  max-width: 750px;
}

.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-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.badge-card:hover .badge-icon {
  background: var(--teal);
}

.badge-icon i {
  font-size: 1.6rem;
  color: var(--teal);
  transition: var(--transition);
}

.badge-card:hover .badge-icon i {
  color: #fff;
}

.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.5;
  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: #fff;
  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-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.ingredient-card h4 {
  
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.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{
  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: 900px;
  margin: 0 auto;
}

.legit-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}



/* 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(--gold), #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.5;
  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: #36a6da;
  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: #fff;
  padding: 20px 56px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  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)
}


 /* ── PRICING ── */
 #pricing {
   background: var(--surface);
 }

 .pricing-header {
   text-align: center;
   max-width: 640px;
   margin: 0 auto 4rem;
 }

 .pricing-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 1100px;
   margin: 0 auto;
 }

 .price-card {
   background: #ffffff;
   border: 1px solid var(--teal);
   border-radius: 24px;
   padding: 2.5rem 2rem;
   text-align: center;
   position: relative;
   transition: transform 0.3s, box-shadow 0.3s;
   box-shadow: 0 2px 16px rgba(99, 102, 241, 0.07);
 }

 .price-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
 }

 .price-card.featured {
   border-color: var(--gold);
   box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08), 0 20px 60px rgba(99, 102, 241, 0.18);
   transform: scale(1.04);
   z-index: 2;
 }

 .price-card.featured:hover {
   transform: scale(1.04) translateY(-6px);
 }

 .pc-label {
   position: absolute;
   top: -14px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--gold);
   color: #fff;
   font-size: 14px;
   font-weight: 800;
   letter-spacing: 1.5px;
   padding: 10px 20px;
   border-radius: 10px;
   text-transform: uppercase;
   white-space: nowrap;
 }

 .pc-bottles {
   font-size: 35px;
   font-weight: 800;
   color: var(--teal);
 }

 .pc-supply {
   font-size: 18px;
   color: var(--muted);
   letter-spacing: 1px;
   margin: 6px 0 1.5rem;
 }

 .pc-img {
   width: 100%;
   max-width: 300px;
   margin: 0 auto 1.5rem;
   display: block;
 }
 .price-card:first-child .pc-img {
  width: 120px;
  height: auto;
}

 .pc-price {
   font-family: var(--font-body);
   font-size: 54px;
   font-weight: 800;
   line-height: 1;
 }

 .pc-price span {
   font-size: 20px;
   color: var(--muted);
   font-weight: 400;
 }

 .pc-perks {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin: 1.2rem 0;
 }

 .pc-perk {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 15px;
   color: var(--text);
   font-weight: 700;
   padding: 8px 12px;
   background: #ffe5dba1;
   border: 1px dashed rgba(255, 191, 151, 0.25);
   border-radius: 8px;
 }

 .pc-perk .check {
   color: var(--green);
   font-size: 20px;
 }

 .pc-btn {
   width: 100%;
   background: var(--teal);
   color: #fff;
   font-family: var(--font-body);
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   padding: 15px;
   border: none;
   border-radius: 12px;
   cursor: pointer;
   transition: background 0.2s, transform 0.2s;
   margin-bottom: 1rem;
   box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
 }

 .pc-btn:hover {
   background: var(--teal);
   transform: scale(1.01);
 }

 .price-card.featured .pc-btn {
   background: var(--teal);
   box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
 }

 .price-card.featured .pc-btn:hover {
   background: var(--teal);
 }

 .pc-total {
   font-size: 16px;
   color: var(--muted);
 }

 .pc-total s {
   color: #585858;
   margin-right: 4px;
 }

 .pc-total strong {
   color: var(--teal);
 }

 .pc-shipping {
   font-size: 15px;
   letter-spacing: 1px;
   color: var(--green);
   text-transform: uppercase;
   margin-top: 8px;
 }
.pc-image{
  width: 100%;
}
.pc-image img{
  width: 100%;
}
 .pricing-trust {
   display: flex;
   justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
   margin-top: 3rem;
 }

 .ptrust-item {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   color: var(--muted);
 }

 .ptrust-icon {
   font-size: 20px;
 }

/* ─── 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.5;
}

.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: var(--white);
  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: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  display: block;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── MOBILE MENU ─── */
@media(max-width:1024px) {

  .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) {
  section {
    padding: 52px 20px;
  }
  .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.7rem;
  }
  
 .pricing-grid {
     grid-template-columns: 1fr;
     max-width: 400px;
   }

   .price-card.featured {
     transform: none;
   }

  .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;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-img-wrap img {
    max-width: 280px;
  }

  .hero {
    padding: 48px 20px 40px;
  }

  .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);
  }

  .hero-btns {
    flex-direction: column;
  }

  .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;
}
.price-save {
    font-size: 0.5rem;
}
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .what-img-badge {
    right: 10px;
    top: 10px;
  }
    .cta-section {
    padding: 60px 20px
  }
  .cta-img-row img {
    height: 242px;
  }
}
a{
  text-decoration: none;
  color: inherit;
}