:root {
  --green-950: #052f17;
  --green-900: #073f1d;
  --green-800: #0b5829;
  --green-700: #126934;
  --green-100: #e5efdc;
  --leaf: #8da63f;
  --gold: #d49b2d;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --line: #ded8c8;
  --ink: #18301f;
  --muted: #657062;
  --shadow: 0 18px 55px rgba(14, 40, 19, .13);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

#site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 234, .94);
  border-bottom: 1px solid rgba(6, 63, 28, .14);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-title {
  display: block;
  font-size: 1.45rem;
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--green-950);
}

.brand-separator {
  display: block;
  width: 1px;
  height: 38px;
  background-color: rgba(6, 63, 28, .2);
}

.brand-kicker {
  display: block;
  color: #3d3a2e;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(6, 63, 28, .12);
  border-radius: 999px;
  background: rgba(255, 253, 247, .78);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: #30442f;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--green-900);
  color: #fff;
}

.proof-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(66px, 1fr));
  gap: 8px;
}

.proof-badge {
  min-width: 76px;
  padding: 8px 7px;
  border-left: 1px solid rgba(6, 63, 28, .16);
  text-align: center;
  color: var(--green-950);
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-badge svg {
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
  stroke: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 63, 28, .18);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-950);
}

.nav-toggle svg {
  width: 22px;
  margin: auto;
  stroke: currentColor;
}

.nav-overlay,
.nav-close {
  display: none;
}

.home-hero {
  min-height: clamp(570px, 84vh, 760px);
  display: grid;
  align-items: end;
  padding: 80px 0 58px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(3, 38, 17, .58) 0%, rgba(3, 38, 17, .38) 34%, rgba(3, 38, 17, .12) 68%, rgba(3, 38, 17, .02) 100%),
    url("home-hero-farm.png");
  background-size: cover;
  background-position:
    center,
    calc(50% + var(--hero-shift-x, 0px)) calc(50% + var(--hero-shift-y, 0px));
  border-bottom: 1px solid var(--line);
  transition: background-position .18s ease-out;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-x, 54%) var(--hero-y, 38%), rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(180deg, rgba(3, 38, 17, 0) 62%, rgba(3, 38, 17, .2) 100%);
  opacity: .78;
  transition: opacity .22s ease;
}

.home-hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

.hero-eyebrow,
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.page-eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.home-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: .9;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(2, 29, 13, .45);
}

.home-hero .hero-lead {
  max-width: 640px;
  margin-bottom: 18px;
  color: #fff8db;
  font-size: clamp(1.28rem, 2.3vw, 2rem);
  line-height: 1.16;
  font-weight: 800;
  text-shadow: 0 3px 14px rgba(2, 29, 13, .5);
}

.hero-lines {
  display: grid;
  gap: 4px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(.94rem, 1.3vw, 1.08rem);
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(2, 29, 13, .55);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green-900);
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(5, 47, 23, .18);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.btn:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(5, 47, 23, .23);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(240, 190, 62, .45);
  outline-offset: 3px;
}

.btn.secondary {
  background: rgba(255, 253, 247, .96);
  color: var(--green-950);
  border-color: rgba(255, 255, 255, .75);
}

.btn.secondary:hover {
  background: #fff;
  border-color: var(--gold);
}

.btn-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: button-ripple .62s ease-out forwards;
  pointer-events: none;
}

.vision-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.vision-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vision-dialog {
  position: relative;
  width: min(1080px, 100%);
  border-radius: 8px;
  background: #07110b;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
  color: #fff;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .26s ease, opacity .26s ease;
}

.vision-modal.is-open .vision-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.vision-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: center;
  padding: 18px 62px 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.vision-kicker {
  color: #f0cf62;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vision-header h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.15;
  font-weight: 900;
}

.vision-counter {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  min-width: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  text-align: center;
  font-size: .8rem;
  font-weight: 900;
}

.vision-frame-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.vision-frame-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  transition: opacity .18s ease;
}

.vision-frame-shell.is-switching iframe {
  opacity: .16;
}

.vision-close,
.vision-arrow {
  appearance: none;
  border: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
}

.vision-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: #fff;
  color: #052f17;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
}

.vision-close:hover {
  background: #f1d56f;
}

.vision-close svg,
.vision-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.vision-arrow {
  position: absolute;
  top: 58%;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease;
}

.vision-arrow:hover {
  background: rgba(255, 255, 255, .24);
  transform: translateY(-50%) scale(1.04);
}

.vision-arrow-prev {
  left: -72px;
}

.vision-arrow-next {
  right: -72px;
}

