:root {
  --forest: #174c35;
  --forest-2: #0e3926;
  --forest-soft: #276245;
  --leaf: #59a83f;
  --leaf-2: #83c768;
  --leaf-light: #dff1d8;
  --mint: #edf7ea;
  --cream: #fbfcf7;
  --cream-2: #f5f8ef;
  --gold: #d6a63a;
  --gold-light: #fff0c4;
  --ink: #17231d;
  --muted: #607068;
  --line: #dce8df;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(23, 76, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(23, 76, 53, 0.15);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--forest);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--leaf);
  border-radius: 99px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  max-width: 760px;
}

.highlight {
  color: var(--forest);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(23, 76, 53, 0.2);
}

.btn-primary:hover {
  background: var(--forest-2);
}

.btn-light {
  color: var(--forest);
  background: white;
  border-color: var(--line);
}

.btn-light:hover {
  border-color: var(--leaf);
}

.btn-gold {
  color: #2d2410;
  background: #f5d985;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.announcement {
  background: var(--forest-2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.announcement .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement strong {
  color: white;
}

.announcement a {
  color: #dff3d7;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 247, 0.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 223, 0.78);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow-sm);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text b {
  font-size: 1.16rem;
}

.brand-text small {
  font-size: 0.63rem;
  color: var(--muted);
  font-weight: 800;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  font-weight: 700;
  color: #35453d;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--leaf);
  transition: 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(131, 199, 104, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 25%,
      rgba(214, 166, 58, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #fbfcf7 0%, #eef8ea 54%, #f8fff3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 76, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 76, 53, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 86px 0 76px;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1 span {
  color: var(--forest);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #31423a;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.badge svg {
  width: 17px;
  height: 17px;
  color: var(--leaf);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  inset: -90px 0 auto auto;
  width: min(500px, 100%);
  min-height: 480px;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.64),
      rgba(255, 255, 255, 0.28)
    ),
    linear-gradient(180deg, #d7f0ca, #f4faf1 48%, #dff0d5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.visual-card::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 30%;
  background:
    linear-gradient(
      115deg,
      transparent 0 12%,
      rgba(23, 76, 53, 0.13) 12% 14%,
      transparent 14% 26%,
      rgba(23, 76, 53, 0.13) 26% 28%,
      transparent 28% 40%,
      rgba(23, 76, 53, 0.13) 40% 42%,
      transparent 42% 54%,
      rgba(23, 76, 53, 0.13) 54% 56%,
      transparent 56% 68%,
      rgba(23, 76, 53, 0.13) 68% 70%,
      transparent 70% 100%
    ),
    linear-gradient(180deg, #cceebc, #78b95a);
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
}

.visual-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -45px;
  top: -45px;
  border-radius: 50%;
  background: rgba(255, 224, 139, 0.65);
  box-shadow: 0 0 80px rgba(255, 224, 139, 0.45);
}


.hero-visual.mobile {
  display: none;
}
.hero-visual.mobile .visual-card{
  position: relative;
      inset: unset;
}

.hero-visual.mobile .visual-card::after {

  width: 160px;
  height: 160px;
  right: -35px;
  top: -35px;

}
.farmer-figure {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 330px;
  z-index: 2;
}

.farmer-figure .head {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #e7b57d;
  box-shadow: inset 0 -12px 0 rgba(82, 44, 24, 0.08);
}

.farmer-figure .hair {
  position: absolute;
  left: 74px;
  top: 9px;
  width: 112px;
  height: 54px;
  border-radius: 50px 50px 22px 22px;
  background: #fff;
  transform: rotate(-5deg);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.72);
}

.farmer-figure .body {
  position: absolute;
  left: 49px;
  top: 114px;
  width: 162px;
  height: 164px;
  border-radius: 38px 38px 24px 24px;
  background: linear-gradient(180deg, #ffffff, #edf2e9);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.farmer-figure .arm-left,
.farmer-figure .arm-right {
  position: absolute;
  top: 150px;
  width: 42px;
  height: 118px;
  border-radius: 24px;
  background: #e7b57d;
}

.farmer-figure .arm-left {
  left: 35px;
  transform: rotate(24deg);
}

.farmer-figure .arm-right {
  right: 35px;
  transform: rotate(-24deg);
}

.farmer-figure .leg-left,
.farmer-figure .leg-right {
  position: absolute;
  top: 268px;
  width: 56px;
  height: 76px;
  border-radius: 0 0 20px 20px;
  background: #47604d;
}

.farmer-figure .leg-left {
  left: 70px;
}

.farmer-figure .leg-right {
  right: 70px;
}

.seedling {
  position: absolute;
  left: 54px;
  bottom: 70px;
  width: 80px;
  height: 96px;
  z-index: 4;
}

.seedling::before {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 0;
  width: 5px;
  height: 84px;
  background: var(--forest);
  border-radius: 999px;
}

.seedling span {
  position: absolute;
  width: 42px;
  height: 22px;
  background: var(--leaf);
  border-radius: 42px 42px 0 42px;
}

.seedling span:nth-child(1) {
  left: 41px;
  top: 18px;
  transform: rotate(-20deg);
}

.seedling span:nth-child(2) {
  left: 0;
  top: 40px;
  transform: rotate(190deg);
}

.seedling span:nth-child(3) {
  left: 43px;
  top: 58px;
  transform: rotate(4deg);
}

.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.float-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 8px;
}

.float-card.top {
  top: 54px;
  left: 0;
}

.float-card.bottom {
  right: 0;
  bottom: 46px;
}

.stats-wrap {
  margin-top: -64px;
  position: relative;
  z-index: 3;
}

.stats-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f2f8ef);
  border: 1px solid var(--line);
}

.stat strong {
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
  margin-top: 10px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.content-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 38px;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--leaf-light);
  color: var(--forest);
  font-weight: 900;
  margin-top: 1px;
}

