:root {
  --green-900: #0f5d39;
  --green-800: #157347;
  --green-700: #1f8c57;
  --green-100: #eaf8ef;
  --green-50: #f6fdf8;
  --white: #ffffff;
  --text: #173227;
  --muted: #587464;
  --shadow: 0 20px 60px rgba(15, 93, 57, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  color: var(--white);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.topbar-text,
.topbar-link {
  font-size: 0.95rem;
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 24px;
  background:
    radial-gradient(circle at top left, rgba(31, 140, 87, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(31, 140, 87, 0.1), transparent 28%),
    linear-gradient(180deg, var(--green-50), var(--white));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--green-100);
  color: var(--green-900);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(15, 93, 57, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid rgba(15, 93, 57, 0.14);
  box-shadow: var(--shadow);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 500;
}

.hero-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-700);
}

.hero-card {
  background: var(--white);
  border: 1px solid rgba(15, 93, 57, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-wrap {
  padding: 18px;
  background: linear-gradient(180deg, #effaf3, #ffffff);
}

.logo-wrap img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.hero-card-content {
  padding: 0 24px 26px;
  text-align: center;
}

.hero-card-content h2 {
  margin: 6px 0 8px;
  font-size: 2rem;
  color: var(--green-900);
}

.hero-card-content p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 36px 0 42px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head.centered {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.section-head h2 {
  margin: 16px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.products {
  background: var(--green-50);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card,
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 93, 57, 0.08);
}

.product-card.featured {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f0fbf4);
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.product-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.product-subtitle,
.info-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.price-stack {
  display: grid;
  gap: 12px;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--green-50);
  border: 1px solid rgba(15, 93, 57, 0.08);
}

.price-line.single {
  margin-top: 20px;
}

.price-line span {
  color: var(--muted);
  font-weight: 500;
}

.price-line strong {
  color: var(--green-900);
  font-size: 1.25rem;
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  box-shadow: var(--shadow);
}

.banner-box h2 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer {
  padding: 30px 0;
  background: #0d2f1f;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer h3 {
  margin: 0 0 8px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero-grid,
  .products-grid,
  .info-grid,
  .footer-inner,
  .banner-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-inner,
  .banner-box {
    gap: 16px;
  }

  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
  }

  .product-card,
  .info-card,
  .banner-box {
    padding: 22px;
  }

  .hero-copy p,
  .section-head p,
  .info-card p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }
}