.section {
  padding: 70px 0;
}

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

.section-title {
  margin-bottom: 24px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.content-card,
.revenue-card,
.impact-card,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(19, 50, 22, .07);
}

.metric-card {
  min-height: 132px;
  padding: 18px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  text-align: center;
}

.metric-card .icon-round,
.impact-card .icon-round {
  width: 42px;
  height: 42px;
}

.contact-card .icon-round {
  width: 52px;
  height: 52px;
  background: #e3effb;
  color: #1559be;
}

.contact-card .icon-round svg {
  width: 28px;
  height: 28px;
}

.metric-card strong {
  color: var(--green-950);
  font-size: 1.02rem;
  line-height: 1.1;
}

.metric-card span,
.revenue-card span,
.impact-card span,
.contact-card p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
}

.icon-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  flex: 0 0 auto;
}

.icon-round svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
}

.icon-round.has-img {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2px;
  overflow: hidden;
}

.icon-round img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}

.flow-band {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 247, .76);
  box-shadow: var(--shadow);
}

.working-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
}

.diagram-card {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.diagram-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

@media (min-width: 981px) {
  .working-layout {
    --scroll-progress: 1; /* Fallback to fully expanded */
  }

  .diagram-card {
    position: relative;
    z-index: 2;
    transform: translateX(calc(61.1% * (1 - var(--scroll-progress))));
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .flow-band {
    position: relative;
    z-index: 1;
    opacity: var(--scroll-progress);
    transform: translateX(calc(-75% * (1 - var(--scroll-progress))));
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease-out;
  }
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.flow-node {
  position: relative;
  min-height: 108px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 11px 8px;
  text-align: center;
  font-size: .78rem;
  font-weight: 900;
  color: var(--green-950);
}

.flow-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -14px;
  width: 16px;
  height: 2px;
  background: var(--green-800);
}

.flow-node .icon-round {
  width: 50px;
  height: 50px;
}

.revenue-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.revenue-card {
  overflow: hidden;
}

.revenue-visual {
  height: 112px;
  background: var(--visual-bg, #acc47b);
  position: relative;
  overflow: hidden;
}

.revenue-visual.has-image {
  min-height: 132px;
  background-image: linear-gradient(0deg, rgba(3, 38, 17, .14), rgba(3, 38, 17, .02)), var(--visual-image);
  background-size: cover;
  background-position: center;
}

.revenue-visual::before,
.revenue-visual::after {
  content: "";
  position: absolute;
  inset: auto -20px -18px;
  height: 70px;
  background: rgba(255, 255, 255, .24);
  border-radius: 50% 50% 0 0;
}

.revenue-visual::after {
  inset: 18px auto auto 18px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.revenue-visual.has-image::before,
.revenue-visual.has-image::after {
  display: none;
}

.revenue-card .body {
  min-height: 94px;
  padding: 14px;
}

.revenue-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green-950);
  line-height: 1.15;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
}

.impact-stat {
  min-height: 138px;
  padding: 22px 14px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  background: var(--green-900);
  color: #fff;
  text-align: center;
}

.impact-stat svg {
  width: 28px;
  height: 28px;
  stroke: #e5cf65;
}

.impact-stat strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.impact-stat span {
  max-width: 140px;
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  font-weight: 800;
}

.page-hero {
  padding: 60px 0 36px;
  background: radial-gradient(circle at 12% 0%, rgba(141, 166, 63, .24), transparent 30%), linear-gradient(180deg, #fffdf7, var(--cream));
  border-bottom: 1px solid rgba(6, 63, 28, .12);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 9px;
  color: var(--green-950);
  font-size: clamp(2.1rem, 4.4vw, 4.45rem);
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #59422d;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 800;
}

.page-number {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 950;
  box-shadow: var(--shadow);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 26px;
  align-items: start;
}

.feature-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-art img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-art-wide {
  margin-bottom: 18px;
}

.feature-art-wide img {
  min-height: 0;
  object-fit: contain;
  background: #061226;
}

.feature-art.immersive-3d {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}

.immersive-3d {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --media-x: 0px;
  --media-y: 0px;
  --glow-x: 50%;
  --glow-y: 50%;
}

.immersive-3d-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(19, 50, 22, .12);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
}

.immersive-3d-stage {
  position: relative;
  overflow: hidden;
  background: #f7f4e9;
  transform-style: preserve-3d;
}

.immersive-3d-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, .42), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 44%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .22s ease;
}

.immersive-3d-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), inset 0 -26px 44px rgba(3, 38, 17, .08);
}

