@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --teal: #174A49;
  --teal-dark: #174A49;
  --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 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
}

.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);
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #174A49;
  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(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  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-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--text-dark) !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(--gold) !important;
  color: var(--white) !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(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.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);
}

.breadcrumb {
  background: var(--off-white);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1280px;
  margin: auto;
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--teal);
  font-weight: 600;
}

.breadcrumb-inner span {
  margin: 0 6px;
}

.hero {
  background: url(../images/bg-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  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: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  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(1.3rem, 4vw, 2rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero h1 em {
  color: var(--white);
  font-style: normal;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.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(--gold);
  color: var(--text-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}

.btn-primary:hover {
  background: #d4910d;
  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(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--white);
  color: #000;
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.83rem;
  color: var(--white);
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i {
  color: var(--white);
}

.hero-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  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: 0.9rem;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

section {
  padding: 40px 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, 2rem);
  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: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 1040px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.why-section {
  background: var(--off-white);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.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);
}

.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-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-section {
  background: url(../images/bg-leaf.webp);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.what-img {
  position: relative;
}

.what-img img {
  width: 100%;
  border-radius: var(--radius);
}

.what-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.what-content a {
  font-weight: 600;
  text-decoration: none;
}

.benefits-section {
  background: url(../images/bg-leaf.webp);
  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-tag {
  background: rgba(255, 255, 255, 0.15);
}

.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 {
  font-size: 0.9rem;
}

.benefit-text h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.benefit-text p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.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: 0.9rem;
  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-section {
  background: var(--white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 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 {
  max-width: 200px;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ingredient-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal);
  margin: 10px auto;
  background: #005598;
  color: #fff;
  width: 90%;
  padding: 6px 20px;
}

.ingredient-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.guarantee-section {
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 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 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.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);
  text-align: center;
  margin-bottom: 12px;
}

.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: 0.9rem;
  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;
}

.legit-section {
  background: var(--teal-light);
}

.legit-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.legit-inner p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 16px;
}

.cta-section {
  background: #fff !important;
  text-align: center;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.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: 1020px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1
}

.cta-img-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.cta-img-row img {
  max-width: 600px;
  animation: float 4s ease-in-out infinite;
}

.cta-price-box {
  text-align: center
}

.cta-was {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.758);
  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: 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;
}

.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,
#pricing2,
#pricing3 {
  background: url(../images/bg-image.webp);
}

.pricing-header {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  color: #fff;
}

.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 1rem;
  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 {
  background: #FEFEDA;
  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: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-bottles {
  font-size: 40px;
  font-weight: 700;
  color: var(--teal-dark);
}

.pc-supply {
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.pc-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1.5rem;
  display: block;
}

.price-card:first-child .pc-img {
  width: 220px;
  height: auto;
}

.price-card:last-child .pc-img {
  width: 240px;
  height: auto;
}

.pc-price {
  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-top: 1.2rem;
}

.pc-perk {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
  padding: 8px 12px;
  background: #0000002b;
  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-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: 1rem 0;
  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;
}

.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(--off-white);
}

.ptrust-icon {
  font-size: 20px;
}

.bonus-section {
  background: var(--teal);
  padding: 3.5rem 1.5rem;
}

.bonus-headline {
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 2.5rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.bonus-headline .highlight {
  color: #ffd000;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bonus-img-wrap {
  background: #fce8e9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 220px;
}

.bonus-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px 10px 0 0;
  object-fit: cover;
}

.digital-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #2a2a2a;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 10px;
  line-height: 1.4;
  text-align: center;
}

.bonus-info {
  padding: 1.2rem 1.2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
}

.bonus-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.2;
}

.bonus-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.bonus-original {
  font-size: 17px;
  color: #999;
  text-decoration: line-through;
  font-weight: 700;
}

.bonus-free {
  font-size: 17px;
  font-weight: 900;
  color: #c0111a;
  letter-spacing: 1px;
}

.bonus-desc {
  font-size: 19px;
  color: #555;
  line-height: 32px;
  margin-top: 6px;
  flex: 1;
}

.bonus-download {
  font-size: 14px;
  font-weight: 800;
  color: #c0111a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

footer {
  background: var(--teal);
  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.779);
  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.699);
  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 {
  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: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--off-white);
  font-weight: 500;
}

/* ─── ABOUT / STORY / TIMELINE (new shared components) ─── */
.about-hero {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 60px 32px;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-item h4 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.value-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.warning-box {
  background: #FFF6E5;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px auto 0;
  max-width: 1040px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.warning-box i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 2px;
}

.warning-box p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.warning-box strong {
  color: var(--text-dark);
}

.steps-order {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  gap: 20px;
}

.order-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.order-step .num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.order-step h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.order-step p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.sale-banner {
  background: var(--gold);
  color: var(--text-dark);
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.sale-banner span {
  text-decoration: underline;
}

/* ─── MOBILE ─── */
@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;
  }

  .values-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.9rem;
  }

  .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;
    padding: 10px;
  }

  .badges-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-trust {
    font-size: 0.63rem;
  }

  .nav-links a {
    color: #000000;
  }

  .cta-img-row img {
    max-width: 360px;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }

  .timeline {
    padding-left: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:540px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .bonus-headline {
    font-size: 1.2rem;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 20px
  }
}


/* ─── LEGAL PAGES ─── */
.legal-hero { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 56px 32px; text-align: center; }
.legal-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-bottom: 10px; }
.legal-hero p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
 
.legal-body { max-width: 860px; margin: 0 auto; padding: 48px 0 20px; }
.legal-body h2 { font-size: 1.15rem; color: var(--teal); margin: 32px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 22px; }
.legal-body li { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 6px; }
.legal-body a { color: var(--teal); font-weight: 600; }
.legal-toc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 8px; }
.legal-toc h3 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 10px; }
.legal-toc ol { margin-left: 20px; }
.legal-toc li { font-size: 0.88rem; margin-bottom: 6px; }
.legal-toc a { color: var(--text-mid); text-decoration: none; }
.legal-toc a:hover { color: var(--teal); }
.legal-updated { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; }

a {
  text-decoration: none;
  color: inherit;
}