.mini-item strong {
  display: block;
  margin-bottom: 2px;
}

.mini-item span {
  color: var(--muted);
}

.vision-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(245, 217, 133, 0.42),
      transparent 34%
    ),
    linear-gradient(135deg, var(--forest), var(--forest-2));
  color: white;
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}

.vision-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 44px solid rgba(255, 255, 255, 0.08);
}

.vision-card .eyebrow {
  color: #e2f3dc;
}

.vision-card .eyebrow::before {
  background: var(--gold);
}

.vision-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.vision-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
}

.vision-icon svg {
  width: 38px;
  height: 38px;
}

.model-section {
  position: relative;
  background: linear-gradient(180deg, #f2faef, #fbfcf7);
  overflow: hidden;
}

.model-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -270px;
  top: 80px;
  border-radius: 50%;
  background: rgba(89, 168, 63, 0.09);
  pointer-events: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head .lead {
  margin-bottom: 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.model-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 270px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--forest);
  margin-bottom: 22px;
}

.icon-box svg {
  width: 30px;
  height: 30px;
}

.model-card h3 {
  margin-bottom: 12px;
}

.model-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}

.journey-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px;
  border-radius: 20px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 2px;
}

.step span {
  color: var(--muted);
}

.impact-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(214, 166, 58, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #ffffff 0%, #eff8eb 100%);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.impact-panel::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 220px;
  right: -90px;
  bottom: -70px;
  background:
    linear-gradient(
      120deg,
      transparent 0 16%,
      rgba(23, 76, 53, 0.12) 16% 18%,
      transparent 18% 31%,
      rgba(23, 76, 53, 0.12) 31% 33%,
      transparent 33% 46%,
      rgba(23, 76, 53, 0.12) 46% 48%,
      transparent 48% 100%
    ),
    linear-gradient(180deg, #d7efca, #73b455);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  border-radius: 34px 0 0 0;
}

.impact-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.quote {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 232, 223, 0.86);
}

.quote p {
  font-size: 1.08rem;
  color: #32433b;
  margin-bottom: 18px;
}

.quote strong {
  color: var(--forest);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 54px;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(245, 217, 133, 0.26),
      transparent 32%
    ),
    linear-gradient(135deg, var(--forest), var(--forest-2));
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 44px solid rgba(255, 255, 255, 0.07);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta-band .eyebrow {
  color: #e2f3dc;
}

.cta-band .eyebrow::before {
  background: var(--gold);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.site-footer {
  background: var(--forest-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.13); */
}

.footer-brand .brand-mark {
  background: white;
  color: var(--forest);
  box-shadow: none;
}

.footer-brand .brand-text b {
  color: white;
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
  margin: 22px 0 0;
  max-width: 330px;
}

.footer-col h4 {
  color: white;
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact span,
.footer-contact a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.86);
}

body.page-contact {
  --forest: #174c35;
  --forest-2: #0e3926;
  --forest-soft: #276245;
  --leaf: #59a83f;
  --leaf-2: #83c768;
  --leaf-light: #dff1d8;
  --mint: #edf7ea;
  --cream: #fbfcf7;
  --cream-2: #f5f8ef;
  --gold: #d6a63a;
  --gold-light: #fff0c4;
  --ink: #17231d;
  --muted: #607068;
  --line: #dce8df;
  --white: #ffffff;
  --danger: #b64242;
  --shadow-sm: 0 10px 30px rgba(23, 76, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(23, 76, 53, 0.15);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-contact .container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-contact .section {
  padding: 94px 0;
  position: relative;
}

.section.compact {
  padding: 72px 0;
}

.page-contact .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  border: 1px solid var(--line);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-contact .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(89, 168, 63, 0.14);
}

.page-contact h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.65rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--ink);
  max-width: 840px;
}

