
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

  
  :root {
  --teal: #272727;
  --teal-dark: #272727;
  --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;
    }
    section{
      scroll-margin-top: 70px;
    }

    body{
      font-family: "Open Sans", sans-serif;
      background:#f4f4f4;
      color:#222;
      overflow-x:hidden;
      background: url(../images/bg-body.svg);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      text-decoration:none;
    }

    .container{
      width:100%;
      max-width:1400px;
      margin:auto;
      padding:0 20px;
    }

    /* =========================
       HEADER
    ========================== */

    header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      z-index:999;
      /* background:#272727; */
      transition:.4s;
    }

    header.scrolled{
      box-shadow:0 8px 25px rgba(0,0,0,.2);
      background:#272727;
    }

    .navbar{
      height:82px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .logo{
      background:#fff;
      padding:10px 16px;
      border-radius:0 0 12px 12px;
      font-weight:800;
      color:#272727;
      letter-spacing:1px;
      font-size:18px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:35px;
    }

    .nav-links a{
      color:#fff;
      font-size:14px;
      font-weight:600;
      transition:.3s;
    }

    .nav-links a:hover{
      color:#b9ff1b;
    }

    .order-btn{
      background:#FFAC55;
      color:#000 !important;
      padding:14px 28px;
      border-radius:50px;
      font-weight:800 !important;
      transition:.3s;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
    }

    .order-btn:hover{
      transform:translateY(-3px);
      background:#9ddf26;
    }

    .menu-btn{
      display:none;
      font-size:32px;
      color:#fff;
      cursor:pointer;
    }

    /* =========================
       HERO
    ========================== */

    .hero{
      background:#272727;
      padding-top:130px;
      overflow:hidden;
      position:relative;
    }

    .hero::before{
      content:"";
      position:absolute;
      width:600px;
      height:600px;
      background:rgba(255,255,255,.05);
      border-radius:50%;
      right:-200px;
      top:-150px;
    }

    .hero-wrap{
      display: grid;
      grid-template-columns: 1fr 3fr;
    }

    .hero-content{
      z-index: 3;
      animation:fadeLeft 1s ease;
    }

    .hero-content h1{
      font-size:52px;
      line-height:1.05;
      color:#fff;
      padding-top: 10px;
      font-weight:700;
      margin-bottom:24px;
      text-transform: uppercase;
      border-radius: 10px;
    }

    .hero-content h1 span{
      color:#fff;
    }

    .hero-content p{
      color:#fff;
      line-height: 1.7;
      margin-bottom:25px;
      font-size:18px;
      font-weight:400;
    }

    .special{
      color:#fff;
      border-left:4px solid #fff;
      padding-left:14px;
      margin-bottom:30px;
      text-transform:uppercase;
      font-weight:600;
      letter-spacing:2px;
    }
    .hero-badge{
      width: 70%;
      margin-bottom: 2rem;
    }
    .hero-badge img{
      width: 100%;
    }

    .hero-btn{
      display:inline-block;
      background:#FFAC55;
      color:#000;
      padding:18px 40px;
      border-radius:50px;
      font-size:20px;
      font-weight:800;
      transition:.4s;
      box-shadow:0 12px 30px rgba(0,0,0,.25);
    }

    .hero-btn:hover{
      transform:translateY(-5px) scale(1.03);
    }

    .hero-image{
      position:relative;
      width: 450px;
      justify-content:center;
      z-index: 1;
      animation:fadeRight 1s ease;
    }
    .hero-image img{
      width: 100%;
    }

    .product-main{
      /* animation:float 4s ease-in-out infinite; */
      filter:drop-shadow(0 20px 30px rgba(0,0,0,.4));
    }

    .stock-badge{
      position:absolute;
      bottom: 60px;
      left: 50px;
      width:120px;
      height:120px;
      background:#fff;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      font-size: 1.05rem;
      font-weight:800;
      color:#ff4c4c;
      animation:pulse 2s infinite;
    }

    /* =========================
       SECTION
    ========================== */

    section{
      padding:100px 0;
      background:#efefefae;
    }

    .section-title{
      font-size:56px;
      text-align:center;
      text-transform:uppercase;
      font-weight:800;
      line-height:1.1;
      margin-bottom:20px;
      color:#222;
    }

    .section-title span{
      color:#272727;
    }

    .section-desc{
      text-align:center;
      max-width:900px;
      margin:auto;
      line-height: 1.7;
      font-size: 1.05rem;
      color:#555;
      margin-bottom: 1rem;
    }

    /* =========================
       DISCOVERY
    ========================== */

    .discovery-bar{
      background:#1f1f1f;
      color:#fff;
      padding:18px;
      border-radius:12px;
      text-align:center;
      font-weight:800;
      letter-spacing:2px;
      text-transform:uppercase;
      margin-bottom:50px;
      font-size:22px;
    }

    .gallery{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      max-width: 1200px;
      margin-bottom:60px;
       margin:0px auto 60px auto;
    }
    .gallery2{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      max-width: 800px;
      margin-bottom:60px;
       margin:40px auto 0px auto;
    }
     .gallery img{
      height: 300px;
     }

    .gallery img,
    .gallery2 img{
      width:100%;
      object-fit:cover;
      border-radius:10px;
      transition:.5s;
    }

    .gallery img:hover{
      transform:translateY(-10px) scale(1.03);
    }

    /* =========================
       INTRO
    ========================== */

    .intro{
      background:#272727;
      overflow:hidden;
      padding: 0;
      margin: 0;
    }

    .intro-wrap{
      display: grid;
      gap: 20px;
      grid-template-columns: 3fr 1.5fr;
    }

    .intro-image{
      animation:fadeLeft 1s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .intro-image img{
      width: 100%;
    }

    .intro-content{
      padding: 2% 2% 2% 4%;
      color:#fff;
      margin: auto;
      animation:fadeRight 1s ease;
    }

    .intro-content h3{
      color:#FFAC55;
      font-size:24px;
      font-weight:800;
      margin-bottom:10px;
      text-transform:uppercase;
    }

   .intro-content h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

    .intro-content p{
      line-height: 1.7;
      margin-bottom:20px;
      font-size: 1.05rem;
    }

   /* =========================
   INGREDIENTS
========================= */

.ingredients{
  max-width: 1400px;
  margin: auto;
  background:#efefef89;
  padding:110px 0;
  overflow:hidden;
}

/* TOP */

.ingredients-heading{
  text-align:center;
  margin-bottom:90px;
}

.heading-line{
  width:55px;
  height:5px;
  background:#6ca600;
  margin:0 auto 25px;
  border-radius:30px;
}

.ingredients-title{
  font-size:55px;
  line-height:1.05;
  font-weight:800;
  text-transform:uppercase;
  color:#222;
  max-width:1100px;
  margin:auto auto 30px;
  letter-spacing:-2px;
}

.ingredients-title span{
  color:#272727;
}

.ingredients-desc{
  font-size:20px;
  line-height:1.6;
  color:#333;
  max-width:1100px;
  margin:auto;
}

/* =========================
   GRID
========================= */

.ingredients-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:80px 45px;
  align-items:start;
}

/* =========================
   CARD
========================= */

.ingredient-card{
  position:relative;
  border-radius:26px;
  padding:0 38px 42px;
  transition:.4s;
}

.ingredient-card:hover{
  transform:translateY(-12px);
}

/* COLORS */

.blue-card{
  background:#272727;
}

.white-card{
  background:#f6f6f6;
}

/* =========================
   IMAGE
========================= */

.ingredient-image{
  width:150px;
  height:150px;
  border-radius:50%;
  overflow:hidden;
  margin:-55px auto 25px;
  border:10px solid #0fbf82;
  outline:8px solid #01789f;
  background:#fff;
}

.ingredient-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   CONTENT
========================= */

.ingredient-content h3{
  font-size:25px;
  line-height:1.5;
  font-weight:700;
  margin-bottom:22px;
}

.blue-card h3{
  color:#fff;
}

.white-card h3{
  color:#222;
}

.card-line{
  width:100%;
  height:2px;
  background:rgba(255,255,255,.35);
  margin-bottom:28px;
}

.white-card .card-line{
  background:rgba(0,0,0,.25);
}

/* =========================
   LIST
========================= */

.ingredient-content ul{
  list-style:none;
  display:grid;
  gap:24px;
}

.ingredient-content li{
  position:relative;
  padding-left:42px;
  font-size:18px;
  line-height: 1.7;
  font-weight:400;
}

.blue-card li{
  color:#fff;
}

.white-card li{
  color:#333;
}

/* ICON */

.ingredient-content li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid currentColor;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

  .ingredients-title{
    font-size:60px;
  }

}

