@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --green-950: #032f19;
  --green-900: #064724;
  --green-800: #075b2c;
  --green-700: #0b6b36;
  --green-600: #178148;
  --lime: #a9d52d;
  --lime-soft: #ddeb9f;
  --ink: #10231a;
  --muted: #647168;
  --paper: #f6f7f2;
  --white: #ffffff;
  --line: rgba(16, 35, 26, 0.14);
  --shadow: 0 24px 70px rgba(3, 47, 25, 0.13);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(169, 213, 45, 0.65);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 242, 0.88);
  backdrop-filter: blur(18px);
  transition:
    height 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(3, 47, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.brand {
  display: flex;
  flex: 0 0 220px;
  align-items: center;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 218px;
  height: auto;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #30473a;
  font-size: 0.91rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.lang-button {
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: #5a6b60;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(169, 213, 45, 0.15), transparent 30%),
    linear-gradient(135deg, #fbfcf8 0%, #f2f5ec 60%, #edf3e8 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -18%;
  width: 60vw;
  height: 100%;
  border-radius: 0 0 0 45%;
  background: linear-gradient(160deg, rgba(7, 91, 44, 0.08), rgba(169, 213, 45, 0.03));
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(169, 213, 45, 0.15);
}

.hero h1,
.section-heading h2,
.crops h2,
.technology h2,
.company h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.4rem, 6.6vw, 6.55rem);
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4b6053;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(7, 91, 44, 0.22);
}

.button-primary:hover {
  background: var(--green-900);
  box-shadow: 0 18px 36px rgba(7, 91, 44, 0.28);
}

.button-ghost {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 182px;
  padding-inline: 22px;
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.button-phone {
  color: var(--green-700);
  font-size: 0.77rem;
  font-weight: 700;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: #607066;
  font-size: 0.86rem;
}

.hero-location > span:first-child {
  color: var(--lime);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 478px);
}

.poster-frame {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(7, 91, 44, 0.13);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.poster-frame::after {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 70%;
  height: 70%;
  border-radius: 35px;
  background: var(--green-900);
  content: "";
}

.poster-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 8px 14px;
  color: #66766b;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poster-frame > img {
  width: 100%;
  max-height: 650px;
  border-radius: 25px;
  object-fit: cover;
  object-position: center;
}

.poster-stamp {
  position: absolute;
  right: -22px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  width: 118px;
  height: 118px;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(3, 47, 25, 0.2);
  transform: rotate(-7deg);
}

.poster-stamp strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.poster-stamp span {
  margin-top: 4px;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(7, 91, 44, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 18%;
  right: 4%;
  width: 620px;
  height: 620px;
}

.hero-orbit-two {
  top: 25%;
  right: 9%;
  width: 460px;
  height: 460px;
}

.metrics-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid rgba(7, 91, 44, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 40px rgba(3, 47, 25, 0.06);
  backdrop-filter: blur(14px);
}

.metric {
  min-height: 112px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green-800);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.28rem;
}

.metric span {
  display: block;
  color: #637269;
  font-size: 0.81rem;
  line-height: 1.35;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}

.section-heading .section-kicker {
  align-self: start;
}

.section-heading h2,
.crops h2,
.technology h2,
.company h2,
.contact h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(169, 213, 45, 0.25), transparent 35%),
    var(--green-900);
}

.card-number {
  display: inline-flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-700);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card-featured .card-number {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--lime);
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card-featured ul {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 17px;
  color: #52645a;
  font-size: 0.9rem;
}

.service-card-featured li {
  color: rgba(255, 255, 255, 0.82);
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.crops {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--green-950);
  background-size: 42px 42px;
}

.crops::after {
  position: absolute;
  right: -200px;
  bottom: -330px;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(169, 213, 45, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(169, 213, 45, 0.025),
    0 0 0 180px rgba(169, 213, 45, 0.018);
  content: "";
}

.crops-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.section-kicker-light {
  color: var(--lime);
}

.crops-copy {
  align-self: center;
}

.crops-copy p:not(.section-kicker) {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--green-700);
  font-weight: 700;
}

.crops .text-link {
  color: var(--lime);
}

.crop-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.crop-item {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 0.25s ease;
}

.crop-item:hover {
  padding-inline: 12px;
}

.crop-index {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
}

.crop-item strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.35rem;
}

.crop-item > span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.81rem;
  font-style: italic;
}

.technology-grid,
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 86px;
}

.tech-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(169, 213, 45, 0.17), transparent 30%),
    var(--green-900);
  box-shadow: var(--shadow);
}

.tech-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(420px) rotateX(20deg) scale(1.25);
}

.tech-target {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(169, 213, 45, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.target-ring {
  position: absolute;
  border: 1px solid rgba(169, 213, 45, 0.4);
  border-radius: 50%;
}

.target-ring-one {
  inset: 45px;
}

.target-ring-two {
  inset: 94px;
}

.target-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 6px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--lime);
  transform: translate(-50%, -50%);
}

.tech-target::before,
.tech-target::after {
  position: absolute;
  background: rgba(169, 213, 45, 0.45);
  content: "";
}

.tech-target::before {
  top: 50%;
  right: -50px;
  left: -50px;
  height: 1px;
}

.tech-target::after {
  top: -50px;
  bottom: -50px;
  left: 50%;
  width: 1px;
}

