:root {
  --brand-purple: #7b2f90;
  --brand-purple-deep: #59216c;
  --brand-green: rgb(129, 197, 48);
  --brand-green-deep: rgb(129, 197, 48);
  --text-main: #172127;
  --text-soft: #41505a;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-dark: #e9ede6;
  --border-soft: rgba(23, 33, 39, 0.08);
  --shadow-soft: 0 18px 44px rgba(23, 33, 39, 0.08);
  --shadow-card: 0 14px 32px rgba(23, 33, 39, 0.08);
  --bg-main: #f1f3f2;
  --max-width: 1180px;
  --header-height: 88px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.2rem);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.page-loading {
  overflow: hidden;
}

body.page-loading .site-header,
body.page-loading main,
body.page-loading footer {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.site-header,
main,
footer {
  transition:
    opacity 480ms ease,
    transform 480ms ease,
    visibility 480ms ease;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg-main);
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
  overflow: hidden;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  width: min(18rem, calc(100% - 2rem));
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    visibility 280ms ease;
}

.page-loader.is-video-ready .page-loader-inner {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

.loader-symbol {
  width: min(9.2rem, 34vw);
  height: auto;
}

.loader-bar {
  width: 100%;
  height: 0.56rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(129, 197, 48, 0.12);
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgb(129, 197, 48);
  box-shadow: 0 8px 18px rgba(129, 197, 48, 0.24);
  transition: width 180ms ease;
}

.loader-progress-text {
  display: grid;
  gap: 0.2rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgb(88, 89, 91);
}

.loader-video-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg-main);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  pointer-events: none;
  isolation: isolate;
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    visibility 360ms ease;
}

.page-loader.is-video-ready .loader-video-stage {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.loader-video-frame {
  width: min(44rem, 80vw);
  max-width: 100%;
  overflow: hidden;
  background: var(--bg-main);
  box-shadow: 0 0 0 10px var(--bg-main);
  will-change: transform, opacity;
}

.loader-intro-video {
  width: calc(100% + 8px);
  max-width: none;
  height: auto;
  display: block;
  background: var(--bg-main);
  mix-blend-mode: multiply;
  transform: translateX(-3px);
}

.loader-logo-fly {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(24rem, 60vw);
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  will-change: transform, opacity;
}

.page-loader.is-logo-fly .loader-video-frame {
  opacity: 0;
  transition: opacity 180ms ease;
}

.page-loader.is-logo-fly .loader-logo-fly {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .loader-video-frame {
    width: min(26rem, 94vw);
  }

  .loader-logo-fly {
    width: min(19rem, 78vw);
  }
}

.loader-progress-text span {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--brand-purple);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #fff;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section-shell {
  position: relative;
  padding: 5.5rem 0;
}

main {
  position: relative;
  isolation: isolate;
}

main > section,
main > .trust-band {
  position: relative;
  z-index: 1;
}

.section-shell[id] {
  scroll-margin-top: calc(var(--header-height) + 0.2rem);
}

.section-shell::before {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(123, 47, 144, 0.08);
  color: var(--brand-purple-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-green);
}

h1,
h2,
h3,
strong {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

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

h1 {
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  line-height: 0.95;
  color: rgb(88, 89, 91);
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  line-height: 1.08;
  color: rgb(88, 89, 91);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
  color: rgb(88, 89, 91);
}

p {
  color: var(--text-soft);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--brand-purple);
  box-shadow: 0 12px 24px rgba(123, 47, 144, 0.18);
}

.lead-form .button-primary {
  background: var(--brand-green);
  box-shadow: 0 12px 24px rgba(129, 197, 48, 0.24);
}

.button-whatsapp {
  color: #fff;
  background: var(--brand-green);
  box-shadow: 0 12px 24px rgba(129, 197, 48, 0.24);
}

.button-whatsapp,
.button-whatsapp:visited,
.site-nav a.button-whatsapp {
  color: #fff;
}

.button-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.button-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 33, 39, 0.08);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition:
    background-color var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(247, 249, 242, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(33, 44, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-wordmark,
.footer-wordmark {
  width: auto;
  height: auto;
}

.brand-wordmark {
  width: min(15rem, 48vw);
  transition: opacity 180ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-main);
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-purple);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  left: 0;
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.14rem 0;
  border-radius: 999px;
  background: var(--text-main);
}

.hero {
  padding-top: 2rem;
  padding-bottom: 0.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 36rem;
}