.page-contact h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.page-contact h3 {
  font-size: 1.23rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

p {
  color: var(--muted);
}

.page-contact .lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 710px;
  color: #4c5d54;
}

.page-contact .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 14px 28px rgba(23, 76, 53, 0.18);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--forest-2);
  box-shadow: 0 18px 36px rgba(23, 76, 53, 0.24);
}

.btn.secondary {
  background: white;
  color: var(--forest);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 76, 53, 0.28);
}

.btn.full {
  width: 100%;
}

.page-contact .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 247, 0.88);
  border-bottom: 1px solid rgba(220, 232, 223, 0.72);
}

.page-contact .nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Contact nav overrides removed for header consistency */

.nav-links a:hover,
.nav-links a.active {
  /* background: var(--mint); */
  color: var(--forest);
}

.page-contact .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}



.page-contact .hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 18%,
      rgba(131, 199, 104, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 22%,
      rgba(214, 166, 58, 0.17),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7fbf1 55%, #e9f5e4 100%);
  border-bottom: 1px solid var(--line);
}

.page-contact .hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -40% -8%;
  height: 300px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 76px 0 90px;
}

.hero-copy .lead {
  margin-bottom: 30px;
}

.page-contact .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  color: #43534b;
  font-size: 0.9rem;
  font-weight: 780;
  box-shadow: var(--shadow-sm);
}

.note-pill i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf-light);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.78rem;
}

.contact-hero-card {
  position: relative;
  min-height: 440px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(23, 76, 53, 0.92), rgba(39, 98, 69, 0.86)),
    linear-gradient(135deg, #ecf7e8, #ffffff);
  box-shadow: var(--shadow-lg);
  color: white;
  padding: 32px;
  isolation: isolate;
}

.contact-hero-card::before,
.contact-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.8;
  z-index: -1;
}

.contact-hero-card::before {
  width: 250px;
  height: 250px;
  background: rgba(131, 199, 104, 0.28);
  right: -70px;
  top: -70px;
}

.contact-hero-card::after {
  width: 200px;
  height: 200px;
  background: rgba(214, 166, 58, 0.22);
  left: -70px;
  bottom: -70px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 820;
  font-size: 0.85rem;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-2);
  box-shadow: 0 0 0 5px rgba(131, 199, 104, 0.18);
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  place-items: center;
}

.hero-icon svg {
  width: 38px;
  height: 38px;
}

.contact-hero-card h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}

.contact-hero-card p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
}

.mini-contact-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.mini-contact-list a,
.mini-contact-list span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 780;
}

.mini-contact-list i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.contact-strip {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 10px;
  transition: 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-card h3 {
  margin-bottom: 0;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-weight: 680;
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--forest);
}

.page-contact .section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-main {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.panel.deep {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(131, 199, 104, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, white, #f8fbf4);
}

.panel h3 {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.office-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.office-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(251, 252, 247, 0.8);
  display: grid;
  gap: 10px;
}

.office-card strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.office-card p {
  margin: 0;
}

.office-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.office-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 820;
}

.quick-help {
  margin-top: 20px;
  display: grid;
  gap: 13px;
}

.help-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border-radius: 18px;
  background: var(--mint);
  border: 1px solid var(--line);
}

.help-row i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: white;
  color: var(--forest);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.help-row strong {
  display: block;
  margin-bottom: 3px;
}

.help-row span {
  color: var(--muted);
  font-size: 0.93rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 820;
  color: #35463e;
  font-size: 0.92rem;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfdf9;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: 0.18s ease;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(23, 76, 53, 0.45);
  box-shadow: 0 0 0 4px rgba(89, 168, 63, 0.16);
  background: white;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-alert {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 780;
}

.form-alert.success {
  background: #e8f7df;
  color: var(--forest);
  border: 1px solid #cceaba;
}

.form-alert.error {
  background: #fff0ee;
  color: var(--danger);
  border: 1px solid #ffd4cf;
}

.support-section {
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(214, 166, 58, 0.15),
      transparent 22%
    ),
    radial-gradient(
      circle at 90% 0%,
      rgba(131, 199, 104, 0.2),
      transparent 30%
    ),
    var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  min-height: 210px;
  box-shadow: var(--shadow-sm);
}

.support-card .contact-icon {
  margin-bottom: 16px;
}

