* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7fff5;
  color: #17351f;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.navbar nav {
  display: flex;
  gap: 24px;
}

.navbar nav a {
  text-decoration: none;
  color: #24422b;
  font-weight: 600;
}

.navbar nav a:hover {
  color: #1d7a3b;
}

.nav-order,
.primary-btn,
.secondary-btn,
.offer-btn {
  text-decoration: none;
  border-radius: 40px;
  font-weight: 800;
  display: inline-block;
}

.nav-order,
.primary-btn,
.offer-btn {
  background: linear-gradient(135deg, #1d7a3b, #0d4c25);
  color: white;
  padding: 14px 24px;
  box-shadow: 0 12px 25px rgba(29, 122, 59, 0.25);
}

.secondary-btn {
  color: #174d27;
  border: 2px solid #174d27;
  padding: 12px 24px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  background:
    radial-gradient(circle at top left, #d8ffd5, transparent 35%),
    linear-gradient(135deg, #f7fff5, #eaffdf);
  overflow: hidden;
}

.hero-content {
  width: 52%;
}

.badge,
.section-tag {
  display: inline-block;
  background: #e1f8dd;
  color: #0d4c25 !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 66px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #123b1f;
}

.hero-text {
  font-size: 20px;
  line-height: 1.8;
  color: #45634c;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 42px;
}

.stats {
  display: flex;
  gap: 20px;
}

.stats div {
  background: white;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.stats h3 {
  color: #1d7a3b;
  font-size: 28px;
}

.stats p {
  color: #526b58;
  font-size: 14px;
}

.hero-product {
  width: 42%;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, #8fe89b, #e3ffd2);
  border-radius: 50%;
  position: absolute;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.7);
}

.bottle {
  width: 190px;
  height: 390px;
  background: linear-gradient(180deg, #ffffff, #e9ffe5);
  border-radius: 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 35px 70px rgba(0,0,0,0.22);
  animation: floatBottle 3s ease-in-out infinite;
}

@keyframes floatBottle {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.cap {
  width: 90px;
  height: 45px;
  background: #123b1f;
  border-radius: 16px 16px 6px 6px;
  margin: -35px auto 0;
}

.label {
  width: 145px;
  height: 190px;
  margin: 95px auto 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d7a3b, #0d4c25);
  color: white;
  text-align: center;
  padding-top: 38px;
}

.label h2 {
  font-size: 28px;
}

.label p {
  margin-top: 10px;
  color: #f5d68a;
  font-weight: bold;
}

.trust {
  background: #10391e;
  color: white;
  text-align: center;
  padding: 35px 8%;
}

.trust p {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-items span {
  background: rgba(255,255,255,0.12);
  padding: 12px 18px;
  border-radius: 30px;
}

.section {
  padding: 90px 8%;
  text-align: center;
}

.section h2,
.product-content h2,
.oil-content h2,
.how-to-use h2,
.offer h2 {
  font-size: 44px;
  color: #123b1f;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card,
.review,
.faq-box {
  background: white;
  padding: 34px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover,
.review:hover {
  transform: translateY(-8px);
}

.card span {
  font-size: 42px;
}

.card h3,
.review h3,
.faq-box h3 {
  color: #1d7a3b;
  margin: 18px 0 10px;
}

.card p,
.review p,
.faq-box p,
.product-content p,
.oil-content p {
  color: #5a705f;
  line-height: 1.7;
}

.product-section {
  padding: 90px 8%;
  display: flex;
  align-items: center;
  gap: 70px;
  background: linear-gradient(135deg, #10391e, #1d7a3b);
  color: white;
}

.product-image,
.product-content,
.oil-content,
.oil-image {
  flex: 1;
}

.product-image {
  display: flex;
  justify-content: center;
}

.mini-bottle{
    width:240px;
    height:380px;
    background:white;
    color:#1d7a3b;
    border-radius:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 35px 70px rgba(0,0,0,.3);
}

.mini-bottle div{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.mini-bottle span{
    font-size:24px;
    color:#c89b3c;
    font-weight:700;
}

.product-content h2 {
  color: white;
  margin-bottom: 24px;
}

.product-content p {
  color: #e9ffe5;
  font-size: 18px;
}

.product-content ul,
.oil-content ul {
  list-style: none;
  margin: 25px 0 35px;
}

.product-content li,
.oil-content li {
  margin-bottom: 14px;
  font-size: 18px;
}

.oil-section {
  padding: 90px 8%;
  display: flex;
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at top right, #e1f8dd, transparent 35%),
    linear-gradient(135deg, #f7fff5, #fffaf0);
}

.oil-content h2 {
  margin-bottom: 24px;
}

.oil-content p {
  font-size: 18px;
}

.oil-content li {
  color: #24422b;
}

.oil-image {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oil-glow {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #f5d68a, #e8ffd7);
  border-radius: 50%;
  position: absolute;
  box-shadow: inset 0 0 45px rgba(255,255,255,0.7);
}

.oil-bottle {
  width: 180px;
  height: 360px;
  background: linear-gradient(180deg, #3b220c, #8b5a22);
  border-radius: 36px 36px 70px 70px;
  position: relative;
  z-index: 2;
  box-shadow: 0 35px 70px rgba(0,0,0,0.25);
  animation: floatBottle 3s ease-in-out infinite;
}

.oil-cap {
  width: 80px;
  height: 42px;
  background: #123b1f;
  border-radius: 16px 16px 6px 6px;
  margin: -32px auto 0;
}

.oil-label {
  width: 135px;
  height: 175px;
  margin: 92px auto 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d7a3b, #0d4c25);
  color: white;
  text-align: center;
  padding-top: 34px;
}

.oil-label h2 {
  font-size: 28px;
}

.oil-label p {
  margin-top: 10px;
  color: #f5d68a;
  font-weight: bold;
  font-size: 14px;
}

.ingredients {
  background: #f1ffed;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ingredient-grid div {
  background: white;
  padding: 28px;
  border-radius: 24px;
  font-size: 22px;
  font-weight: 800;
  color: #1d7a3b;
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

.how-to-use {
  padding: 90px 8%;
  text-align: center;
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps div {
  background: #f7fff5;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.steps span {
  font-size: 34px;
  color: #c89b3c;
  font-weight: 900;
}

.steps h3 {
  margin: 18px 0 10px;
  color: #1d7a3b;
}

.steps p {
  color: #5a705f;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review h3 {
  color: #c89b3c;
}

.offer {
  text-align: center;
  padding: 90px 8%;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 30%),
    linear-gradient(135deg, #123b1f, #1d7a3b);
  color: white;
}

.offer h2 {
  color: white;
}

.price-box {
  background: rgba(255,255,255,0.12);
  max-width: 420px;
  margin: 0 auto 32px;
  border-radius: 30px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.old-price {
  text-decoration: line-through;
  font-size: 24px;
  opacity: 0.8;
}

.new-price {
  font-size: 58px;
  font-weight: 900;
  color: #f5d68a;
}

.price-box span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.faq {
  background: #f7fff5;
}

.faq-box {
  max-width: 850px;
  margin: 0 auto 18px;
}

footer {
  background: #0c2e18;
  color: white;
  text-align: center;
  padding: 45px 8%;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 10px;
  background: white;
  border-radius: 14px;
  padding: 6px;
}

footer p {
  margin-top: 10px;
  color: #d8eadc;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: white;
  padding: 15px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 2000;
}

@media (max-width: 992px) {
  .navbar nav {
    display: none;
  }

  .hero,
  .product-section,
  .oil-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-product {
    width: 100%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-buttons,
  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cards,
  .ingredient-grid,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 5%;
  }

  .logo img {
    height: 55px;
  }

  .nav-order {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero {
    padding: 55px 5%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section,
  .product-section,
  .oil-section,
  .how-to-use,
  .offer {
    padding: 65px 5%;
  }

  .section h2,
  .product-content h2,
  .oil-content h2,
  .how-to-use h2,
  .offer h2 {
    font-size: 32px;
  }

  .cards,
  .ingredient-grid,
  .reviews,
  .steps {
    grid-template-columns: 1fr;
  }

  .circle,
  .oil-glow {
    width: 300px;
    height: 300px;
  }

  .bottle {
    width: 150px;
    height: 320px;
  }

  .label {
    width: 120px;
    height: 155px;
    margin-top: 80px;
    padding-top: 30px;
  }

  .label h2 {
    font-size: 23px;
  }

  .oil-bottle {
    width: 150px;
    height: 310px;
  }

  .oil-label {
    width: 118px;
    height: 150px;
    margin-top: 78px;
    padding-top: 28px;
  }

  .oil-label h2 {
    font-size: 23px;
  }

  .new-price {
    font-size: 44px;
  }
}