.hero-copy h1 {
  max-width: 12.6ch;
  font-size: clamp(2.65rem, 5.7vw, 4.6rem);
  line-height: 0.92;
  font-weight: 900;
  color: rgb(88, 89, 91);
}

.hero-title-nowrap {
  white-space: nowrap;
}

.hero-lead {
  max-width: none;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-support {
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art {
  width: min(100%, 37rem);
  margin: 0;
}

.hero-art-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-orbit {
  position: relative;
  width: min(100%, 34.5rem);
  min-height: 33rem;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: visible;
  isolation: isolate;
  padding: 1.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  z-index: 0;
  border-radius: 50%;
  border: 2px dashed rgba(129, 33, 137, 0.32);
  pointer-events: none;
}

.hero-orbit::after {
  inset: 6% 10%;
  border-color: rgba(129, 197, 48, 0.32);
  animation: spin 34s linear infinite reverse;
}

.hero-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 14rem;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: transparent;
}

.gear-cluster {
  width: 100%;
  height: auto;
}

.gear {
  transform-box: fill-box;
  transform-origin: center;
}

.gear-purple {
  color: rgb(129, 33, 137);
}

.gear-green {
  color: rgb(129, 197, 48);
}

.gear-body,
.gear-tooth {
  fill: currentColor;
}

.gear-hole {
  fill: #f7f8f6;
}

.gear-large {
  animation: gear-spin 20s linear infinite;
}

.gear-medium {
  animation: gear-spin-reverse 15s linear infinite;
}

.gear-small {
  animation: gear-spin 11s linear infinite;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(15rem, calc(100% - 4.5rem));
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: #edf5e7;
  border: 1px solid rgba(136, 205, 40, 0.18);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  text-align: center;
}

.floating-card strong {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: rgb(129, 33, 137);
}

.floating-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.floating-card-north {
  top: 0.95rem;
  left: 50%;
  transform: translateX(-50%);
}

.floating-card-center {
  left: 1.3rem;
  bottom: 1.9rem;
  transform: none;
}

.floating-card-south {
  right: 1.3rem;
  bottom: 1.9rem;
  transform: none;
}

.trust-band {
  padding: 0.35rem 0 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 39, 0.08);
  text-align: center;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.16rem;
  color: rgb(129, 33, 137);
}

.trust-grid p {
  font-size: 1.08rem;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-bottom: 2.4rem;
}

.section-heading.narrow,
.left-align {
  max-width: 44rem;
}

#tecnologia .section-heading {
  max-width: none;
  width: 100%;
  justify-items: center;
  text-align: center;
}

#tecnologia .section-heading h2,
#tecnologia .section-heading p {
  max-width: none;
}

.hectare-meter {
  display: grid;
  gap: 1rem;
  max-width: 54rem;
  margin: 2.1rem auto 2.8rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 39, 0.08);
  box-shadow: var(--shadow-card);
}

.hectare-meter-copy {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.hectare-meter .eyebrow {
  justify-self: center;
}

.hectare-meter-label {
  font-size: 1.02rem;
  color: rgb(88, 89, 91);
}

.hectare-meter-value {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: rgb(88, 89, 91);
}

.hectare-meter-value [data-hectare-value] {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: rgb(129, 197, 48);
}

.hectare-meter-note {
  max-width: 42rem;
  font-size: 0.97rem;
}

.hectare-meter-rail {
  position: relative;
  width: 100%;
  height: 0.95rem;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 0.1rem;
  background: rgba(129, 197, 48, 0.14);
}

.hectare-meter-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: rgb(129, 197, 48);
  box-shadow: 0 10px 20px rgba(129, 197, 48, 0.22);
  transition: width 1400ms ease;
}