.support-card p {
  margin-bottom: 0;
}

.map-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  min-height: 410px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-visual {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(23, 76, 53, 0.86), rgba(39, 98, 69, 0.78)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.11) 0 1px,
      transparent 1px 18px
    );
  display: grid;
  place-items: center;
  padding: 34px;
  color: white;
  overflow: hidden;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.map-visual::before {
  width: 330px;
  height: 330px;
}

.map-visual::after {
  width: 210px;
  height: 210px;
}

.pin-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 360px);
}

.pin-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.pin-item i {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.pin-item strong {
  color: white;
  display: block;
}

.pin-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.map-copy {
  padding: 34px;
  display: grid;
  align-content: center;
}

.map-copy p {
  margin-bottom: 24px;
}

.page-contact .cta-band {
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(214, 166, 58, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, var(--forest), #256243);
  color: white;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: white;
  margin: 0 0 10px;
}

.page-contact .cta-band p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
  margin: 0;
}

.cta-band .btn.secondary {
  background: white;
  color: var(--forest);
  border-color: transparent;
}


body.page-homepage {
  --forest: #174c35;
  --forest-2: #0e3926;
  --leaf: #59a83f;
  --leaf-light: #dff1d8;
  --mint: #edf7ea;
  --cream: #fbfcf7;
  --gold: #d6a63a;
  --ink: #17231d;
  --muted: #607068;
  --line: #dce8df;
  --white: #ffffff;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(23, 76, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(23, 76, 53, 0.15);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

.page-homepage .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-homepage h1 {
  font-size: clamp(2.65rem, 5.3vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}

.page-homepage h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.page-homepage .btn {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.page-homepage .announcement a {
  color: #dff3d7;
  font-weight: 700;
}

.page-homepage .brand-text small {
  font-size: 0.63rem;
  color: var(--muted);
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* Homepage nav overrides removed for header consistency */
.page-homepage .hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(191, 226, 165, 0.66),
      transparent 29%
    ),
    radial-gradient(
      circle at 9% 16%,
      rgba(255, 255, 255, 0.9),
      transparent 28%
    ),
    linear-gradient(135deg, #f8fbf2 0%, #eef7e9 58%, #e4f2da 100%);
}

.page-homepage .hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -280px -8%;
  height: 390px;
  border-radius: 50% 50% 0 0;
  background: white;
  transform: rotate(-2deg);
}

.page-homepage .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0 150px;
}

.page-homepage .hero-copy .lead {
  max-width: 680px;
}

.hero-copy .highlight {
  color: var(--forest);
  position: relative;
  white-space: nowrap;
}

.hero-copy .highlight::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 96%;
  height: 12px;
  border-radius: 99px;
  background: rgba(89, 168, 63, 0.18);
  z-index: -1;
}

.page-homepage .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 31px 0 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  color: #405248;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: var(--leaf);
  box-shadow: var(--shadow-sm);
  font-style: normal;
}

.farm-card {
  position: absolute;
  inset: 18px 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: linear-gradient(
    180deg,
    #cbe8f3 0 41%,
    #e9ce67 41% 58%,
    #75a346 58% 100%
  );
  box-shadow: var(--shadow-lg);
}

.farm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(11, 48, 31, 0.12));
  pointer-events: none;
}

.sun {
  position: absolute;
  width: 96px;
  height: 96px;
  right: 60px;
  top: 52px;
  border-radius: 50%;
  background: rgba(255, 244, 179, 0.9);
  box-shadow: 0 0 50px rgba(255, 238, 144, 0.8);
}

.cloud {
  position: absolute;
  width: 108px;
  height: 30px;
  top: 96px;
  left: 52px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  width: 52px;
  height: 52px;
  left: 16px;
}

.cloud::after {
  width: 42px;
  height: 42px;
  right: 10px;
}

.hill {
  position: absolute;
  bottom: 178px;
  width: 76%;
  height: 100px;
  border-radius: 50% 50% 0 0;
  background: #70934b;
  transform: rotate(-3deg);
}

.hill.two {
  left: 38%;
  width: 78%;
  bottom: 170px;
  background: #5e853f;
  transform: rotate(4deg);
}

.field-line {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 10px;
  border-radius: 50%;
  border-top: 4px solid rgba(255, 255, 255, 0.32);
  transform: rotate(-7deg);
}

.field-line.f1 {
  bottom: 132px;
}

.field-line.f2 {
  bottom: 91px;
}

.field-line.f3 {
  bottom: 50px;
}

.tree {
  position: absolute;
  bottom: 164px;
  left: 70px;
  width: 12px;
  height: 70px;
  border-radius: 9px;
  background: #5a3c24;
  z-index: 3;
}

