:root {
  --green-dark: #173f2f;
  --green-main: #2f6b4f;
  --green-soft: #eaf4ee;
  --earth: #c89b6d;
  --earth-dark: #b78655;
  --beige: #f6f1e8;
  --white: #ffffff;
  --text: #1b1b1b;
  --muted: #62706a;
  --border: #dce7e0;
  --shadow: 0 12px 32px rgba(23, 63, 47, 0.10);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.04);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: all 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--beige);
}

.section-light {
  background: #f8fbf9;
}

.eyebrow {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.hero h1,
.audience-card h2,
.model-content h2,
.contact-info h2,
.faq-intro h2,
.cta-wrap h2 {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  color: var(--green-dark);
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.section-heading p,
.hero-text,
.audience-card p,
.model-content p,
.contact-info p,
.faq-intro p,
.cta-wrap p {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #102c21;
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--green-dark);
}

.btn-earth {
  background: var(--earth);
  color: var(--white);
}

.btn-earth:hover {
  background: var(--earth-dark);
}

.btn-full {
  width: 100%;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: "Poppins", sans-serif;
  color: var(--green-dark);
  font-size: 1rem;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 1.7rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 109, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(47, 107, 79, 0.12), transparent 30%),
    linear-gradient(180deg, #fcfdfc 0%, #f8fbf9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 82px);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 63, 47, 0.08);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.hero-image {
  height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(23, 63, 47, 0.18), rgba(23, 63, 47, 0.10)),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 63, 47, 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 230px;
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-a {
  top: 24px;
  right: -24px;
}

.card-b {
  left: -28px;
  bottom: 96px;
}

.card-c {
  right: 18px;
  bottom: -16px;
}

/* STATS */
.stats-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 22px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-box h3 {
  font-family: "Poppins", sans-serif;
  color: var(--green-dark);
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-box p {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

/* PROBLEM */
.problem-grid,
.solution-grid,
.impact-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
}

.problem-grid {
  grid-template-columns: repeat(2, 1fr);
}

.problem-card,
.solution-card,
.impact-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.problem-card h3,
.solution-card h3,
.impact-card h3,
.testimonial-card strong,
.timeline-item h3,
.audience-card h2 {
  color: var(--green-dark);
}

.problem-card h3,
.solution-card h3,
.impact-card h3,
.timeline-item h3,
.audience-card h2 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}

.problem-card ul,
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.problem-card li,
.check-list li {
  color: var(--muted);
  font-weight: 500;
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}

/* SOLUTION */
.solution-grid {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card p,
.impact-card p,
.testimonial-card p {
  color: var(--muted);
}

/* TIMELINE */
.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.timeline-item p {
  color: var(--muted);
}

/* DUAL CARDS */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.audience-card {
  background: var(--white);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.audience-image {
  height: 240px;
  border-radius: 20px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.producer-image {
  background-image:
    linear-gradient(rgba(23, 63, 47, 0.12), rgba(23, 63, 47, 0.12)),
    url("https://images.unsplash.com/photo-1592982537447-7440770cbfc9?auto=format&fit=crop&w=1200&q=80");
}

.distributor-image {
  background-image:
    linear-gradient(rgba(23, 63, 47, 0.12), rgba(23, 63, 47, 0.12)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80");
}

.audience-card p {
  margin-bottom: 18px;
}

/* MODEL */
.model-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow);
}

.model-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.model-content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-card span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

/* IMPACT */
.impact-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* TESTIMONIALS */
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  border: 0;
  background: var(--white);
  padding: 20px 22px;
  text-align: left;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.4rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* CTA */
.cta-band {
  background: var(--beige);
  padding: 42px 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-wrap h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-wrap p {
  max-width: 760px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  background: var(--green-dark);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}

.contact-boxes {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
}

.contact-box strong {
  display: block;
  margin-bottom: 4px;
}

.contact-box span {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(23, 63, 47, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--green-dark);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.10);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

/* FOOTER */
.footer {
  background: #10291f;
  color: rgba(255, 255, 255, 0.88);
  padding: 34px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-wrap strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-wrap p {
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fff;
}

/* FLOAT */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .faq-layout,
  .contact-grid,
  .problem-grid,
  .dual-grid,
  .cta-wrap,
  .stats-grid,
  .model-cards,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 420px;
  }

  .card-a,
  .card-b,
  .card-c {
    position: static;
    margin-top: 14px;
  }

  .hero-panel {
    display: grid;
    gap: 14px;
  }

  .cta-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    gap: 16px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 10px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 74px 0;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .audience-card h2,
  .faq-intro h2,
  .contact-info h2 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-card,
  .solution-card,
  .impact-card,
  .testimonial-card,
  .timeline-item,
  .audience-card,
  .model-box,
  .contact-info,
  .contact-form-wrap {
    padding: 22px;
  }

  .hero-image {
    height: 320px;
  }
}