:root {
  --green: #74b816;
  --green-dark: #2f6f13;
  --forest: #071408;
  --forest-soft: #102410;
  --gold: #d8a637;
  --cream: #fbfaf4;
  --text: #172016;
  --muted: #64705f;
  --white: #ffffff;
  --line: rgba(116, 184, 22, .22);
  --shadow: 0 22px 60px rgba(2, 20, 5, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(116, 184, 22, .12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(216, 166, 55, .12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ed 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(23, 32, 22, .08);
  backdrop-filter: blur(16px);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .65s ease,
    transform .65s ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
}

.brand img {
  width: 126px;
  height: 54px;
  border-radius: 0;
  object-fit: contain;
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--forest);
  font-weight: 700;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary,
.nav-cta {
  color: #071408;
  background: linear-gradient(135deg, #8ad01d, #d5ed56);
  box-shadow: 0 14px 34px rgba(116, 184, 22, .3);
}

.btn-outline {
  color: var(--green-dark);
  border-color: rgba(47, 111, 19, .2);
  background: rgba(255, 255, 255, .72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 32, 22, .18);
  border-radius: 12px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
}

.mobile-only {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: auto;
  padding: 30px 0 46px;
  color: var(--forest);
  background: #fffdf6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(116, 184, 22, .14), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(216, 166, 55, .14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f3f8eb 70%, #eaf5df);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  grid-template-areas:
    "copy card"
    "lower card";
  gap: 54px;
  row-gap: 0;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
}

.hero-lower {
  grid-area: lower;
}

.eyebrow {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(116, 184, 22, .28);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
  font-size: 13px;
}

.hero-card {
  grid-area: card;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(116, 184, 22, .2);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rating-card {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  width: min(230px, calc(100% - 32px));
  padding: 12px 14px;
  border-radius: 14px;
  color: #071408;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(116, 184, 22, .2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  backdrop-filter: blur(10px);
}

.rating-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.rating-card span {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 10px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.proof-copy h2 {
  margin: 10px 0 12px;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.section-heading p,
.about-copy p,
.proof-copy p {
  color: var(--muted);
  font-size: 18px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 288px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(23, 32, 22, .08);
  box-shadow: 0 18px 40px rgba(23, 32, 22, .08);
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -22px;
  top: -22px;
  border-radius: 50%;
  background: rgba(116, 184, 22, .14);
}

.product-number {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.product-card small {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 28px;
  color: var(--forest);
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

.proof-section {
  color: var(--forest);
  background: linear-gradient(135deg, #eef8e5, #ffffff);
  border-top: 1px solid rgba(116, 184, 22, .18);
  border-bottom: 1px solid rgba(116, 184, 22, .18);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.proof-copy h2 {
  color: var(--forest);
}

.proof-copy p {
  color: var(--muted);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-metrics div {
  min-height: 170px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(116, 184, 22, .2);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 32, 22, .06);
}

.proof-metrics strong {
  display: block;
  color: var(--green);
  font-size: 44px;
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 500px) 1fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  color: var(--forest);
  background: rgba(116, 184, 22, .16);
  font-weight: 900;
}

.care-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ed 100%);
}

.care-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.care-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 230px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(116, 184, 22, .16);
  box-shadow: 0 18px 42px rgba(23, 32, 22, .07);
  overflow: hidden;
}

.care-card-large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.care-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.care-card-large img {
  min-height: 390px;
}

.care-card small {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.care-card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

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

.faq-section {
  background: #fdfcf6;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(23, 32, 22, .08);
  box-shadow: 0 14px 34px rgba(23, 32, 22, .06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--forest);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.page-hero {
  padding: 96px 0 74px;
  color: var(--forest);
  background:
    radial-gradient(circle at 90% 10%, rgba(116, 184, 22, .14), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef8e5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  color: var(--forest);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 0;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: #050d06;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 36px;
  padding: 58px 0;
}

.footer-logo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--white);
}

.site-footer h3 {
  color: var(--white);
  margin-top: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom a {
  color: var(--green);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071408;
  background: #8ad01d;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(7, 20, 8, .24);
}

@media (max-width: 980px) {
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .mobile-only {
    display: inline-flex;
  }

  .hero-grid,
  .proof-grid,
  .about-grid,
  .care-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .care-card,
  .care-card-large {
    display: block;
    grid-row: auto;
    padding: 12px;
  }

  .care-card > div {
    padding: 18px 4px 4px;
  }

  .care-card-large img {
    min-height: 260px;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "card"
      "lower";
    gap: 24px;
  }

  .products-grid,
  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 30px 0 38px;
  }

  .section,
  .page-hero {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-actions .btn {
    flex: 1 1 160px;
  }

  .trust-row {
    margin-top: 18px;
  }

  .hero-card {
    border-radius: 14px;
  }

  .hero-card img {
    aspect-ratio: 4 / 3;
  }

  .products-grid,
  .proof-metrics,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .care-card {
    min-height: 0;
  }

  .care-card img {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .care-section .section-heading h2 {
    font-size: 34px;
  }

  .care-section .section-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .care-card h3 {
    font-size: 26px;
  }

  .care-card p {
    font-size: 17px;
    line-height: 1.55;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