.tree::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 48% 52% 46% 54%;
  background: #367034;
  left: -31px;
  top: -38px;
  box-shadow:
    35px 7px 0 #3f7e39,
    -22px 11px 0 #4b8843;
}

.farmer {
  position: absolute;
  right: 58px;
  bottom: 62px;
  width: 155px;
  height: 260px;
  z-index: 4;
}

.farmer .head {
  position: absolute;
  width: 72px;
  height: 78px;
  left: 41px;
  top: 2px;
  border-radius: 48% 48% 44% 44%;
  background: #b67549;
}

.farmer .hat {
  position: absolute;
  width: 112px;
  height: 26px;
  left: 20px;
  top: -7px;
  border-radius: 50%;
  background: #efe4c5;
  box-shadow: inset 0 -7px 0 #d6c495;
}

.farmer .body {
  position: absolute;
  width: 125px;
  height: 150px;
  left: 15px;
  top: 73px;
  border-radius: 40px 40px 20px 20px;
  background: #f8f4e9;
  transform: rotate(-2deg);
}

.farmer .leg {
  position: absolute;
  width: 40px;
  height: 86px;
  bottom: 0;
  background: #224739;
  border-radius: 8px;
}

.farmer .leg.l {
  left: 33px;
  transform: rotate(4deg);
}

.farmer .leg.r {
  right: 27px;
  transform: rotate(-5deg);
}

.farmer .arm {
  position: absolute;
  width: 30px;
  height: 112px;
  top: 92px;
  background: #b67549;
  border-radius: 20px;
}

.farmer .arm.l {
  left: 10px;
  transform: rotate(18deg);
}

.farmer .arm.r {
  right: 5px;
  transform: rotate(-21deg);
}

.badge-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-card.top {
  right: -18px;
  top: 88px;
}

.badge-card.bottom {
  left: 0;
  bottom: 44px;
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--mint);
  color: var(--forest);
  display: grid;
  place-items: center;
}

.badge-card b {
  display: block;
  font-size: 0.96rem;
}

.badge-card small {
  color: var(--muted);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -80px;
}

.page-homepage .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.trust-item {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
}

.trust-item b {
  display: block;
  font-size: 1.04rem;
}

.trust-item small {
  color: var(--muted);
}

.page-homepage .intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.intro-card {
  position: sticky;
  top: 116px;
  border-radius: 28px;
  padding: 34px;
  color: white;
  background: linear-gradient(145deg, var(--forest), var(--forest-2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.intro-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -100px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-card h3 {
  font-size: 1.55rem;
}

.intro-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  align-items: start;
  padding: 23px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: var(--mint);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.feature h3 {
  margin: 1px 0 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.investments {
  background: #f1f7ed;
  position: relative;
  overflow: hidden;
}

.investments::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(89, 168, 63, 0.08);
  right: -240px;
  top: -250px;
}

.page-homepage .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.section-head > div {
  max-width: 760px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.option-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(220, 232, 223, 0.9);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
  overflow: hidden;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.option-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--mint);
  right: -55px;
  top: -55px;
}

.option-img {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #f5f8f3;
  margin-bottom: 28px;
}

.option-img img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.option-card h3 {
  font-size: 1.5rem;
  margin-bottom: 11px;
}

.option-card p {
  color: var(--muted);
  min-height: 78px;
}

.option-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
}

.beneficiary {
  background: white;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.form-aside {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #eff7e9, #e1f1d6);
  border: 1px solid #d5e6cf;
  position: sticky;
  top: 116px;
}

.form-aside h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #415148;
}

.check-list span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  background: white;
  color: var(--leaf);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.registration-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 42px);
}

.form-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-title h3 {
  font-size: 1.55rem;
  margin-bottom: 5px;
}

.form-title p {
  color: var(--muted);
  margin-bottom: 0;
}