.immersive-3d-media {
  display: block;
  transform: translate3d(var(--media-x), var(--media-y), 38px) scale(1.025);
  transition: transform .24s ease;
  will-change: transform;
}

.immersive-3d .caption-row {
  position: relative;
  z-index: 4;
  transform: translateZ(26px);
}

.immersive-3d.is-active .immersive-3d-shell {
  border-color: rgba(6, 63, 28, .24);
  box-shadow: 0 34px 78px rgba(19, 50, 22, .21);
}

.immersive-3d.is-active .immersive-3d-stage::before {
  opacity: .8;
}

.immersive-3d.is-pressed .immersive-3d-shell {
  transition-duration: .08s;
  box-shadow: 0 20px 46px rgba(19, 50, 22, .18);
}

.immersive-3d-dark .immersive-3d-stage {
  background: #061226;
}

.immersive-3d-dark .immersive-3d-stage::before {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(120, 211, 255, .32), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 42%);
}

.caption-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #fffdf7;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

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

.steps-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecosystem-layout {
  display: grid;
  gap: 32px;
}

.ecosystem-layout .feature-art-large img {
  min-height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.step-card {
  min-height: 196px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: .95rem;
  font-weight: 950;
  text-transform: uppercase;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-size: .82rem;
  flex: 0 0 auto;
}

.plain-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 9px;
  align-items: start;
  color: #354d35;
  font-size: .9rem;
  font-weight: 650;
}

.plain-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: .65em;
  border-radius: 999px;
  background: var(--gold);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  min-height: 126px;
  padding: 16px 12px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.mini-card .icon-round {
  width: 44px;
  height: 44px;
}

.mini-card strong {
  color: var(--green-950);
  font-size: .9rem;
  line-height: 1.16;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.finance-card {
  min-height: 112px;
  padding: 17px 12px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.finance-card strong {
  color: var(--green-950);
  font-size: 1.24rem;
  line-height: 1;
}

.finance-card span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.investor-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: stretch;
}

.form-card {
  padding: 22px;
}

.form-card h3 {
  margin-bottom: 6px;
  color: var(--green-950);
  text-transform: uppercase;
}

.form-card p {
  color: var(--muted);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 11px;
}

.form-grid input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
}

.form-grid input:focus {
  outline: 3px solid rgba(141, 166, 63, .28);
  border-color: var(--green-700);
}

.phone-input-group {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 8px;
}

.phone-input-group select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0 8px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
}

.phone-input-group select:focus {
  outline: 3px solid rgba(141, 166, 63, .28);
  border-color: var(--green-700);
}

.form-message {
  min-height: 22px;
  color: var(--green-800);
  font-size: .86rem;
  font-weight: 800;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tech-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(19, 50, 22, .07);
}

