@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-300.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-800.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../brand_assets/fonts/inter-900.woff2") format("woff2");
}
@font-face {
  font-family: "Encode Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../brand_assets/fonts/encode-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Encode Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../brand_assets/fonts/encode-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Encode Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../brand_assets/fonts/encode-sans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Encode Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../brand_assets/fonts/encode-sans-800.woff2") format("woff2");
}
@font-face {
  font-family: "Encode Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../brand_assets/fonts/encode-sans-900.woff2") format("woff2");
}
:root {
  --g900: #0D2406;
  --g800: #1A3A08;
  --g700: #2D5016;
  --g600: #5B872C;
  --g500: #83B94A;
  --g400: #A0D36C;
  --g300: #C5D8A8;
  --g200: #D4E3C0;
  --g100: #E1EBD6;
  --g50: #F0F5EB;
  --gray900: #1A1D16;
  --gray800: #1F2937;
  --gray700: #374151;
  --gray600: #4B5563;
  --gray500: #6B7280;
  --gray400: #8C9583;
  --gray300: #BEC4B8;
  --gray200: #E0E5DC;
  --gray100: #F5F5F5;
  --gray50: #F5F6F4;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Encode Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--gray900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.btn-primary {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--g600);
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--g700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91, 135, 44, 0.3);
}

.btn-ghost {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: var(--gray100);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.btn-lime {
  background: var(--g500);
  color: var(--white);
}
.btn-lime:hover {
  background: var(--g400);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.section {
  padding: 72px 28px 100px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.bg-light {
  background: var(--g50);
}

.bg-white {
  background: var(--white);
}

.bg-dark-green {
  background: #E3EBD8;
}
.bg-dark-green .sec-tag {
  color: var(--g600);
}
.bg-dark-green .sec-head h2 {
  color: var(--gray900);
}
.bg-dark-green .sec-head p {
  color: var(--gray700);
}
.bg-dark-green .step h3 {
  color: var(--gray900);
}
.bg-dark-green .step p {
  color: var(--gray700);
}
.bg-dark-green .step-num {
  background: var(--g600);
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(227, 235, 216, 0.9);
}
.bg-dark-green .steps::after {
  background: linear-gradient(90deg, var(--g300), var(--g400), var(--g300));
}
.bg-dark-green .about-text h2 {
  color: var(--gray900);
}
.bg-dark-green .about-text p {
  color: var(--gray700);
}
.bg-dark-green .about-text a {
  color: var(--g600);
}
.bg-dark-green .about-grid > div > p {
  color: var(--gray700) !important;
}
.bg-dark-green .about-highlights > p {
  color: var(--gray700) !important;
}

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}
.sec-head h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--gray900);
  margin-bottom: 16px;
  line-height: 1.12;
}
.sec-head p {
  font-size: 18px;
  color: var(--gray700);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g600);
  margin-bottom: 16px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--gray200);
  transition: all 0.3s ease;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g200);
}
.feat-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray900);
  margin-bottom: 12px;
}
.feat-card p {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.7;
}

.feat-icon {
  width: 54px;
  height: 54px;
  background: var(--g50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--g300), var(--g400), var(--g300));
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0.6s;
}
.steps.in::after {
  opacity: 1;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray900);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.65;
}

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--g600);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px var(--g50);
}

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

.sec-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--gray50);
  border-radius: 20px;
  border: 1px solid var(--gray200);
  transition: all 0.3s;
}
.sec-card:hover {
  background: var(--g50);
  border-color: var(--g200);
  transform: translateY(-3px);
}
.sec-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray900);
  margin-bottom: 8px;
}
.sec-card p {
  font-size: 13px;
  color: var(--gray700);
  line-height: 1.65;
}

.sec-ico {
  width: 64px;
  height: 64px;
  background: var(--g100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.cta-section {
  background: linear-gradient(140deg, #4A7A22 0%, #5B8A32 50%, #6B9A3A 100%);
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(160, 211, 108, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
}
.cta-section h2 {
  font-size: 50px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-section p {
  font-size: 18px;
  color: var(--g200);
  margin-bottom: 40px;
  line-height: 1.65;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray200);
  overflow: hidden;
}
.faq-item.open .faq-chev::before {
  content: "−";
}
.faq-item.open .faq-q h4 {
  color: var(--g600);
}
.faq-item.open .faq-a {
  max-height: 2000px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-q h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray900);
  flex: 1;
}

.faq-chev {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
}
.faq-chev svg {
  display: none;
}
.faq-chev::before {
  content: "+";
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  color: var(--g500);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 18px 26px 22px;
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.72;
  border-top: 1px solid var(--gray100);
}

@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::after {
    display: none;
  }
  .step {
    margin-bottom: 40px;
  }
  .sec-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 44px 20px 60px;
  }
  .sec-head {
    margin-bottom: 44px;
  }
  .sec-head h2 {
    font-size: 30px;
  }
  .sec-head p {
    font-size: 16px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feat-card {
    padding: 28px;
    border-radius: 18px;
  }
  .feat-card h3 {
    font-size: 18px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    text-align: left;
    padding: 0;
    margin-bottom: 0;
    position: relative;
  }
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 70px;
    bottom: 0;
    width: 2px;
    background: var(--g200);
    z-index: 0;
  }
  .step h3 {
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    padding-top: 18px;
    margin-bottom: 8px;
  }
  .step p {
    grid-row: 2;
    grid-column: 2;
    padding-bottom: 36px;
    font-size: 14px;
    align-self: start;
  }
  .step-num {
    grid-row: 1/span 2;
    grid-column: 1;
    align-self: start;
    margin: 0;
  }
  .prod-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .prod-card {
    padding: 28px;
    border-radius: 20px;
  }
  .prod-card h3 {
    font-size: 22px;
  }
  .prod-rate {
    font-size: 48px;
  }
  .prod-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  .sec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sec-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .sec-ico {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .sec-card h4 {
    font-size: 14px;
  }
  .sec-card p {
    font-size: 12px;
  }
  .cta-section {
    padding: 72px 20px;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .cta-section p {
    font-size: 16px;
  }
  .cta-btns {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .cta-btns .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .faq-q {
    padding: 18px 20px;
  }
  .faq-q h4 {
    font-size: 15px;
  }
  .faq-a-inner {
    padding: 16px 20px 18px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 36px 16px 52px;
  }
  .sec-grid {
    grid-template-columns: 1fr;
  }
  .prod-card {
    padding: 24px 20px;
  }
  .prod-rate {
    font-size: 42px;
  }
  .step {
    grid-template-columns: 56px 1fr;
  }
  .step-num {
    width: 56px;
    height: 56px;
    font-size: 20px;
    box-shadow: 0 0 0 8px var(--g50);
  }
  .step:not(:last-child)::before {
    left: 27px;
    top: 56px;
  }
}