.form-badge {
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 900;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field label,
fieldset legend {
  font-weight: 800;
  color: #27362e;
  font-size: 0.92rem;
}

.req {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  min-height: 51px;
  border: 1px solid #cfddd3;
  border-radius: 14px;
  background: white;
  padding: 12px 14px;
  outline: none;
  transition: 0.2s ease;
  color: var(--ink);
}

textarea {
  min-height: 105px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(89, 168, 63, 0.12);
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 11px;
}

.choice,
.binary-choice {
  position: relative;
}

.choice input,
.binary-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  height: 100%;
  display: block;
  padding: 18px;
  border: 1px solid #cfddd3;
  border-radius: 17px;
  background: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.choice label strong {
  display: block;
  margin-bottom: 4px;
}

.choice label small {
  color: var(--muted);
}

.choice input:checked + label,
.binary-choice input:checked + label {
  border-color: var(--leaf);
  background: var(--mint);
  box-shadow: inset 0 0 0 1px var(--leaf);
}

.question-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.question-box > label {
  display: block;
  font-weight: 800;
  margin-bottom: 13px;
}

.binary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.binary-choice label {
  display: block;
  padding: 13px 15px;
  border: 1px solid #cfddd3;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
}

.uploads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.upload-card {
  position: relative;
  min-height: 218px;
  border: 1.5px dashed #b8cbbd;
  border-radius: 19px;
  background: white;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.upload-card:hover {
  border-color: var(--leaf);
  background: #fbfef9;
}

.upload-card input {
  display: none;
}

.upload-content {
  padding: 22px;
}

.upload-content img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 13px;
  opacity: 0.78;
}

.upload-content b {
  display: block;
  margin-bottom: 4px;
}

.upload-content small {
  color: var(--muted);
}

.upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.upload-card.has-preview .upload-preview {
  display: block;
}

.upload-card.has-preview .upload-content {
  display: none;
}

.form-submit {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 25px;
}

.form-submit small {
  color: var(--muted);
  max-width: 430px;
}

.page-homepage .contact-strip {
  background: var(--forest);
  color: white;
}

.contact-grid {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.contact-grid h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  margin-bottom: 8px;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}


.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 28, 18, 0.66);
  backdrop-filter: blur(10px);
}

.success-modal.open {
  display: grid;
}

.success-box {
  width: min(480px, 100%);
  text-align: center;
  background: white;
  border-radius: 28px;
  padding: 42px 32px 34px;
  box-shadow: var(--shadow-lg);
}

.success-box img {
  width: 96px;
  margin: 0 auto 18px;
}

.success-box h3 {
  font-size: 1.65rem;
}

.success-box p {
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 0;
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow-lg);
  display: none;
  cursor: pointer;
}

.back-to-top.show {
  display: grid;
  place-items: center;
}

body.page-impact {
  --forest: #174c35;
  --forest-2: #0e3926;
  --forest-soft: #276245;
  --leaf: #59a83f;
  --leaf-2: #83c768;
  --leaf-light: #dff1d8;
  --mint: #edf7ea;
  --cream: #fbfcf7;
  --cream-2: #f5f8ef;
  --gold: #d6a63a;
  --gold-light: #fff0c4;
  --ink: #17231d;
  --muted: #607068;
  --line: #dce8df;
  --white: #ffffff;
  --danger-soft: #fff4df;
  --shadow-sm: 0 10px 30px rgba(23, 76, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(23, 76, 53, 0.15);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

.page-impact h1 {
  font-size: clamp(2.65rem, 5.2vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}

.page-impact h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.page-impact .hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(131, 199, 104, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 25%,
      rgba(214, 166, 58, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #fbfcf7 0%, #eef8ea 54%, #f8fff3 100%);
}

.page-impact .hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 84px 0 74px;
}

.page-impact .hero-copy {
  max-width: 690px;
}

.story-visual {
  position: relative;
  min-height: 480px;
}

.story-board {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 26px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.36)
    ),
    linear-gradient(180deg, #dcf1d3, #f7fbf3 50%, #e7f5dd);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.story-board::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -18%;
  height: 58%;
  background:
    repeating-linear-gradient(
      8deg,
      rgba(23, 76, 53, 0.16) 0 5px,
      transparent 5px 24px
    ),
    linear-gradient(180deg, rgba(89, 168, 63, 0.1), rgba(23, 76, 53, 0.22));
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.sun-dot {
  position: absolute;
  right: 42px;
  top: 48px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffe8a0 0 45%,
    rgba(245, 217, 133, 0.35) 46% 72%,
    transparent 73%
  );
}

.farmer-card {
  position: absolute;
  left: 32px;
  top: 34px;
  width: 68%;
  min-height: 235px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 232, 223, 0.85);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  margin-bottom: 18px;
}

.quote-mark svg {
  width: 28px;
  height: 28px;
}

.farmer-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.farmer-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-light), white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--forest);
}

.avatar svg {
  width: 24px;
  height: 24px;
}

.profile-row strong {
  display: block;
  line-height: 1.1;
}