.tech-visual {
  height: 156px;
  display: grid;
  place-items: center;
  background: var(--visual-bg, #0b3c3c);
  color: #fff;
}

.tech-visual.has-image {
  background-size: cover;
  background-position: center;
}

.tech-visual svg {
  width: 72px;
  height: 72px;
  stroke: currentColor;
}

.tech-card .body {
  padding: 17px;
}

.tech-card h3 {
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: 1rem;
}

.tech-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

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

.impact-card {
  padding: 20px;
}

.impact-card h3 {
  margin-bottom: 15px;
  color: var(--green-950);
  text-align: center;
  text-transform: uppercase;
}

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

.impact-pill {
  min-height: 96px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #f5f1e5;
  text-align: center;
  color: var(--green-950);
  font-size: .78rem;
  font-weight: 900;
}

.impact-pill svg {
  width: 25px;
  height: 25px;
  stroke: var(--green-800);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.portrait-panel {
  position: sticky;
  top: 118px;
}

.portrait-panel img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.portrait-frame {
  perspective: 1200px;
}

.portrait-frame .immersive-3d-shell {
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(19, 50, 22, .14);
}

.portrait-frame img {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.portrait-frame .immersive-3d-stage::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), inset 0 -34px 54px rgba(0, 0, 0, .16);
}

.portrait-caption {
  padding: 18px 0 0;
  text-align: center;
}

.portrait-caption strong {
  display: block;
  color: var(--green-950);
  font-size: 1.15rem;
}

.portrait-caption span {
  color: var(--muted);
  font-weight: 800;
}

.bio-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.bio-copy h2 {
  color: var(--green-950);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  text-transform: uppercase;
}

.bio-copy .role {
  margin-bottom: 23px;
  color: #59422d;
  font-weight: 900;
}

.bio-copy p {
  color: #354d35;
  font-weight: 650;
}

.quote-panel {
  margin-top: 22px;
  padding: 25px;
  border-radius: 10px;
  background: var(--green-900);
  color: #fff;
  text-align: center;
}

.quote-panel h3 {
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.quote-panel blockquote {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 850;
  line-height: 1.45;
}

.quote-panel cite {
  display: block;
  margin-top: 15px;
  color: #f2d46f;
  font-style: normal;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 19px;
}

.contact-card h3 {
  margin: 0 0 5px;
  color: var(--green-950);
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-card p {
  margin-bottom: 9px;
}

.contact-card a {
  display: inline-block;
  margin-right: 10px;
  color: var(--green-800);
  font-size: .9rem;
  font-weight: 900;
}

.location-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.location-panel h2,
.social-panel h2 {
  color: var(--green-950);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.location-map-wrap {
  display: flex;
  justify-content: center;
  margin: 14px 0;
}

.location-map-wrap img {
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--line);
  border-radius: 9px;
  object-fit: cover;
  display: block;
}

.address-lines {
  display: grid;
  gap: 2px;
  margin: 8px 0 18px;
  color: #354d35;
  text-align: center;
  font-size: .92rem;
  font-weight: 750;
}

.social-panel {
  margin-top: 17px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
}

.social-icons svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.social-icons a.social-brand {
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
}

.social-icons a.social-brand svg {
  width: 44px;
  height: 44px;
  stroke: none;
  border-radius: 999px;
  overflow: hidden;
}

.action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.action-panel h2 {
  margin-bottom: 13px;
  color: var(--green-950);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 8px;
  color: #354d35;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-top: .22em;
  background: var(--green-800);
  clip-path: polygon(14% 48%, 36% 70%, 84% 18%, 96% 31%, 38% 91%, 4% 58%);
}

.key-cta {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.key-cta span {
  color: var(--green-950);
  font-size: .88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer {
  padding: 34px 0 38px;
  background: #fffdf7;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.footer-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.footer-panel h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 1.22rem;
  text-transform: uppercase;
}

.reason-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reason,
.audience {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: #354d35;
  font-size: .78rem;
  font-weight: 800;
}

.reason:last-child,
.audience:last-child {
  border-right: 0;
}

.reason svg,
.audience svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-900);
}

.key-cta-section {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.key-cta-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 12px;
}

.key-cta-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #4a4a4a;
  font-weight: 600;
}

.key-cta-links .cta-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.key-cta-links .cta-link:hover {
  color: var(--green-900);
}

.key-cta-links .cta-divider {
  color: #a0a0a0;
  font-weight: 400;
}


.closing-cta {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 40px 28px;
  border-radius: 14px;
  background: var(--green-900);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.closing-cta .cta-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #97c25b;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
}

.closing-cta .cta-kicker .line {
  height: 1px;
  width: 24px;
  background-color: rgba(151, 194, 91, 0.5);
}

.closing-cta strong {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.closing-cta .cta-bottom-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.closing-cta .cta-bottom-line .line {
  height: 1px;
  width: 48px;
  background-color: rgba(151, 194, 91, 0.5);
}

.closing-cta .cta-bottom-line .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #97c25b;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .62s ease,
    transform .62s cubic-bezier(.2, .7, .2, 1),
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.interactive-card {
  position: relative;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 42%);
  opacity: 0;
  transition: opacity .22s ease;
}

.interactive-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 63, 28, .22);
  box-shadow: 0 20px 42px rgba(19, 50, 22, .13);
}

.interactive-card:hover::before {
  opacity: 1;
}

.interactive-card:focus-within {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(141, 166, 63, .18), 0 18px 36px rgba(19, 50, 22, .1);
}