.hectare-meter.is-animated .hectare-meter-fill {
  width: var(--meter-fill, 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.story-copy {
  max-width: 34rem;
  display: grid;
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
  align-self: start;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.story-copy .section-heading {
  margin-bottom: 0;
  justify-items: center;
  text-align: center;
}

.story-copy .section-heading p {
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-timeline {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.story-timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 5.35rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(129, 197, 48, 0.38) 0%,
    rgba(129, 33, 137, 0.24) 100%
  );
}

.story-event {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.55rem;
  align-items: start;
}

.story-event::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 5.35rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgb(129, 197, 48);
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(129, 197, 48, 0.08);
}

.story-year {
  justify-self: end;
  padding-top: 0.12rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgb(129, 33, 137);
}

.story-detail {
  padding: 0.82rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 39, 0.08);
  box-shadow: 0 12px 28px rgba(23, 33, 39, 0.06);
}

.story-detail h3 {
  font-size: 1.02rem;
  margin-bottom: 0;
  color: rgb(88, 89, 91);
}

.story-detail p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.story-event-current::before {
  border-color: rgb(129, 33, 137);
  box-shadow: 0 0 0 6px rgba(129, 33, 137, 0.08);
}

.story-event-current .story-detail {
  background: rgba(129, 197, 48, 0.1);
  border-color: rgba(129, 197, 48, 0.26);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.product-card,
.process-card,
.benefit-card,
.lead-form,
.faq-list details {
  position: relative;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.product-card {
  display: grid;
  gap: 1rem;
  grid-template-rows: auto 1fr;
  padding: 1.45rem 1.15rem;
  border-radius: var(--radius-lg);
  text-align: center;
  align-content: stretch;
  justify-items: center;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-card-link {
  cursor: pointer;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.7vw, 1.6rem);
  color: rgb(129, 33, 137);
}

.product-hover-label {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0.35rem;
  text-align: center;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.35;
  font-weight: 700;
  color: rgb(88, 89, 91);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.product-card:hover,
.product-card:focus-within {
  background: rgba(129, 197, 48, 0.18);
  border-color: rgba(129, 197, 48, 0.3);
  box-shadow: 0 18px 36px rgba(129, 197, 48, 0.12);
  transform: translateY(-4px);
}

.product-card p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 20ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.45;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.product-card:hover p,
.product-card:focus-within p {
  opacity: 0;
  transform: translateY(-8px);
}

.product-card:hover .product-hover-label,
.product-card:focus-within .product-hover-label {
  opacity: 1;
  transform: translateY(0);
}

#soluciones .section-heading {
  margin: 0 auto 2.8rem;
  text-align: center;
}

#soluciones .section-heading p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.18rem;
}

.section-accent {
  color: var(--text-main);
}

.section-accent::before {
  display: none;
}

.section-accent .container {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 0.3rem);
  background: #eef1ec;
  border: 1px solid rgba(23, 33, 39, 0.08);
  box-shadow: 0 18px 40px rgba(23, 33, 39, 0.08);
}

.section-accent h2 {
  color: rgb(88, 89, 91);
}

.section-accent p {
  color: var(--text-main);
}

#cultivos .container {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.split-copy {
  display: grid;
  gap: 1rem;
}

#cultivos .split-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

#cultivos .split-copy {
  order: 2;
  justify-self: end;
  max-width: 42rem;
  gap: 1.05rem;
}

#cultivos .split-copy p {
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.65;
}

.crop-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 1.5rem;
  align-content: start;
  justify-self: start;
  width: 100%;
  max-width: 28rem;
}

.crop-group {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.75rem;
  min-height: 7.9rem;
  padding: 0.15rem 0.35rem;
  text-align: center;
}

.crop-groups {
  order: 1;
}

.crop-group-icon {
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 33, 39, 0.08);
  box-shadow: 0 10px 24px rgba(23, 33, 39, 0.06);
  color: rgb(129, 33, 137);
}

.crop-group-icon-image {
  display: block;
  width: 3.05rem;
  height: 3.05rem;
  object-fit: contain;
}

.crop-group strong {
  font-size: 1rem;
  color: rgb(88, 89, 91);
  line-height: 1.2;
  max-width: 10ch;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 0.6rem;
}

.process-step {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.95rem;
  text-align: center;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 39, 0.08);
  color: rgb(129, 33, 137);
  box-shadow: 0 14px 28px rgba(23, 33, 39, 0.08);
}

.process-icon-image {
  display: block;
  width: 4.45rem;
  height: 4.45rem;
  object-fit: contain;
}

.process-step h3 {
  max-width: 11ch;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
}

.process-step p {
  max-width: 18ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.45;
}

.process-arrow {
  flex: 0 0 auto;
  align-self: flex-start;
  padding-top: 2rem;
  color: rgba(88, 89, 91, 0.82);
}

.process-arrow svg {
  width: 1.9rem;
  height: 1.9rem;
}