.profile-row span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.mini-stat-card {
  position: absolute;
  right: 28px;
  bottom: 72px;
  width: 218px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.mini-stat-card small {
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 0.67rem;
}

.mini-stat-card b {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  margin: 10px 0;
  letter-spacing: -0.05em;
}

.mini-stat-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.filters-wrap {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.filters-panel {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.filter-label svg {
  width: 22px;
  height: 22px;
  color: var(--leaf);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 18px;
  color: #34463e;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.page-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.intro-note {
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.intro-note h3 {
  margin-bottom: 10px;
}

.intro-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
  font-size: 0.84rem;
}

.empty-state {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 38px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(237, 247, 234, 0.9)
    ),
    radial-gradient(
      circle at 18% 16%,
      rgba(214, 166, 58, 0.15),
      transparent 28%
    ),
    radial-gradient(circle at 88% 70%, rgba(89, 168, 63, 0.16), transparent 30%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 42px;
}

.empty-state::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -80px;
  height: 150px;
  background:
    repeating-linear-gradient(
      10deg,
      rgba(23, 76, 53, 0.11) 0 5px,
      transparent 5px 28px
    ),
    linear-gradient(180deg, rgba(89, 168, 63, 0.04), rgba(23, 76, 53, 0.12));
  border-radius: 50% 50% 0 0;
}

.empty-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.empty-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.empty-icon svg {
  width: 46px;
  height: 46px;
}

.empty-state h2 {
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--muted);
  margin-inline: auto;
  max-width: 640px;
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.template-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(23, 76, 53, 0.12);
}

.template-thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 20%,
      rgba(214, 166, 58, 0.22),
      transparent 24%
    ),
    linear-gradient(160deg, #dff1d8, #f9fcf4 55%, #cae9bb);
}

.template-thumb::before {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -30%;
  height: 60%;
  background:
    repeating-linear-gradient(
      8deg,
      rgba(23, 76, 53, 0.16) 0 4px,
      transparent 4px 22px
    ),
    linear-gradient(180deg, rgba(89, 168, 63, 0.09), rgba(23, 76, 53, 0.2));
  border-radius: 50% 50% 0 0;
}

.template-thumb .floating-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
  border: 1px solid rgba(220, 232, 223, 0.8);
}

.template-thumb svg {
  width: 28px;
  height: 28px;
}

.template-body {
  padding: 22px;
}

.page-impact .tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.template-body h3 {
  margin-bottom: 10px;
}

.template-body p {
  margin: 0;
  color: var(--muted);
}

.story-process {
  background: var(--forest-2);
  color: white;
  position: relative;
  overflow: hidden;
}

.story-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(131, 199, 104, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(214, 166, 58, 0.16),
      transparent 30%
    );
  pointer-events: none;
}

.story-process .container {
  position: relative;
  z-index: 1;
}

.story-process .eyebrow {
  color: #dff3d7;
}

.story-process .lead {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-number {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(131, 199, 104, 0.18);
  color: #dff3d7;
  font-weight: 1000;
  margin-bottom: 18px;
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.page-impact .cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 84% 16%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, var(--forest), var(--forest-2));
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.page-impact .cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band .btn-light {
  border-color: rgba(255, 255, 255, 0.18);
}


.footer-brand .brand {
  color: white;
  margin-bottom: 18px;
}

.page-impact .footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.62);
}

.page-impact .footer-brand p {
  max-width: 330px;
}

.footer-title {
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
}

.page-impact .footer-links {
  display: grid;
  gap: 10px;
}

.page-impact .footer-contact span {
  /* display: grid; */
  grid-template-columns: 22px 1fr;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--leaf-2);
  margin-top: 4px;
}

