@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --green-dark: #076b2d;
  --green: #13a447;
  --green-light: #67cf6d;
  --lime: #e8ffd8;
  --orange: #ff7a00;
  --orange-dark: #e85f00;
  --yellow: #ffd84d;
  --cream: #fffdf5;
  --white: #ffffff;
  --text: #183126;
  --muted: #607168;
  --shadow: 0 24px 70px rgba(4, 83, 36, 0.16);
  --small-shadow: 0 12px 35px rgba(5, 75, 32, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 216, 77, 0.25), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(103, 207, 109, 0.24), transparent 28rem),
    var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Navigation */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 30px));
  transform: translateX(-50%);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    top 0.25s ease;
}

.navbar {
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(3, 77, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled {
  top: 8px;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 45px rgba(3, 77, 34, 0.16);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 48% 52%;
  display: grid;
  place-items: center;
  transform: rotate(-6deg);
  font-size: 1.55rem;
  background:
    radial-gradient(circle at 32% 28%, #ffd580 0 12%, transparent 13%),
    linear-gradient(145deg, #ffa72d, #f16300);
  box-shadow:
    inset -5px -7px 12px rgba(168, 61, 0, 0.19),
    0 7px 18px rgba(236, 103, 0, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}

.logo-text strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green-dark);
}

.logo-text span {
  margin-left: 2px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--orange-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  font-size: 0.91rem;
  font-weight: 700;
  color: #365244;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  border-radius: 10px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--orange);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-button {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 24px rgba(232, 95, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(232, 95, 0, 0.34);
}

.menu-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  display: none;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--green-dark);
  background: var(--lime);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 145px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hero::before {
  top: 100px;
  right: -160px;
  width: 530px;
  height: 530px;
  background: rgba(55, 190, 86, 0.13);
}

.hero::after {
  bottom: 5px;
  left: -200px;
  width: 480px;
  height: 480px;
  background: rgba(255, 133, 25, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 65px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(19, 164, 71, 0.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  text-transform: uppercase;
  background: rgba(232, 255, 216, 0.75);
}

.hero h1 {
  max-width: 690px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(3.6rem, 7.6vw, 7rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--green-dark);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-description {
  max-width: 590px;
  margin-top: 28px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 55px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 15px 32px rgba(232, 95, 0, 0.3);
}

.button-secondary {
  border: 2px solid rgba(7, 107, 45, 0.16);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
}

.hero-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #486055;
}

.hero-point-icon {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  color: var(--white);
  background: var(--green);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.poster-frame {
  position: relative;
  width: min(100%, 465px);
  padding: 13px;
  border-radius: 35px;
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.poster-frame:hover {
  transform: rotate(0deg) scale(1.015);
  box-shadow: 0 32px 90px rgba(4, 83, 36, 0.23);
}

.poster-frame img {
  width: 100%;
  border-radius: 25px;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.badge-one {
  top: 8%;
  left: -14%;
  color: var(--green-dark);
}

.badge-two {
  right: -15%;
  bottom: 13%;
  color: var(--orange-dark);
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* General sections */

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-label {
  margin-bottom: 13px;
  display: block;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange-dark);
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--green-dark);
}

.section-heading p {
  margin-top: 17px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Benefits */

.benefits {
  background: linear-gradient(180deg, transparent, rgba(232, 255, 216, 0.62), transparent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.benefit-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(7, 107, 45, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--small-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 55px rgba(5, 75, 32, 0.17);
}

.benefit-card::after {
  position: absolute;
  right: -35px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(103, 207, 109, 0.1);
}

.benefit-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: var(--lime);
}

.benefit-card:nth-child(2) .benefit-icon {
  background: #fff1d6;
}

.benefit-card:nth-child(3) .benefit-icon {
  background: #e9f4ff;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.55rem;
  color: var(--green-dark);
}

.benefit-card p {
  line-height: 1.72;
  color: var(--muted);
}

/* Product information */

.product-section {
  position: relative;
}

.product-layout {
  padding: 55px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 216, 77, 0.35), transparent 17rem),
    linear-gradient(135deg, #087a35, #13a447);
  box-shadow: var(--shadow);
}

.product-poster {
  position: relative;
}

.product-poster img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 45, 18, 0.28);
}

.product-content {
  color: var(--white);
}

.product-content .section-label {
  color: #d9ffbf;
}

.product-content h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.product-content > p {
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.ingredients {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.ingredient {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

.ingredient span {
  font-size: 1.3rem;
}

/* Price */

.price-card {
  margin-top: 30px;
  padding: 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 22px 45px rgba(0, 45, 18, 0.18);
}

.price-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  text-transform: uppercase;
}

.price {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
}

.price small {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

.offer {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.81rem;
  font-weight: 800;
  color: #8b4b00;
  background: #fff1b8;
}

/* Reviews */

.reviews {
  background: rgba(255, 255, 255, 0.58);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 29px;
  border: 1px solid rgba(7, 107, 45, 0.09);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--small-shadow);
  transition: transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-7px) rotate(-1deg);
}

.stars {
  margin-bottom: 17px;
  letter-spacing: 0.12em;
  color: #ffb000;
}

.review-card blockquote {
  min-height: 105px;
  font-size: 1rem;
  line-height: 1.7;
  color: #40584c;
}

.reviewer {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: var(--lime);
}

.reviewer strong {
  display: block;
  color: var(--green-dark);
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CTA */

.cta-section {
  padding-top: 85px;
  padding-bottom: 110px;
}

.cta-card {
  position: relative;
  padding: 75px 30px;
  border-radius: 42px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 216, 77, 0.28), transparent 15rem),
    radial-gradient(circle at 85% 70%, rgba(255, 153, 57, 0.24), transparent 17rem),
    linear-gradient(135deg, #075b28, #0c8e3d);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
}

.cta-card p {
  max-width: 590px;
  margin: 20px auto 28px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.cta-card .button {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 14px 35px rgba(0, 38, 15, 0.23);
}

/* Footer */

footer {
  padding: 35px 0;
  border-top: 1px solid rgba(7, 107, 45, 0.1);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-content p {
  font-size: 0.83rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* Scroll animation */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Purchase notification */

.toast {
  position: fixed;
  z-index: 2000;
  right: 25px;
  bottom: 25px;
  max-width: 340px;
  padding: 18px 20px;
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 18px 45px rgba(0, 49, 19, 0.3);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
}

/* Responsive */

@media (max-width: 920px) {
  .nav-links,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .navbar.open .nav-links {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    padding: 18px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--small-shadow);
  }

  .navbar.open .nav-links a {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    text-align: center;
    background: #f4fff0;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-points {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    margin-top: 35px;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    padding: 38px 25px;
  }

  .product-content {
    text-align: center;
  }

  .ingredients {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .price-card {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    width: calc(100% - 18px);
    top: 9px;
  }

  .navbar {
    min-height: 64px;
    border-radius: 20px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 1.22rem;
  }

  .hero {
    min-height: auto;
    padding-top: 115px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.5rem);
  }

  .poster-frame {
    transform: none;
  }

  .floating-badge {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .benefit-card {
    min-height: auto;
  }

  .ingredients {
    grid-template-columns: 1fr;
  }

  .price-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 60px 20px;
    border-radius: 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}