.tech-coordinate,
.tech-signal {
  position: absolute;
  color: rgba(255, 255, 255, 0.72);
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.tech-coordinate-one {
  top: 28px;
  left: 28px;
}

.tech-coordinate-two {
  right: 28px;
  bottom: 28px;
}

.tech-signal {
  top: 28px;
  right: 28px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
}

.tech-signal strong {
  color: var(--lime);
}

.technology-copy > p:not(.section-kicker),
.company-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.tech-points {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.tech-points > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tech-points strong {
  color: var(--green-700);
  font-family: "Manrope", Arial, sans-serif;
}

.tech-points span {
  color: var(--muted);
}

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

.legal-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 0;
}

.legal-data > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.legal-data dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 5px 0 0;
  font-size: 0.91rem;
  font-weight: 700;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(3, 47, 25, 0.1);
}

.location-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 91, 44, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 91, 44, 0.06) 1px, transparent 1px),
    #e5eadf;
  background-size: 28px 28px;
}

.map-road {
  position: absolute;
  height: 17px;
  border: 4px solid #cbd4c4;
  border-radius: 999px;
  background: #f7f8f4;
}

.road-one {
  top: 110px;
  right: -40px;
  left: -60px;
  transform: rotate(13deg);
}

.road-two {
  top: 20px;
  left: 48%;
  width: 17px;
  height: 390px;
  transform: rotate(-22deg);
}

.road-three {
  right: -50px;
  bottom: 48px;
  left: -30px;
  transform: rotate(-9deg);
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 53%;
  width: 50px;
  height: 50px;
  border: 9px solid rgba(255, 255, 255, 0.76);
  border-radius: 50% 50% 50% 0;
  background: var(--green-800);
  box-shadow: 0 10px 30px rgba(3, 47, 25, 0.25);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  right: 25px;
  bottom: 19px;
  color: var(--green-900);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.location-details {
  padding: 30px 34px 34px;
}

.location-details .section-kicker {
  margin-bottom: 12px;
}

.location-details address {
  color: #44574b;
  font-style: normal;
  line-height: 1.8;
}

.location-details .text-link {
  margin-top: 18px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 10%, rgba(169, 213, 45, 0.12), transparent 26%),
    var(--green-950);
}

.contact::after {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(169, 213, 45, 0.13);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.06rem;
}

.contact-methods {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-methods a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-methods span {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-form {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #34483c;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6ddd3;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcf9;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(23, 129, 72, 0.1);
  outline: none;
}

.contact-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green-700);
}

.contact-form .consent span {
  margin: 0;
  color: #69776e;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.5;
}

.button-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  color: var(--white);
  background: var(--green-800);
  cursor: pointer;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  margin: 11px 0 0;
  color: #829087;
  font-size: 0.7rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 0.86rem;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #075329;
  background: #e5f5e6;
}

.form-status.is-error {
  color: #8d1a1a;
  background: #fbe8e6;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  color: #c9d0cc;
  background: #061c11;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 0.9fr;
  gap: 70px;
  padding: 70px 0 50px;
}

.footer-brand img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #87948d;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-contact span {
  color: #829087;
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #79867f;
  font-size: 0.8rem;
}

.whatsapp-button {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 6px 17px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: #178a4a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.19);
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
}

.whatsapp-button > span {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #178a4a;
  background: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
}

.whatsapp-button strong {
  font-size: 0.8rem;
}

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

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.2vw, 5rem);
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.1fr 0.9fr;
    gap: 28px;
  }

  .technology-grid,
  .company-grid {
    gap: 55px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 74px;
  }

  .brand {
    flex-basis: 190px;
  }

  .brand img {
    width: 188px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 95px 7vw 40px;
    background: rgba(246, 247, 242, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

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

  .main-nav a {
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(1.9rem, 8vw, 3.4rem);
    font-weight: 800;
  }

  .language-switcher {
    z-index: 3;
  }

  .nav-toggle {
    z-index: 3;
    order: 3;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 120px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 560px);
  }

  .metrics-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric:nth-child(3) {
    border-right: 0;
  }

  .metric:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading .section-kicker {
    grid-column: 1 / -1;
  }

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

  .service-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .crops-grid,
  .technology-grid,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .crops-grid,
  .technology-grid,
  .company-grid {
    gap: 60px;
  }

  .contact-copy {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand {
    flex-basis: 148px;
    height: 50px;
  }

  .brand img {
    width: 148px;
  }

  .language-switcher {
    position: fixed;
    z-index: 4;
    right: 14px;
    bottom: 15px;
    box-shadow: 0 9px 28px rgba(3, 47, 25, 0.14);
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero {
    padding: 104px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-ghost {
    align-items: center;
  }

  .poster-frame {
    border-radius: 25px;
    transform: none;
  }

  .poster-frame > img {
    border-radius: 17px;
  }

  .poster-stamp {
    right: -6px;
    width: 96px;
    height: 96px;
  }

  .metrics-wrap {
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
  }

  .metric {
    min-height: 100px;
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-top: 0;
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading .section-kicker {
    grid-column: auto;
  }

  .section-heading h2,
  .crops h2,
  .technology h2,
  .company h2,
  .contact h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .service-card {
    padding: 26px;
  }

  .crops-grid {
    gap: 44px;
  }

  .crop-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .crop-item > span:last-child {
    display: none;
  }

  .tech-visual {
    min-height: 390px;
  }

  .tech-target {
    width: 220px;
    height: 220px;
  }

  .target-ring-one {
    inset: 36px;
  }

  .target-ring-two {
    inset: 78px;
  }

  .tech-points > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-data {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 260px;
  }

  .location-details {
    padding: 25px;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-form {
    padding: 22px 17px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-height: 110px;
    padding-bottom: 18px;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 66px;
    padding-right: 8px;
  }

  .whatsapp-button strong {
    display: none;
  }
}