.page-impact .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero .container,
  .intro-grid,
  .journey-grid {
    grid-template-columns: 1fr !important;
  }
  .hero {
    min-height: auto;
  }
  .hero-visual {
    min-height: 540px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
  .stats-card,
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head,
  .cta-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-grid,
  .intro-grid,
  .form-wrap {
    grid-template-columns: 1fr !important;
  }
  .hero-grid {
    padding-top: 54px;
    gap: 36px;
  }
  .page-homepage .hero-visual {
    min-height: 500px;
    max-width: 680px;
    width: 100%;
    margin: auto;
  }
  .farm-card {
    inset-left: 20px;
  }
  .intro-card,
  .form-aside {
    position: relative;
    top: auto;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .hero-visual.mobile {
    display: block;
  }
  .hero-visual.desktop {
    display: none;
  }
}

@media (max-width: 840px) {
  .announcement .container {
    justify-content: center;
    text-align: center;
  }
  .announcement .container span:last-child {
    display: none;
  }
  .nav-links {
    position: fixed;
    inset: 112px 20px auto 20px;
    display: none;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  body.menu-open .nav-links {
    display: flex;
  }
  .nav-links a {
    padding: 13px 14px;
    border-radius: 14px;
  }
  .nav-links a:hover {
    background: var(--mint);
  }
  .nav-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero .container {
    padding-top: 56px;
  }
  .hero-copy h1 {
    max-width: 620px;
  }
  .trust-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 68px 0;
  }
  .section-sm {
    padding: 48px 0;
  }
  .hero-visual {
    min-height: 470px;
  }
  .visual-card {
    min-height: 430px;
    border-radius: 32px;
  }
  .farmer-figure {
    transform: translate(-50%, -50%) scale(0.82);
  }
  .float-card {
    padding: 14px;
  }
  .float-card strong {
    font-size: 1.35rem;
  }
  .float-card.top {
    top: 18px;
    left: 8px;
  }
  .float-card.bottom {
    right: 8px;
    bottom: 20px;
  }
  .stats-card,
  .model-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .content-panel,
  .vision-card,
  .journey-card,
  .impact-panel {
    padding: 28px;
  }
  .cta-band {
    padding: 34px 26px;
    border-radius: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .nav {
    height: 74px;
  }
  .brand-text small {
    display: none;
  }
  .hero-grid {
    padding: 52px 0 60px;
  }
  h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }
  .section.compact {
    padding: 54px 0;
  }
  .contact-hero-card {
    border-radius: 30px;
    padding: 24px;
    min-height: auto;
  }
  .card-topline {
    margin-bottom: 30px;
  }
  .contact-cards,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 22px;
    border-radius: 24px;
  }
  .map-copy {
    padding: 24px;
  }
  .page-contact .cta-band {
    padding: 30px;
    border-radius: 26px;
    grid-template-columns: 1fr;
  }
  .page-homepage .container {
    width: min(100% - 26px, var(--container));
  }
  .page-homepage .section {
    padding: 72px 0;
  }
  .page-homepage h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }
  .hero {
    min-height: auto;
  }
  .page-homepage .hero-grid {
    padding-bottom: 125px;
  }
  .hero-copy .highlight {
    white-space: normal;
  }
  .page-homepage .hero-visual {
    min-height: 390px;
  }
  .farm-card {
    inset: 0;
    border-radius: 28px;
  }
  .farmer {
    transform: scale(0.78);
    transform-origin: bottom right;
    right: 12px;
  }
  .tree {
    left: 42px;
  }
  .badge-card.top {
    right: 8px;
    top: 34px;
  }
  .badge-card.bottom {
    left: 10px;
    bottom: 28px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .field-grid,
  .uploads,
  .binary {
    grid-template-columns: 1fr;
  }
  .form-title,
  .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-submit .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    flex-direction: column;
  }
  .page-impact .section {
    padding: 72px 0;
  }
  .hero .container {
    padding-top: 64px;
  }
  .hero-actions,
  .empty-actions {
    display: grid;
  }
  .hero-actions .btn,
  .empty-actions .btn {
    width: 100%;
  }
  .story-visual {
    min-height: 500px;
  }
  .farmer-card {
    left: 18px;
    right: 18px;
    width: auto;
    top: 24px;
  }
  .mini-stat-card {
    left: 22px;
    right: 22px;
    bottom: 38px;
    width: auto;
  }
  .filters-panel {
    align-items: stretch;
  }
  .filter-buttons,
  .filter-label {
    width: 100%;
  }
  .filter-btn {
    flex: 1 1 auto;
  }
  .template-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .empty-state {
    padding: 30px 22px;
  }
  .page-impact .cta-band {
    padding: 30px;
    border-radius: 28px;
  }
  .page-impact .footer-bottom {
    display: grid;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .desktop-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .nav-links.open {
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a {
    padding: 14px 16px;
  }
  .hero-grid,
  .contact-main,
  .map-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 32px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-strip {
    margin-top: 0;
    padding-top: 34px;
  }
}

@media (max-width: 820px) {
  .announcement .container {
    justify-content: center;
    text-align: center;
  }
  .announcement a {
    display: none;
  }
  .nav-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 112px 18px auto 18px;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 20px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .option-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }
  .contact-actions {
    justify-content: flex-start;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .announcement .container {
    justify-content: center;
    text-align: center;
  }
  .announcement span:last-child {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-panel {
    position: fixed;
    inset: 113px 20px auto 20px;
    z-index: 60;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  body.menu-open .mobile-panel {
    display: grid;
    gap: 8px;
  }
  .mobile-panel a {
    padding: 14px 15px;
    border-radius: 15px;
    font-weight: 900;
    color: #31423a;
  }
  .mobile-panel a.active,
  .mobile-panel a:hover {
    background: var(--mint);
    color: var(--forest);
  }
  .hero .container,
  .page-intro,
  .cta-band {
    grid-template-columns: 1fr !important;
  }
  .story-visual {
    min-height: 430px;
  }
  .template-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    text-align: left;
  }
}