@media(max-width:1200px){

  .ingredients-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:992px){

  .ingredients{
    padding:90px 0;
  }

  .ingredients-title{
    font-size:48px;
  }

  .ingredients-desc{
    font-size:20px;
  }

  .ingredient-card{
    min-height:auto;
  }

}

@media(max-width:768px){

  .ingredients-grid{
    grid-template-columns:1fr;
    gap:70px;
  }

  .ingredients-title{
    font-size:38px;
    letter-spacing:-1px;
  }

  .ingredients-desc{
    font-size: 1.05rem;
  }

  .ingredient-card{
    padding:0 28px 35px;
  }

  .ingredient-image{
    width:130px;
    height:130px;
  }

  .ingredient-content h3{
    font-size:22px;
  }

  .ingredient-content li{
    font-size: 1.05rem;
  }

}

@media(max-width:480px){

  .ingredients-title{
    font-size:30px;
  }

  .ingredient-card{
    border-radius:22px;
  }

}

    /* =========================
       PROMISE
    ========================== */

    .promise-title{
      background:#272727;
      text-align:center;
      color:#fff;
      font-size:50px;
      font-weight:800;
      text-transform:uppercase;
      padding:45px 20px;
    }

    .promise-title span{
      color:#FFAC55;
    }

    .promise{
      background:#FFAC55;
      color:#000;
    }

    .promise-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:40px 120px;
    }

    .promise-item{
      display:flex;
      gap:20px;
      align-items:flex-start;
    }

    .promise-icon{
      min-width:45px;
      height:45px;
      border-radius:50%;
      background:#000;
      color:#FFAC55;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      font-weight:800;
    }

    .promise-item h4{
      font-size:22px;
      margin-bottom:10px;
      text-transform:uppercase;
      font-weight:700;
    }

    .promise-item p{
      line-height: 1.7;
      font-size: 1.05rem;
    }

    /* =========================
       FOOTER
    ========================== */

    footer{
      background:#111;
      color:#fff;
      text-align:center;
      padding:30px 20px;
      font-size:14px;
      letter-spacing:1px;
    }

    /* =========================
       ANIMATION
    ========================== */

    .reveal{
      opacity:0;
      transform:translateY(70px);
      transition:1s ease;
    }

    .reveal.active{
      opacity:1;
      transform:translateY(0);
    }

    @keyframes float{
      0%{
        transform:translateY(0px);
      }
      50%{
        transform:translateY(-18px);
      }
      100%{
        transform:translateY(0px);
      }
    }

    @keyframes pulse{
      0%{
        transform:scale(1);
      }
      50%{
        transform:scale(1.08);
      }
      100%{
        transform:scale(1);
      }
    }

    @keyframes fadeLeft{
      from{
        opacity:0;
        transform:translateX(-60px);
      }
      to{
        opacity:1;
        transform:translateX(0);
      }
    }

    @keyframes fadeRight{
      from{
        opacity:0;
        transform:translateX(60px);
      }
      to{
        opacity:1;
        transform:translateX(0);
      }
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:992px){

      .hero-wrap,
      .intro-wrap{
        flex-direction:column;
        text-align:center;
      }

      .hero-image{
      position:relative;
      }
      .hero-content p{
        margin:auto auto 25px;
      }

      .special{
        display:inline-block;
      }

      .hero-content h1{
        font-size:48px;
      }

      .intro-content h2{
        font-size:42px;
      }

      .section-title{
        font-size:42px;
      }
      .gallery{
        grid-template-columns:repeat(2,1fr);
      }
      .gallery2{
        grid-template-columns:repeat(2,1fr);
      }

      .promise-grid{
        gap:40px;
      }
    }

    @media(max-width:768px){

      .nav-links{
        position:fixed;
        top:82px;
        left:-100%;
        width:100%;
        background:#272727;
        flex-direction:column;
        padding:40px 0;
        transition:.4s;
      }

      .nav-links.active{
        left:0;
      }

      .menu-btn{
        display:block;
      }

      .hero{
        padding-top:120px;
      }
      .hero-wrap{
          display: grid;
          grid-template-columns: 1fr;
          text-align: start;
        }
      .hero-content h1{
        font-size:38px;
      }
      .hero-image {
        width: 100%;
    top: 0px;
      }
      .hero-image img {
    width: 100%;
}
.intro-wrap {
    grid-template-columns: 1fr;
}

      .section-title{
        font-size:34px;
      }

      .intro-content h2{
        font-size:34px;
      }
      .gallery{
        grid-template-columns:1fr 1fr;
      }
      .gallery2{
        grid-template-columns:1fr 1fr;
      }
      .promise-grid{
        grid-template-columns:1fr;
      }

      .product-main{
        width:320px;
      }

      .stock-badge{
        left:30px;
        width:90px;
        height:90px;
        font-size:13px;
      }

      .promise-title{
        font-size:31px;
      }
    }


    