.flow-node .icon-round {
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.flow-node:hover .icon-round {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(6, 63, 28, .13);
  background: #fff9e8;
}

.flow-node:not(:last-child)::after {
  transform-origin: left center;
  animation: flow-arrow 2.8s ease-in-out infinite;
}

.home-hero .hero-eyebrow,
.home-hero h1,
.home-hero .hero-lead,
.home-hero .hero-lines,
.home-hero .button-row {
  animation: hero-copy-in .72s cubic-bezier(.2, .7, .2, 1) both;
}

.home-hero h1 {
  animation-delay: .08s;
}

.home-hero .hero-lead {
  animation-delay: .15s;
}

.home-hero .hero-lines {
  animation-delay: .22s;
}

.home-hero .button-row {
  animation-delay: .3s;
}

.vision-dialog {
  animation-duration: .28s;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes flow-arrow {
  0%,
  100% {
    transform: scaleX(.55);
    opacity: .32;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .interactive-card:hover,
  .btn:hover {
    transform: none;
  }

  .immersive-3d-shell,
  .immersive-3d-media,
  .immersive-3d .caption-row {
    transform: none !important;
  }

  .immersive-3d-stage::before {
    opacity: 0 !important;
  }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 1001;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .site-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 320px;
    background: var(--paper, #fffdf7);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 60px 24px 24px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  }

  .site-nav.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--green-950);
  }

  .nav-close svg {
    width: 20px;
    stroke: currentColor;
  }

  .site-nav a {
    border-radius: 8px;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    font-size: 1.1rem;
    height: auto;
    min-height: 48px;
  }

  .proof-badges {
    display: none;
  }
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-nav {
    justify-self: end;
  }

  .proof-badges {
    display: none;
  }
}

@media (max-width: 980px) {
  .grid.four,
  .grid.three,
  .steps-grid-four,
  .mini-card-grid,
  .finance-grid,
  .tech-grid,
  .impact-groups,
  .reason-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .working-layout,
  .investor-download,
  .founder-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    position: static;
    max-width: 440px;
    margin: 0 auto;
  }

  .flow-list,
  .impact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-node:not(:last-child)::after {
    display: none;
  }

  .revenue-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-number {
    width: 78px;
    height: 78px;
    font-size: 1.75rem;
  }

  .vision-modal {
    padding: 18px;
  }

  .vision-close {
    top: -14px;
    right: -10px;
  }

  .vision-arrow {
    top: auto;
    bottom: -68px;
    transform: none;
  }

  .vision-arrow:hover {
    transform: scale(1.04);
  }

  .vision-arrow-prev {
    left: calc(50% - 58px);
  }

  .vision-arrow-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .brand-separator,
  .brand-kicker {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 640px;
    padding: 52px 0 46px;
    background-image:
      linear-gradient(90deg, rgba(3, 38, 17, .64), rgba(3, 38, 17, .38)),
      url("home-hero-farm.png");
    background-position: center;
  }

  .section {
    padding: 48px 0;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .steps-grid,
  .steps-grid-four,
  .mini-card-grid,
  .finance-grid,
  .tech-grid,
  .impact-groups,
  .pill-list,
  .reason-grid,
  .audience-grid,
  .flow-list,
  .impact-strip,
  .revenue-gallery {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    border-radius: 10px;
  }

  .action-panel {
    grid-template-columns: 1fr;
  }

  .key-cta {
    justify-items: stretch;
  }

  .key-cta .button-row {
    align-items: stretch;
  }

  .key-cta .btn,
  .button-row .btn {
    width: 100%;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    padding: 18px;
  }

  .vision-header {
    grid-template-columns: 1fr;
    padding: 16px 48px 14px 16px;
  }

  .vision-counter {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

/* Scalable Across India Section */
.scalable-india-container {
  padding: 40px 0;
}
.scalable-title {
  text-align: center;
  color: var(--green-900);
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.scalable-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.scalable-map img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.scalable-phases {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.phase-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phase-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f8f4;
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.phase-icon svg {
  width: 32px;
  height: 32px;
}
.phase-text {
  display: flex;
  flex-direction: column;
}
.phase-text strong {
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 4px;
}
.phase-text span {
  font-size: 1.2rem;
  color: #333;
}
@media (max-width: 768px) {
  .scalable-layout {
    grid-template-columns: 1fr;
  }
}
.phase-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Impact Redesign Styles (Image 2 style) */
.impact-redesign-section {
  padding: 60px 0;
  border-top: 1px solid rgba(6, 63, 28, 0.08);
}

.impact-redesign-section.first {
  border-top: none;
  padding-top: 20px;
}

.impact-redesign-title {
  text-align: center;
  color: var(--green-900);
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.impact-circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.impact-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 140px;
  max-width: 180px;
}

.impact-circle-item .circle-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(6, 63, 28, 0.12);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-circle-item:hover .circle-icon-wrap {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 63, 28, 0.1);
}

.impact-circle-item .circle-icon-wrap img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
}

.impact-circle-item strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 4px;
}

.impact-circle-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555555;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .impact-circle-grid {
    gap: 30px 16px;
  }
  .impact-circle-item {
    flex: 1 1 120px;
    max-width: 140px;
  }
  .impact-circle-item .circle-icon-wrap {
    width: 80px;
    height: 80px;
  }
  .impact-circle-item .circle-icon-wrap img {
    width: 74px;
    height: 74px;
  }
  .impact-circle-item strong {
    font-size: 1rem;
  }
  .impact-circle-item span {
    font-size: 0.8rem;
  }
  .impact-redesign-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
}