.benefits-shell {
  padding-top: 3rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.benefit-card h3 {
  margin-bottom: 0.75rem;
}

.faq-shell {
  padding-top: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

#faq .section-heading {
  margin-bottom: 0;
  justify-items: center;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

#faq .section-heading h2 {
  white-space: nowrap;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand-purple);
  transition: transform var(--transition);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding-top: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  gap: 0.9rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.contact-cards a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 33, 39, 0.07);
}

.contact-cards strong {
  font-size: 1rem;
  color: rgb(88, 89, 91);
  flex-shrink: 0;
}

.contact-cards span {
  text-align: right;
}

.lead-form {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  max-width: 28rem;
  justify-self: end;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-xl);
}

.form-intro {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0;
}

.lead-form label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 33, 39, 0.1);
  background: rgba(247, 249, 242, 0.75);
  color: var(--text-main);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.lead-form input:focus,
.lead-form textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.contact-cards a:focus-visible {
  outline: none;
  border-color: rgba(123, 47, 144, 0.5);
  box-shadow: 0 0 0 4px rgba(123, 47, 144, 0.12);
}

.site-footer {
  padding: 1.25rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 1.1rem;
  background: #edf0eb;
  border: 1px solid rgba(23, 33, 39, 0.09);
  color: var(--text-main);
  box-shadow: 0 16px 34px rgba(23, 33, 39, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.footer-symbol {
  width: min(3.9rem, 14vw);
  height: auto;
  flex-shrink: 0;
}

.footer-copy {
  display: grid;
  gap: 0.6rem;
  max-width: 34rem;
}

.footer-copy p {
  font-size: 1.05rem;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 33, 39, 0.08);
  color: rgb(88, 89, 91);
  transition:
    transform var(--transition),
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--brand-purple);
  background: rgba(129, 197, 48, 0.16);
  border-color: rgba(129, 197, 48, 0.32);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-brand strong,
.footer-brand p,
.footer-meta p,
.footer-meta a,
.footer-meta span {
  color: inherit;
}

.footer-meta {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 0.3rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(23, 33, 39, 0.09);
}

.footer-meta-label {
  font-size: 0.97rem;
  font-weight: 700;
  text-align: right;
}

.footer-meta .footer-socials {
  justify-content: flex-end;
}

.footer-meta a,
.footer-meta span {
  font-size: 0.97rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .story-grid,
  .faq-grid,
  .contact-grid,
  .product-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .faq-columns {
    grid-template-columns: 1fr;
  }

  #cultivos .split-copy {
    order: 1;
    justify-self: start;
    max-width: 100%;
  }

  #cultivos .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #cultivos .crop-groups {
    order: 2;
    max-width: 30rem;
  }

  .story-copy {
    max-width: 100%;
    position: static;
    top: auto;
  }

  .story-timeline {
    max-width: 44rem;
  }

  .process-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.2rem;
  }

  .process-arrow {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 34rem;
  }

}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(23, 33, 39, 0.08);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-art {
    width: min(100%, 33rem);
  }

  .hero-orbit {
    width: min(100%, 31rem);
    min-height: 31rem;
  }

  .hero-core {
    width: 11rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .section-shell {
    padding: 4rem 0;
  }

  .brand-wordmark {
    width: min(12rem, 58vw);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-meta {
    align-items: flex-start;
  }

  .footer-meta {
    justify-items: start;
    padding-left: 0;
    border-left: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(23, 33, 39, 0.09);
    width: 100%;
  }

  .button,
  .button-small,
  .lead-form button {
    width: 100%;
  }

  .product-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-environmental {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .story-event {
    grid-template-columns: 3.7rem minmax(0, 1fr);
    gap: 1rem;
  }

  .story-timeline::before,
  .story-event::before {
    left: 4.45rem;
  }

  .story-detail {
    padding: 0.88rem 0.92rem;
  }

  .crop-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  #faq .section-heading h2 {
    white-space: normal;
  }

  .process-step p {
    max-width: 26ch;
  }

  .hero-art {
    width: min(100%, 28rem);
  }

  .hero-orbit {
    width: 100%;
    min-height: 30rem;
    aspect-ratio: auto;
    padding-top: 4.6rem;
  }

  .hero-core {
    top: 42%;
    width: 9.5rem;
  }

  .hero-title-nowrap,
  .hero-lead {
    white-space: normal;
  }

  .floating-card {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
    margin-bottom: 0.75rem;
  }

  .hero-orbit .floating-card:last-of-type {
    margin-bottom: 0;
  }

  .section-accent .container {
    padding: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