/* ─── SECTION STRUCTURE ─── */
section {
  padding: 72px 32px;
}

.container {
  max-width: 1400px;
  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, 3.1rem);
  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: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 840px;
}

.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.7;
}

/*reviews */

.reviews-section {
      background: linear-gradient(180deg, var(--white, #fff) 0%, var(--teal-light, #e1f5ee) 100%);
      padding: 80px 0;
    }

 
    .text-center { text-align: center; }

    /* ─── PROGRESS BAR ─── */
 
    .rv-progress {
      height: 3px;
      background: #d0e9e6;
      border-radius: 3px;
      margin-bottom: 12px;
      overflow: hidden;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }
 
    .rv-bar {
      height: 100%;
      background: #006D77;
      border-radius: 3px;
      transition: width 0.1s linear;
      width: 0%;
    }
 
    /* ─── CAROUSEL STAGE ─── */
 
    .rv-stage {
      max-width: 1020px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 20px;
    }
 
    .rv-track {
      display: flex;
      transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    .rv-slide {
      min-width: 100%;
      box-sizing: border-box;
      padding: 4px;
    }
 
    /* ─── CARD ─── */
 
    .rv-card {
      background: #ffffff;
      border: 1px solid #e4eeec;
      border-radius: 20px;
      padding: 36px 40px 32px;
      position: relative;
      box-shadow: 0 4px 32px rgba(0, 109, 119, 0.07);
    }
 
    .rv-top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
 
    .rv-stars {
      font-size: 18px;
      color: #F0991B;
      letter-spacing: 2px;
    }
 
    .rv-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(0, 109, 119, 0.08);
      color: #006D77;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 50px;
    }
 
    .rv-bigquote {
      font-size: 64px;
      line-height: 0.8;
      color: #006D77;
      opacity: 0.25;
      font-family: Georgia, serif;
      margin-bottom: 8px;
    }
 
    .rv-text {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #3a3a3a;
      font-style: italic;
      margin: 0 0 28px;
    }
 
    /* ─── REVIEWER FOOTER ─── */
 
    .rv-footer {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid #eaf2f0;
      padding-top: 20px;
    }
 
    .rv-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
      border: 2px solid #e1f5ee;
    }
 
    .rv-name {
      font-weight: 700;
      font-size: 15px;
      color: #1a1a2e;
      margin: 0 0 3px;
    }
 
    .rv-loc {
      font-size: 12px;
      color: #888;
      margin: 0;
    }
 
    /* ─── CONTROLS ─── */
 
    .rv-controls {
      max-width: 820px;
      margin: 18px auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
 
    .rv-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }
 
    .rv-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #c5ddd9;
      cursor: pointer;
      border: none;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }
 
    .rv-dot.active {
      background: #006D77;
      transform: scale(1.4);
    }
 
    .rv-arrows {
      display: flex;
      gap: 10px;
    }
 
    .rv-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid #c5ddd9;
      background: #fff;
      color: #006D77;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: background 0.15s, border-color 0.15s, transform 0.1s;
    }
 
    .rv-btn:hover {
      background: #e1f5ee;
      border-color: #006D77;
      transform: scale(1.05);
    }
 
    .rv-btn:disabled {
      opacity: 0.3;
      cursor: default;
      transform: none;
    }
 
    /* ─── COUNTER ─── */
 
    .rv-counter {
      font-size: 13px;
      color: #888;
      font-weight: 500;
    }
 
    .rv-counter span {
      color: #006D77;
      font-weight: 700;
    }

/* ─── WHAT IS ─── */
.what-section {
  background: var(--white);
}

.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);
  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:800;
  display: block;
}

.what-img-badge .lbl {
  font-size: 0.75rem;
  font-weight: 600;
}

.what-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.what-content a {
  color: var(--off-white);
  font-weight: 600;
  text-decoration: none;
}

/* ─── BENEFITS ─── */
.benefits-section {
  background: #232323;
  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: 1.05rem;
}

.benefit-text h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.benefit-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: #FFAC55;
}

.steps-grid {
  gap: 24px;
  margin-top: 48px;
}


.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 p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}


/* ─── 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:800;
  color: var(--teal);
  line-height: 1;
}

.guarantee-badge-img .badge-label {
  font-size: 1.05rem;
  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: 1.05rem;
  line-height: 1.7;
  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: 1.05rem;
  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: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.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: 1.05rem;
  line-height: 1.7;
  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-weight:800;
  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: 900px;
  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 {
  width: 40%;
  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: 1.05rem;
  color: rgb(0, 0, 0);
  text-decoration: line-through
}

.cta-now {
  font-family: "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight:800;
  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;
  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:#272727;
}

 .pricing-header {
   text-align: center;
   max-width: 950px;
   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 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 {
  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: 35px;
   font-weight: 700;
   color: var(--teal-dark);
 }

 .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: 250px;
  height: auto;
}
 .price-card:last-child .pc-img {
  width: 250px;
  height: auto;
}

 .pc-price {
   font-family: var(--font-body);
   font-size: 54px;
   font-weight: 800;
   line-height: 1;
   color: var(--teal);
 }

 .pc-price span {
   font-size: 20px;
   color: var(--teal);
   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: #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-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: 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: 1.05rem;
   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;
 }

/* ─── 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: #000;
  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: 1.05rem;
  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.7;
  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: 2.2rem;
  font-weight:800;
  color: var(--gold);
  display: block;
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--off-white);
  font-weight: 500;
}


.pros-cons {
  padding: 40px 20px;
  background: #FFAC55;
}

.pc-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.pc-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.pc-sub {
  text-align: center;
  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: 25px;
}

.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;
  }
}

/* ─── MOBILE MENU ─── */
@media(max-width:1024px) {

  .badges-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .cta-img-row img {
    width: 95%;
  }
  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;
   }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .badges-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;
  }
 
.stat-num {
    font-size: 1.5rem;
}
 #pricing {
    background-size:auto;
}
.how-section {
    background-size: auto;
}
.guarantee-inner {
  padding: 5px;
}
.container {
    padding: 0 10px;
}
.promise-item h4 {
    font-size: 20px;
}
.hero-badge {
    width: 100%;
    margin-bottom: 2rem;
}
.hero-btn {
    font-size: 13px;
}
}

@media(max-width:480px) {
    .cta-section {
    padding: 60px 20px
  }
}
a{
  text-decoration: none;
  color: inherit;
}
