:root {
  --wc-ink: #2b3b33;
  --wc-ink-on-light: #2b3b33;
  --wc-muted: #6e7c74;
  --wc-primary: #1f8f4e;
  --wc-secondary: #8ccf8b;
  --wc-accent: #145a32;
  --wc-soft: #e8f5e8;
  --wc-border: #d6e5d6;
  --wc-card: #ffffff;
  --wc-surface: #ffffff;
  --wc-bg: #f6fbf7;
  --container-max: 1480px;
  --container-gutter: 24px;
  --shadow: 0 20px 40px rgba(25, 61, 40, 0.12);
  --radius: 20px;
  --card-hover-lift: -4px;
  --card-hover-shadow: 0 18px 36px rgba(8, 45, 30, 0.18);
  --card-hover-border: rgba(11, 93, 70, 0.45);
  --card-hover-bg: linear-gradient(180deg, #ffffff 0%, rgba(11, 93, 70, 0.08) 100%);
  --card-media-scale: 1.02;
  --card-media-scale-hover: 1.08;
  --font-display: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-tech: "Space Grotesk", sans-serif;
  --type-h1: clamp(2.4rem, 3vw, 3.6rem);
  --type-h2: clamp(1.9rem, 2.2vw, 2.8rem);
  --type-h3: clamp(1.2rem, 1.5vw, 1.6rem);
  --type-body: 16px;
  --type-small: 14px;
  --wc-tech-1: #0b5d46;
  --wc-tech-2: #1aa06a;
  --wc-tech-3: #3fd2b2;
  color-scheme: light dark;
}

@media (min-width: 1025px) {
  :root {
    --container-gutter: 20px;
  }
}

html[data-theme="dark"] {
  --wc-ink: #e7f3ec;
  --wc-muted: rgba(231, 243, 236, 0.72);
  --wc-primary: #4be08a;
  --wc-secondary: #3fd2b2;
  --wc-accent: #7ce8c2;
  --wc-soft: rgba(75, 224, 138, 0.08);
  --wc-border: rgba(231, 243, 236, 0.14);
  --wc-card: #0b1d15;
  --wc-surface: #0c1d16;
  --wc-bg: #060f0b;
  --shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
  --card-hover-shadow: 0 26px 52px rgba(0, 0, 0, 0.6);
  --card-hover-border: rgba(75, 224, 138, 0.35);
  --card-hover-bg: linear-gradient(180deg, #0b1d15 0%, rgba(75, 224, 138, 0.08) 100%);
  --wc-tech-1: #aaf3da;
  --wc-tech-2: #6cebb7;
  --wc-tech-3: #3fd2b2;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --wc-ink: #e7f3ec;
    --wc-muted: rgba(231, 243, 236, 0.72);
    --wc-primary: #4be08a;
    --wc-secondary: #3fd2b2;
    --wc-accent: #7ce8c2;
    --wc-soft: rgba(75, 224, 138, 0.08);
    --wc-border: rgba(231, 243, 236, 0.14);
    --wc-card: #0b1d15;
    --wc-surface: #0c1d16;
    --wc-bg: #060f0b;
    --shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
    --card-hover-shadow: 0 26px 52px rgba(0, 0, 0, 0.6);
    --card-hover-border: rgba(75, 224, 138, 0.35);
    --card-hover-bg: linear-gradient(180deg, #0b1d15 0%, rgba(75, 224, 138, 0.08) 100%);
    --wc-tech-1: #aaf3da;
    --wc-tech-2: #6cebb7;
    --wc-tech-3: #3fd2b2;
  }

  html:not([data-theme]) .theme-icon-moon {
    display: none;
  }

  html:not([data-theme]) .theme-icon-sun {
    display: block;
  }
}

html[data-theme="dark"] body {
  background: radial-gradient(circle at 15% 10%, rgba(75, 224, 138, 0.12), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(63, 210, 178, 0.1), transparent 40%),
    linear-gradient(180deg, #060f0b 0%, #050d09 55%, #040906 100%);
}

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

body {
  font-family: var(--font-body);
  color: var(--wc-ink);
  background: radial-gradient(circle at 15% 10%, rgba(31, 143, 78, 0.2), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(140, 207, 139, 0.25), transparent 35%),
    linear-gradient(180deg, #f4fbf6 0%, #f6fbf7 55%, #ffffff 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: inherit;
}

h1 {
  font-size: var(--type-h1);
}

h2 {
  font-size: var(--type-h2);
}

h3 {
  font-size: var(--type-h3);
}

p,
li {
  font-size: var(--type-body);
}

small {
  font-size: var(--type-small);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wc-border);
}

html[data-theme="dark"] .site-header {
  background: rgba(6, 15, 11, 0.82);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  min-width: 0;
}

.brand>div {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: 220px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.brand small {
  display: block;
  font-size: 12px;
  color: var(--wc-muted);
  line-height: 1.2;
  white-space: nowrap;
}

.brand {
  justify-self: start;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: inherit;
  color: var(--wc-ink);
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 4px 0;
}

.nav-link-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wc-ink);
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--wc-primary);
}

.nav-link-group:hover .nav-caret,
.nav-caret:focus-visible {
  color: var(--wc-primary);
}

.nav-item {
  position: relative;
}

.caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 16px 12px 12px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
  border: 1px solid var(--wc-border);
  z-index: 20;
}

html[data-theme="dark"] .dropdown {
  background: rgba(11, 29, 21, 0.96);
}

.dropdown a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 15px;
  color: var(--wc-ink);
  font-weight: 500;
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a:hover {
  color: var(--wc-primary);
  background: rgba(31, 143, 78, 0.12);
}

.dropdown a:focus-visible {
  outline: 2px solid rgba(31, 143, 78, 0.45);
  outline-offset: 2px;
}

.dropdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: var(--wc-muted);
  padding: 10px 12px 6px;
  border-top: 1px solid var(--wc-border);
  margin-top: 8px;
}

.dropdown-label:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 6px;
}

.dropdown-sub {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
}

.dropdown-sub::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 143, 78, 0.35);
  transform: translateY(-50%);
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  justify-self: end;
  grid-column: 3;
}

.lang-toggle {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--wc-border);
  background: var(--wc-surface);
  overflow: hidden;
  padding: 2px;
}

.lang-toggle__button {
  border: none;
  background: transparent;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wc-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle__button.is-active {
  background: rgba(31, 143, 78, 0.12);
  color: var(--wc-primary);
}

.theme-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid var(--wc-primary);
  background: linear-gradient(135deg, rgba(31, 143, 78, 0.15) 0%, rgba(140, 207, 139, 0.25) 100%);
  color: var(--wc-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 143, 78, 0.2);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  transition: transform 0.3s ease;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle {
  background: linear-gradient(135deg, rgba(255, 200, 50, 0.2) 0%, rgba(255, 160, 50, 0.15) 100%);
  border-color: #f5a623;
  color: #f5a623;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.theme-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(135deg, rgba(31, 143, 78, 0.25) 0%, rgba(140, 207, 139, 0.35) 100%);
  box-shadow: 0 8px 20px rgba(31, 143, 78, 0.3);
}

.theme-toggle:hover svg {
  transform: rotate(15deg);
}

html[data-theme="dark"] .theme-toggle:hover {
  background: linear-gradient(135deg, rgba(255, 200, 50, 0.35) 0%, rgba(255, 160, 50, 0.25) 100%);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(31, 143, 78, 0.55);
  outline-offset: 3px;
}

.btn.partner-cta {
  background: linear-gradient(135deg, var(--wc-primary) 0%, var(--wc-secondary) 100%);
  border-color: transparent;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(31, 143, 78, 0.28);
}

.btn.partner-cta:hover,
.btn.partner-cta:focus-visible {
  background: linear-gradient(135deg, #0f6d3b 0%, #1aa06a 100%);
  box-shadow: 0 16px 28px rgba(15, 109, 59, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: none;
  grid-column: 3;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--wc-ink);
  transition: 0.3s ease;
}

.nav-cta {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.nav-cta .partner-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slider .carousel-slide {
  min-width: 100%;
  padding: 0;
  display: block;
  background: transparent;
}

.hero-slider .carousel-track {
  touch-action: pan-y;
}

.hero-slide {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 36, 23, 0.9) 0%, rgba(13, 36, 23, 0.35) 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 108px 0 108px;
  z-index: 2;
}

.hero-content>* {
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.is-active .hero-content>* {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(31, 143, 78, 0.22);
  border: 1px solid rgba(31, 143, 78, 0.5);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title span {
  color: #d8f6dc;
}

.hero-description {
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-slider .hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 64px));
  border-radius: 999px;
  background: rgba(12, 25, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.hero-carousel {
  max-width: 640px;
  margin-top: 8px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 40px rgba(10, 30, 18, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 22px 26px;
  display: grid;
  gap: 10px;
  background: rgba(15, 32, 20, 0.45);
}

.carousel-slide h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #ffffff;
}

.carousel-slide p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.slide-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(31, 143, 78, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(12, 25, 18, 0.75);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: #ffffff;
}

.carousel-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.ticker-band {
  position: relative;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(31, 143, 78, 0.08), rgba(140, 207, 139, 0.2), rgba(31, 143, 78, 0.08));
  border-bottom: 1px solid var(--wc-border);
}

.ticker {
  width: min(var(--container-max), calc(100% - var(--container-gutter)));
  margin: 0 auto;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
  will-change: transform;
}

.ticker-band-fast .ticker-track {
  animation-name: tickerScrollOffset;
  animation-duration: 36s;
}
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--wc-border);
  box-shadow: 0 10px 18px rgba(25, 61, 40, 0.12);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--wc-ink-on-light);
}

.ticker-item span {
  white-space: nowrap;
}

.ticker-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ticker-brand img {
  display: block;
}

.ticker-icon {
  width: 26px;
  height: 26px;
}

.ticker-wordmark {
  height: 22px;
  width: auto;
}

@media (hover: hover) and (pointer: fine) {
  .ticker:hover .ticker-track {
    animation-play-state: paused;
  }
}

.ticker-logo {
  height: 22px;
  width: auto;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(135deg, rgba(231, 245, 236, 0.85), rgba(244, 250, 244, 0.85));
}

html[data-theme="dark"] .section-soft {
  background: linear-gradient(135deg, rgba(11, 29, 21, 0.92), rgba(6, 15, 11, 0.92));
}

#announcements {
  padding-bottom: 56px;
}

#docs,
#blog,
.cta-section,
#contact,
#faq,
#about,
#press {
  padding: 56px 0;
}

#blog.blog-mini {
  padding: 36px 0;
}

.advantages-section {
  padding: 20px 0 60px;
}

.delivery-section {
  padding: 60px 0 20px;
}

.delivery-section .eyebrow {
  font-size: 13px;
  letter-spacing: 1.4px;
}

.delivery-section h2 {
  font-size: clamp(32px, 4.8vw, 52px);
}

.delivery-section p {
  font-size: 17px;
}

.delivery-section .checklist li {
  font-size: 15px;
}

.ioflex-section .cta-row .btn {
  white-space: nowrap;
}

.section-highlight {
  background: var(--wc-card);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.solutions-section {
  padding: 56px 0;
}

.solutions-section .section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.solutions-section .eyebrow,
.robot-section .eyebrow,
.products-section .eyebrow,
.advantages-section .eyebrow {
  font-family: var(--font-tech);
  font-size: 13px;
  letter-spacing: 2.2px;
  color: var(--wc-tech-1);
}

.solutions-section .section-head h2,
.robot-section h2,
.products-section .section-head h2,
.advantages-section .section-head h2 {
  font-family: var(--font-tech);
  font-size: clamp(30px, 4.4vw, 48px);
  letter-spacing: -0.6px;
  color: var(--wc-tech-1);
  text-shadow: 0 10px 24px rgba(26, 160, 106, 0.16);
  margin-bottom: 12px;
}

.solutions-lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--wc-ink);
  font-weight: 500;
}

.solutions-steps-title {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  line-height: 1.4;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 93, 70, 0.18);
  background: rgba(15, 100, 74, 0.08);
  font-family: var(--font-tech);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--wc-accent);
}

.solutions-steps-title strong {
  font-weight: 700;
  letter-spacing: 0.6px;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {

  .solutions-section .eyebrow,
  .robot-section .eyebrow,
  .products-section .eyebrow,
  .advantages-section .eyebrow,
  .solutions-section .section-head h2,
  .robot-section h2,
  .products-section .section-head h2,
  .advantages-section .section-head h2,
  .solutions-steps-title strong {
    background: linear-gradient(120deg, var(--wc-tech-1), var(--wc-tech-2), var(--wc-tech-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.home-page .section h2 {
  color: var(--wc-ink);
  text-shadow: none;
  background: none;
  -webkit-text-fill-color: var(--wc-ink);
}

.home-page .cta-section h2 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--wc-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.single-line-title {
  white-space: nowrap;
}

.section-head p {
  color: var(--wc-muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.split h2 + p {
  margin-top: 12px;
}

@media (min-width: 900px) {
  .split.is-reverse > :first-child {
    order: 2;
  }

  .split.is-reverse > :last-child {
    order: 1;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.evidence-copy {
  display: grid;
  gap: 14px;
}

.evidence-points {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.evidence-point {
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.evidence-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}

.evidence-point span {
  color: var(--wc-muted);
  font-size: 14px;
}

.evidence-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.evidence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.evidence-image {
  transform: none;
}


.evidence-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--wc-ink-on-light);
}

.irrigation-types-grid {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.control-automation-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.control-automation-grid {
  flex: 1 1 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 14px;
  align-content: stretch;
}

.control-automation-video {
  flex: 0 0 44%;
  margin-top: 0;
  width: 100%;
  max-width: 560px;
  align-self: stretch;
  align-items: stretch;
}

.control-automation-video .fertigation-video-player {
  height: 100%;
}

.control-automation-grid .feature-card {
  padding: 16px;
}

.control-automation-grid .feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.control-automation-grid .feature-card p {
  font-size: 13px;
}

.products-section {
  padding: 56px 0;
}

.products-section .section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.products-lead {
  font-size: clamp(16px, 2.1vw, 19px);
  color: var(--wc-muted);
}

.products-mini {
  padding: 40px 0;
}

.products-mini .section-head {
  margin-bottom: 18px;
}

.products-mini .products-lead {
  font-size: 15px;
}

.products-mini .product-grid {
  gap: 16px;
}

.products-mini .product-card {
  min-height: 220px;
}

.products-mini .product-media {
  height: 130px;
}

.products-mini .product-body {
  padding: 14px;
  gap: 6px;
}

.products-mini .product-body h3 {
  font-size: 16px;
}

.products-mini .product-body p {
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(25, 61, 40, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(25, 61, 40, 0.16);
}

.product-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--card-media-scale));
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(var(--card-media-scale-hover));
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.2px;
}

.product-body p {
  font-size: 14px;
  color: var(--wc-muted);
}

.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--wc-primary);
}

.product-card:hover .product-link,
.product-card:focus-visible .product-link {
  color: var(--wc-accent);
}

.products-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.products-mini .products-cta {
  margin-top: 12px;
}

.robot-section {
  padding: 56px 0;
}

.robot-harvest-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.84) 0%, rgba(11, 59, 42, 0.5) 55%, rgba(11, 59, 42, 0.25) 100%),
    url("assets/harvest-robot.webp") center/cover no-repeat;
}

.robot-harvest-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -160px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.45), transparent 70%);
}

.robot-harvest-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.robot-harvest-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.robot-harvest-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.robot-harvest-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.robot-harvest-highlight {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.robot-harvest-highlight span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.robot-harvest-highlight strong {
  display: block;
  font-size: 16px;
  margin-top: 6px;
  font-family: var(--font-display);
}

.robot-harvest-highlight p {
  font-size: 12px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.robot-harvest-image .image-panel-caption {
  background: rgba(255, 255, 255, 0.95);
}

.system-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(9, 45, 33, 0.88) 0%, rgba(9, 45, 33, 0.55) 55%, rgba(9, 45, 33, 0.28) 100%);
}

.system-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -180px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.35), transparent 70%);
}

.system-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.system-hero--harvest {
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.88) 0%, rgba(11, 59, 42, 0.52) 60%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/harvest-robot.webp") center/cover no-repeat;
}

.system-hero--fertigation {
  background: linear-gradient(120deg, rgba(12, 58, 35, 0.88) 0%, rgba(12, 58, 35, 0.55) 60%, rgba(12, 58, 35, 0.2) 100%),
    url("assets/6cc9e2e79242.webp") center/cover no-repeat;
}

.system-hero--digital {
  background: linear-gradient(120deg, rgba(8, 36, 26, 0.92) 0%, rgba(8, 36, 26, 0.6) 60%, rgba(8, 36, 26, 0.2) 100%),
    url("assets/996da53041fc.png") center/cover no-repeat;
}

.system-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.system-hero-copy p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.system-hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.system-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.system-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.system-hero .image-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-page .section-head h1 {
  font-size: clamp(30px, 4vw, 42px);
}

.legal-content {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 8px;
}

.legal-content ul {
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.legal-content li {
  font-size: 14px;
  color: var(--wc-muted);
}

.robot-harvest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.robot-harvest-photo {
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  gap: 10px;
}

.robot-harvest-photo .gallery-zoom {
  border: none;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
  width: 100%;
}

.robot-harvest-photo .gallery-zoom:focus-visible {
  outline: 2px solid var(--wc-primary);
  outline-offset: 4px;
  border-radius: 16px;
}

.gallery-image {
  user-select: none;
  -webkit-user-drag: none;
}

.robot-harvest-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(var(--card-media-scale));
  transition: transform 0.4s ease;
}

#fairs-gallery .robot-harvest-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  gap: 18px;
}

#fairs-gallery .robot-harvest-photo {
  gap: 8px;
}

#fairs-gallery .gallery-zoom {
  aspect-ratio: 4 / 3;
}

#fairs-gallery .robot-harvest-photo img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  background: none;
}

#fairs-gallery .robot-harvest-photo figcaption {
  min-height: 34px;
}

#fairs-gallery .robot-harvest-photo:hover img {
  transform: scale(1.06);
}

.robot-harvest-photo figcaption {
  padding: 0 14px 16px;
  font-size: 13px;
  color: var(--wc-muted);
}

.robot-harvest-photo:hover img {
  transform: scale(var(--card-media-scale-hover));
}

.fair-block {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.fair-head h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 6px;
}

.fair-head p {
  color: var(--wc-muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 6, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 320;
  padding: 20px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  max-width: min(960px, 92vw);
  max-height: 86vh;
  width: 100%;
  padding: 14px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.lightbox-panel img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-caption {
  text-align: center;
  font-size: 13px;
  color: var(--wc-muted);
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(0, 0, 0, 0.8);
}

.robot-lead {
  color: var(--wc-muted);
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 20px;
}

.video-panel {
  display: flex;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 26px;
  border: 1px dashed rgba(31, 143, 78, 0.45);
  background: radial-gradient(circle at top, rgba(31, 143, 78, 0.15), rgba(255, 255, 255, 0.9)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 245, 235, 0.9));
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.video-frame--media {
  padding: 0;
  min-height: 0;
  border-style: solid;
  border-color: var(--wc-border);
  background: #0a0f0c;
  display: block;
}

.video-frame--media::before {
  display: none;
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 12, 10, 0.6);
  z-index: 999;
}

.video-lightbox.is-open {
  display: flex;
}

.video-lightbox-panel {
  position: relative;
  background: #0b1410;
  border-radius: 16px;
  padding: 18px;
  max-width: min(960px, 92vw);
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-lightbox-panel video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #050706;
}

.video-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 15, 12, 0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.video-mobile-trigger {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #0a0f0c;
  background-image: var(--poster-url);
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-mobile-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 36, 26, 0.2), rgba(8, 36, 26, 0));
}

.video-mobile-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-mobile-play::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-modal-open {
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 24, 18, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .breadcrumb-sep {
  opacity: 0.6;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 143, 78, 0.18), transparent 55%);
  opacity: 0.6;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 143, 78, 0.4);
  box-shadow: 0 20px 40px rgba(31, 143, 78, 0.25);
  display: grid;
  place-items: center;
  z-index: 1;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 14px solid var(--wc-primary);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.video-placeholder {
  position: relative;
  z-index: 1;
}

.video-placeholder span {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--wc-ink);
}

.video-placeholder p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--wc-muted);
}

.about-story {
  padding: 64px 0;
}

.about-compact {
  max-width: 760px;
  margin: 0 auto;
}

.about-compact p {
  color: var(--wc-muted);
}

.feature-card {
  background: var(--wc-card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--wc-border);
  box-shadow: 0 12px 30px rgba(25, 61, 40, 0.12);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.erp-insights .feature-card {
  display: grid;
  gap: 8px;
}

.control-points {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--wc-muted);
}

.control-points li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}

.control-points li::before {
  content: "•";
  color: var(--wc-primary);
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
}

.mini-links a {
  color: var(--wc-primary);
}

.image-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel.media-panel {
  aspect-ratio: 16 / 9;
  background: #000;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-panel-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--wc-ink-on-light);
}


.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.solution-card {
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  color: var(--wc-ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
}

.solution-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--card-media-scale));
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-media img {
  transform: scale(var(--card-media-scale-hover));
}

.solution-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.solution-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--wc-tech-1);
}

.solution-step::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--wc-tech-2);
}

.solution-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}

.solution-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.solution-card a {
  font-size: 13px;
  color: var(--wc-primary);
  font-weight: 600;
  margin-top: auto;
}

.image-stack {
  position: relative;
}

.image-stack .main-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-stack .floating-image {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 45%;
  border-radius: 18px;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 40px rgba(25, 61, 40, 0.18);
}

.ioflex-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.ioflex-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  border: 1px solid rgba(11, 93, 70, 0.18);
  background: linear-gradient(145deg, rgba(31, 143, 78, 0.12), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ioflex-collage-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--wc-card);
  box-shadow: 0 16px 30px rgba(12, 42, 29, 0.18);
}

.ioflex-collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ioflex-collage-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 45, 30, 0), rgba(9, 45, 30, 0.2));
  opacity: 0.35;
  pointer-events: none;
}

.ioflex-collage-main {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
}

.ioflex-collage-top {
  grid-column: 5 / span 2;
  grid-row: 1 / span 2;
}

.ioflex-collage-mid {
  grid-column: 5 / span 2;
  grid-row: 3 / span 2;
}

.ioflex-collage-small {
  grid-column: 1 / span 3;
  grid-row: 5 / span 2;
}

.ioflex-collage-logo {
  grid-column: 4 / span 3;
  grid-row: 5 / span 2;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 93, 70, 0.2);
  box-shadow: 0 16px 30px rgba(12, 42, 29, 0.16);
  padding: 12px;
}

.ioflex-collage-logo img {
  width: min(140px, 80%);
  height: auto;
  object-fit: contain;
}

.ioflex-content {
  display: grid;
  gap: 6px;
}

.ioflex-section .subtitle {
  margin-bottom: 6px;
}

.ioflex-section .checklist {
  margin: 12px 0;
  gap: 6px;
}

.ioflex-section .specs-grid {
  margin-bottom: 12px;
}

.subtitle {
  font-weight: 600;
  color: var(--wc-muted);
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wc-accent);
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.spec-card {
  background: var(--wc-soft);
  padding: 16px;
  border-radius: 16px;
  font-family: var(--font-display);
}

.spec-card span {
  font-size: 13px;
  color: var(--wc-muted);
}

.spec-card strong {
  display: block;
  font-size: 16px;
  margin-top: 6px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.adv-card {
  background: var(--wc-card);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--wc-border);
  font-family: var(--font-display);
  font-weight: 600;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.catalog-card {
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  min-height: 190px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.catalog-media {
  border-radius: 14px;
  overflow: hidden;
}

.catalog-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.catalog-media--harvest img {
  object-position: center 35%;
}

.catalog-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wc-muted);
  font-weight: 600;
}

.catalog-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
}

.catalog-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.catalog-cta {
  font-weight: 600;
  color: var(--wc-primary);
  font-size: 13px;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: var(--card-hover-shadow);
}

.catalog-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--wc-muted);
}

.catalog-note a {
  color: var(--wc-primary);
  font-weight: 600;
}

.doc-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(25, 61, 40, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
  height: 100%;
}

.doc-card > div {
  display: grid;
  gap: 4px;
}

.doc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(31, 143, 78, 0.15);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wc-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

.doc-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}

.doc-card span {
  font-size: 13px;
  color: var(--wc-muted);
}

.doc-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  box-shadow: var(--card-hover-shadow);
}

.doc-card:hover .doc-icon {
  background: rgba(11, 93, 70, 0.18);
  color: var(--wc-accent);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.press-card {
  background: var(--wc-card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.press-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
}

.press-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.press-card a {
  font-weight: 600;
  color: var(--wc-primary);
  font-size: 13px;
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.announcement-card {
  background: var(--wc-card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  overflow: hidden;
}


.announcement-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  transform: scale(var(--card-media-scale));
  transition: transform 0.4s ease;
}

.announcement-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
}

.announcement-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.announcement-card a {
  font-weight: 600;
  color: var(--wc-primary);
  font-size: 13px;
}

.announcement-card:hover img {
  transform: scale(var(--card-media-scale-hover));
}

.fertigation-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/5df899440c8d.jpg") center/cover no-repeat;
}

.fertigation-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.fertigation-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.fertigation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.fertigation-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.fertigation-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.fertigation-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.fertigation-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.fertigation-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.fertigation-meta-card {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.fertigation-meta-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.fertigation-meta-card strong {
  display: block;
  font-size: 15px;
  margin-top: 6px;
  font-family: var(--font-display);
}

.fertigation-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--wc-muted);
}

.fertigation-brand-light {
  margin-top: 12px;
}

.fertigation-video .section-head {
  align-items: center;
}

.fertigation-video-frame {
  margin-top: 20px;
  background: var(--wc-card);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  height: 100%;
  display: grid;
  align-items: center;
}

.fertigation-video-player {
  width: 100%;
  border-radius: 18px;
  background: #0b3b2a;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.fertigation-brand-row img {
  height: 24px;
  width: auto;
}

.fertigation-hero .fertigation-brand-row {
  color: rgba(255, 255, 255, 0.8);
}

.control-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(10, 52, 38, 0.78) 0%, rgba(10, 52, 38, 0.42) 55%, rgba(10, 52, 38, 0.2) 100%),
    url("assets/8d937983f841.jpg") center/cover no-repeat;
}

.control-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.control-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.control-hero-grid,
.irrigation-hero-grid,
.erp-hero-grid,
.delivery-hero-grid,
.modernization-hero-grid,
.forecast-hero-grid,
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.control-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.control-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.control-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.control-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.control-hero .fertigation-brand-row {
  color: rgba(255, 255, 255, 0.8);
}

.irrigation-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/078f6dade1bd.webp") center/cover no-repeat;
}

.irrigation-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.irrigation-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.irrigation-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.irrigation-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.irrigation-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.irrigation-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.irrigation-hero .fertigation-brand-row {
  color: rgba(255, 255, 255, 0.8);
}

.erp-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/1cd6ced8af77.webp") center/cover no-repeat;
}

.erp-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.erp-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.erp-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.erp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.erp-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.erp-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.delivery-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(5, 25, 15, 0.92) 0%, rgba(5, 25, 15, 0.75) 60%, rgba(5, 30, 20, 0.5) 100%),
    url("assets/referans-hero-bg.jpg") center/cover no-repeat;
}

.delivery-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.delivery-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.delivery-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.delivery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.delivery-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.delivery-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.support-hero {
  background: linear-gradient(
      120deg,
      rgba(5, 25, 15, 0.92) 0%,
      rgba(5, 25, 15, 0.75) 60%,
      rgba(5, 30, 20, 0.5) 100%
    ),
    url("assets/support.jpg") center/100% auto no-repeat;
}

@media (max-width: 768px) {
  .support-hero {
    background-position: center, center;
    background-size: auto, cover;
    background-repeat: no-repeat, no-repeat;
  }
}

.modernization-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/bd0f8594cbc7.webp") center/cover no-repeat;
}

.modernization-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.modernization-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.modernization-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.modernization-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.modernization-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.modernization-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.forecast-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/47871a8f211a.webp") center/cover no-repeat;
}

.forecast-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.forecast-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.forecast-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.forecast-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.forecast-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.forecast-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 80px;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(11, 59, 42, 0.78) 0%, rgba(11, 59, 42, 0.42) 55%, rgba(11, 59, 42, 0.2) 100%),
    url("assets/8d937983f841.jpg") center/cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 210, 178, 0.5), transparent 70%);
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.about-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.modernization-performance h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
}

.fertigation-hero-panel {
  background: linear-gradient(140deg, rgba(7, 27, 20, 0.78), rgba(7, 27, 20, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: 0 24px 48px rgba(5, 24, 16, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fertigation-panel-head span {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.fertigation-panel-head strong {
  display: block;
  font-size: 19px;
  margin-top: 6px;
  font-family: var(--font-display);
  color: #ffffff;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.fertigation-panel-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.fertigation-panel-list li {
  display: flex;
  gap: 12px;
}

.fertigation-panel-list li span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.fertigation-panel-list h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.fertigation-panel-list p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.fertigation-panel-action {
  justify-self: end;
  transform: translateX(10px);
}

.fertigation-systems .section-head {
  max-width: none;
  width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.fertigation-systems .section-head .eyebrow,
.fertigation-systems .section-head h2,
.fertigation-systems .section-head .fertigation-series-lead {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.fertigation-series-lead {
  font-size: 16px;
  color: var(--wc-muted);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.6;
}

.fertigation-series-axis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.fertigation-series-axis span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 78, 0.2);
  background: rgba(31, 143, 78, 0.08);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wc-accent);
  text-align: center;
}

.fertigation-series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 10px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.fertigation-series-center {
  max-width: 880px;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  text-align: left;
}

.fertigation-series-card {
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  padding: 16px;
  box-shadow: 0 12px 26px rgba(25, 61, 40, 0.1);
  text-align: left;
}

.fertigation-series-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--wc-ink);
}

.fertigation-series-card p {
  font-size: 14px;
  color: var(--wc-muted);
  margin: 0;
}

.fertigation-series-card strong {
  color: var(--wc-accent);
  font-weight: 600;
}

.fertigation-systems .fertigation-brand-row {
  justify-content: flex-start;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.fertigation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.fertigation-card {
  position: relative;
  overflow: hidden;
  background: var(--wc-card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--wc-border);
  box-shadow: 0 18px 36px rgba(25, 61, 40, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease,
    background 0.35s ease;
}

.fertigation-card::before {
  content: none;
}

.fertigation-card>* {
  position: relative;
  z-index: 1;
}

.fertigation-card-media {
  height: 300px;
  border-radius: 16px;
  background: #f9fbfa;
  border: 1px solid rgba(31, 143, 78, 0.18);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 14px;
}

.fertigation-card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 18px 28px rgba(8, 45, 30, 0.32));
  margin-top: 30px;
}

.fertigation-card-media img.is-compact {
  max-width: 65%;
  max-height: 65%;
  justify-self: center;
  align-self: start;
  object-fit: contain;
  object-position: center top;
  margin-top: 20px;
}

.fertigation-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  box-shadow: var(--card-hover-shadow);
}

.fertigation-card:hover .fertigation-card-media {
  background: var(--wc-card);
}

.fertigation-card:hover .fertigation-card-media img {
  transform: none;
  filter: drop-shadow(0 20px 30px rgba(8, 45, 30, 0.35));
}

.fertigation-card:hover::before {
  opacity: 0.06;
  transform: scale(1.05);
}

.fertigation-card:hover p,
.fertigation-card:hover .fertigation-points,
.fertigation-card:hover .fertigation-tag {
  color: var(--wc-ink);
}

.fertigation-card:hover .fertigation-slogan {
  color: var(--wc-accent);
}

.fertigation-systems .section-head,
.fertigation-systems .fertigation-grid {
  transform: translateX(0);
}

.fertigation-card p {
  color: var(--wc-muted);
  font-size: 14px;
}

.fertigation-card>p:not(.fertigation-slogan) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.5em * 3);
  max-height: calc(1.5em * 3);
  line-height: 1.5;
}

.fertigation-slogan {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 700;
  color: var(--wc-primary);
}

.fertigation-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--wc-soft);
  min-height: 78px;
  align-items: start;
}

.fertigation-specs span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--wc-muted);
  min-height: 2.2em;
  line-height: 1.2;
}

.fertigation-specs strong {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  font-family: var(--font-display);
  color: var(--wc-ink);
}

.fertigation-points {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--wc-muted);
  font-size: 13px;
  min-height: calc(1.4em * 2 + 6px);
}

.fertigation-points li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}

.fertigation-points li span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  flex: 1;
  line-height: 1.4;
  max-height: 1.4em;
}

.fertigation-points li::before {
  content: "•";
  color: var(--wc-primary);
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.fertigation-card-head {
  display: grid;
  gap: 6px;
}

.fertigation-chip {
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--wc-primary);
  text-transform: uppercase;
}

.fertigation-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--wc-ink);
  font-family: var(--font-display);
}

.fertigation-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.fertigation-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 16px;
}

.forecast-problems .fertigation-flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fertigation-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.fertigation-flow-media {
  margin-top: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  justify-self: center;
  align-self: stretch;
}

.fertigation-flow-card {
  position: relative;
  overflow: hidden;
  background: var(--wc-card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 143, 78, 0.22);
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(25, 61, 40, 0.12);
  background: linear-gradient(145deg, var(--wc-card) 0%, rgba(31, 143, 78, 0.08) 100%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease;
}

.fertigation-flow-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(31, 143, 78, 0.8), rgba(140, 207, 139, 0.35));
  opacity: 0.7;
}

.fertigation-flow-card span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 143, 78, 0.2), rgba(31, 143, 78, 0.08));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wc-accent);
  transition: background 0.3s ease, color 0.3s ease;
}

.fertigation-flow-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
}

.fertigation-flow-card p {
  font-size: 14px;
  color: var(--wc-muted);
}

.fertigation-flow-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  box-shadow: var(--card-hover-shadow);
}

.fertigation-flow-card:hover span {
  background: rgba(11, 93, 70, 0.18);
  color: var(--wc-accent);
}

:is(.product-card,
  .feature-card,
  .solution-card,
  .spec-card,
  .adv-card,
  .doc-card,
  .press-card,
  .announcement-card,
  .blog-card,
  .fertigation-meta-card,
  .fertigation-series-card,
  .fertigation-card,
  .fertigation-flow-card,
  .robot-harvest-highlight,
  .robot-harvest-photo) {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
}

:is(.product-card,
  .feature-card,
  .solution-card,
  .spec-card,
  .adv-card,
  .doc-card,
  .press-card,
  .announcement-card,
  .blog-card,
  .fertigation-meta-card,
  .fertigation-series-card,
  .fertigation-card,
  .fertigation-flow-card,
  .robot-harvest-highlight,
  .robot-harvest-photo):hover {
  transform: translateY(var(--card-hover-lift));
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
}

@media (max-width: 768px) {

  :is(.product-card,
    .feature-card,
    .solution-card,
    .spec-card,
    .adv-card,
    .doc-card,
    .press-card,
    .announcement-card,
    .blog-card,
    .fertigation-meta-card,
    .fertigation-series-card,
    .fertigation-card,
    .fertigation-flow-card,
    .robot-harvest-highlight,
    .robot-harvest-photo),
  :is(.product-card,
    .feature-card,
    .solution-card,
    .spec-card,
    .adv-card,
    .doc-card,
    .press-card,
    .announcement-card,
    .blog-card,
    .fertigation-meta-card,
    .fertigation-series-card,
    .fertigation-card,
    .fertigation-flow-card,
    .robot-harvest-highlight,
    .robot-harvest-photo):hover {
    transform: none;
    box-shadow: var(--shadow);
    border-color: var(--wc-border);
    background: var(--wc-card);
  }

  .solution-card {
    background: var(--wc-card);
  }

  .fertigation-meta-card {
    background: rgba(255, 255, 255, 0.12);
  }

  .product-card .product-media img,
  .solution-card .solution-media img,
  .announcement-card img,
  .blog-card img,
  .fertigation-card-media img,
  .robot-harvest-photo img {
    transform: scale(1);
  }

  .robot-harvest-hero {
    padding: 88px 0 64px;
  }

  .robot-harvest-hero p {
    font-size: 16px;
  }

  .robot-harvest-hero .video-frame:not(.video-frame--media) {
    min-height: 260px;
  }

  .fertigation-hero {
    padding: 88px 0 64px;
  }

  .fertigation-hero p {
    font-size: 16px;
  }

  .fertigation-hero-panel {
    padding: 20px;
  }

  .control-hero {
    padding: 88px 0 64px;
  }

  .control-hero p {
    font-size: 16px;
  }

  .irrigation-hero {
    padding: 88px 0 64px;
  }

  .irrigation-hero p {
    font-size: 16px;
  }

  .erp-hero {
    padding: 88px 0 64px;
  }

  .erp-hero p {
    font-size: 16px;
  }

  .delivery-hero {
    padding: 88px 0 64px;
  }

  .delivery-hero p {
    font-size: 16px;
  }

  .modernization-hero {
    padding: 88px 0 64px;
  }

  .modernization-hero p {
    font-size: 16px;
  }

  .forecast-hero {
    padding: 88px 0 64px;
  }

  .forecast-hero-analysis {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }

  .forecast-hero-analysis figure {
    max-width: 780px;
    width: 100%;
    background: var(--wc-card);
    border-radius: 26px;
    padding: 32px;
    border: 1px solid rgba(11, 93, 70, 0.15);
    box-shadow: 0 20px 40px rgba(8, 45, 30, 0.1);
    text-align: center;
  }

  .forecast-hero-analysis img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 14px;
  }

  .forecast-hero-analysis figcaption {
    font-size: 13px;
    color: var(--wc-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .forecast-hero p {
    font-size: 16px;
  }

  .about-hero {
    padding: 88px 0 64px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .fertigation-card-media {
    height: 240px;
  }

  .fertigation-video-frame {
    padding: 12px;
  }

  .fertigation-flow-media {
    max-width: 100%;
    height: auto;
  }

  .fertigation-video-frame {
    height: auto;
  }

  .fertigation-video-player {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .fertigation-flow-layout {
    grid-template-columns: 1fr;
  }

  .fertigation-flow-grid {
    grid-template-columns: 1fr;
  }

  .fertigation-series-grid {
    grid-template-columns: 1fr;
  }

  .fertigation-systems .section-head,
  .fertigation-systems .fertigation-grid {
    transform: none;
  }

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.blog-card {
  background: var(--wc-card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  height: 180px;
  object-fit: cover;
  transform: scale(var(--card-media-scale));
  transition: transform 0.4s ease;
}

.blog-content {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
}

.blog-content p {
  font-size: 14px;
  color: var(--wc-muted);
}

.blog-content a {
  font-weight: 600;
  color: var(--wc-primary);
}

.blog-card:hover img {
  transform: scale(var(--card-media-scale-hover));
}

.blog-details {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.blog-mini .section-head {
  margin-bottom: 18px;
}

.blog-mini .blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.blog-mini .blog-card {
  border-radius: 16px;
}

.blog-mini .blog-card img {
  height: 140px;
}

.blog-mini .blog-content {
  padding: 16px;
  gap: 6px;
}

.blog-mini .blog-content h3 {
  font-size: 16px;
}

.blog-mini .blog-content p,
.blog-mini .blog-content a {
  display: none;
}

.blog-mini .blog-card:nth-child(n + 4) {
  display: none;
}

.blog-mini .blog-details {
  display: none;
}

.resources-page .blog-mini .blog-card:nth-child(n + 4) {
  display: block;
}

.resources-page .blog-mini .blog-content p,
.resources-page .blog-mini .blog-content a {
  display: block;
}

.resources-page .blog-mini .blog-details {
  display: grid;
}

.blog-detail {
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  background: var(--wc-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 100px;
}

.blog-detail summary {
  list-style: none;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-detail summary::marker {
  display: none;
}

.blog-detail summary::-webkit-details-marker {
  display: none;
}

.blog-detail summary h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}

.blog-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.blog-summary {
  font-size: 14px;
  color: var(--wc-muted);
  margin-top: 8px;
}

.blog-toggle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--wc-primary);
  flex-shrink: 0;
}

.blog-detail[open] summary {
  background: rgba(31, 143, 78, 0.08);
  border-bottom: 1px solid var(--wc-border);
}

.blog-body {
  padding: 20px 22px 26px;
  display: grid;
  gap: 12px;
}

.blog-hero {
  border-radius: 16px;
  overflow: hidden;
  height: clamp(180px, 30vw, 260px);
  box-shadow: 0 18px 30px rgba(12, 32, 20, 0.2);
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-top: 6px;
}

.blog-body p {
  color: var(--wc-muted);
}

.blog-body ul,
.blog-body ol {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--wc-muted);
}

.blog-body li strong {
  color: var(--wc-ink);
}

.blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.blog-cta a {
  font-weight: 600;
  color: var(--wc-primary);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 143, 78, 0.15);
  color: var(--wc-primary);
  font-size: 12px;
  font-weight: 600;
}

.tag-outline {
  background: transparent;
  border: 1px solid var(--wc-border);
  color: var(--wc-ink);
  font-weight: 500;
}

.blog-related {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--wc-border);
  background: var(--wc-card);
  display: grid;
  gap: 12px;
}

.blog-related span {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--wc-muted);
}

.blog-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.resource-links span {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--wc-muted);
}

.cta-section {
  background: linear-gradient(120deg, var(--wc-primary), var(--wc-secondary));
  color: #ffffff;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.investment-alignment p + p {
  margin-top: 12px;
}

.investment-alignment strong {
  color: #111111;
  font-weight: 700;
}

.contact-form {
  background: #ffffff;
  padding: 24px 26px 28px;
  border-radius: 22px;
  border: 1px solid rgba(43, 59, 51, 0.12);
  box-shadow: 0 18px 32px rgba(31, 64, 44, 0.12);
  display: grid;
  gap: 16px;
}

.contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 16px;
}

.contact-form-grid .span-2 {
  grid-column: span 2;
}

.contact-form-grid .btn {
  width: 100%;
  justify-content: center;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid rgba(43, 59, 51, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--wc-ink);
}

.contact-form input,
.contact-form select {
  min-height: 42px;
}

.contact-form textarea {
  border-radius: 18px;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--wc-muted);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--wc-muted) 50%),
    linear-gradient(135deg, var(--wc-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .btn {
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #6da97a, #5a9468);
  box-shadow: 0 12px 22px rgba(90, 148, 104, 0.35);
}

.contact-form .form-consent {
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  color: var(--wc-muted);
}

.contact-form .form-consent input {
  margin-top: 4px;
}

.contact-form .form-error {
  color: #d64545;
  font-size: 12px;
  margin-top: -6px;
}

.contact-form .is-invalid {
  border-color: rgba(214, 69, 69, 0.7);
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15);
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 2.2fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
  color: var(--wc-primary);
}

.contact-intro {
  max-width: 360px;
}

.contact-intro .eyebrow {
  display: none;
}

.contact-intro p {
  color: var(--wc-muted);
}

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

.contact-highlight {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
  color: var(--wc-muted);
  font-size: 14px;
  padding: 6px 24px;
  line-height: 1.4;
}

.contact-highlight + .contact-highlight {
  border-left: 1px solid rgba(12, 24, 18, 0.42);
  padding-left: 24px;
}

.contact-highlight h3 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wc-primary);
  margin-bottom: 4px;
}

.contact-highlight a {
  color: var(--wc-ink);
  font-weight: 600;
  display: block;
  line-height: 1.4;
}

.contact-highlight p {
  line-height: 1.4;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--wc-primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-map {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(31, 64, 44, 0.12);
  border: 1px solid rgba(43, 59, 51, 0.12);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .contact-map {
  background: var(--wc-card);
  border-color: var(--wc-border);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .contact-form select {
  background: var(--wc-card);
  border-color: var(--wc-border);
}

html[data-theme="dark"] .contact-icon {
  color: var(--wc-primary);
}

html[data-theme="dark"] .contact-highlight + .contact-highlight {
  border-left-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
  .contact-top,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .contact-intro {
    max-width: none;
  }

  .contact-highlight + .contact-highlight {
    border-left: none;
    padding-left: 0;
    border-top: none;
    padding-top: 22px;
    margin-top: 16px;
    position: relative;
  }

  .contact-highlight + .contact-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: rgba(12, 24, 18, 0.55);
    border-radius: 999px;
  }

  .contact-map {
    min-height: 360px;
  }
}

@media (max-width: 960px) {
  html[data-theme="dark"] .contact-highlight + .contact-highlight {
    border-top-color: rgba(255, 255, 255, 0.55);
  }

  html[data-theme="dark"] .contact-highlight + .contact-highlight::before {
    background: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 768px) {
  .single-line-title {
    white-space: normal;
  }

}

@media (max-width: 980px) {
  #fairs-gallery .robot-harvest-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #fairs-gallery .robot-harvest-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: clamp(16px, 2vw, 32px);
  right: clamp(16px, 2vw, 32px);
  display: inline-flex;
  align-items: flex-end;
  z-index: 220;
}

.whatsapp-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--wc-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(15, 109, 59, 0.4);
  cursor: pointer;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(320px, 88vw);
  background: var(--wc-card);
  border-radius: 20px;
  border: 1px solid var(--wc-border);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(8, 45, 30, 0.25);
  opacity: 0;
  transform: scale(0.95) translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.whatsapp-panel-header strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.whatsapp-panel-header span {
  font-size: 12px;
  color: var(--wc-muted);
}

.whatsapp-panel-close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--wc-muted);
}

.whatsapp-panel-message {
  font-size: 13px;
  color: var(--wc-ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.whatsapp-panel-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--wc-primary);
}

.whatsapp-panel-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--wc-border);
  padding: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
  background: var(--wc-card);
  color: var(--wc-ink);
}

.whatsapp-panel-send {
  width: 100%;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-message {
  background: var(--wc-soft);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.faq-item {
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(31, 64, 44, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
}

.faq-item summary::marker {
  display: none;
}

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

.faq-item p {
  margin-top: 10px;
  color: var(--wc-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
}

.logo-card img {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
}

.logo-card--text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--wc-ink);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--wc-border);
  text-align: left;
  font-size: 14px;
}

.spec-table th {
  background: var(--wc-soft);
  font-family: var(--font-display);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.media-card {
  background: var(--wc-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  display: grid;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.media-card figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--wc-muted);
}

.package-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.package-card,
.dashboard-card {
  background: var(--wc-card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.dashboard-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: var(--wc-card);
  border-radius: 18px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 24px;
}

.filter-group {
  display: grid;
  gap: 6px;
  min-width: 160px;
}

.filter-group label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--wc-muted);
  letter-spacing: 0.4px;
}

.filter-select {
  border: 1px solid var(--wc-border);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-body);
  background: var(--wc-card);
  color: var(--wc-ink);
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--wc-border);
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 220px;
  background: var(--wc-card);
}

.filter-search input {
  border: 0;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  color: var(--wc-ink);
}

.filter-empty {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: var(--wc-muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--wc-card);
  border-radius: 20px;
  border: 1px solid var(--wc-border);
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h4 {
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.cookie-banner p {
  color: var(--wc-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-preferences {
  margin-top: 12px;
  display: none;
  gap: 12px;
  border-top: 1px solid var(--wc-border);
  padding-top: 12px;
}

.cookie-preferences.is-visible {
  display: grid;
}

.cookie-pref {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--lg {
  width: 24px;
  height: 24px;
}

.site-footer {
  background: #18261f;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  padding: 4px;
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-grid h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--wc-primary);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(31, 143, 78, 0.3);
}

.btn-secondary {
  background: var(--wc-card);
  color: var(--wc-ink);
  border-color: var(--wc-border);
}

.btn-soft {
  background: rgba(140, 207, 139, 0.35);
  color: var(--wc-ink);
  border-color: rgba(140, 207, 139, 0.55);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
}

.btn-ghost {
  border-color: var(--wc-border);
  color: var(--wc-ink);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--wc-primary);
  color: var(--wc-primary);
  background: rgba(31, 143, 78, 0.08);
}

.section .btn-outline {
  border-color: var(--wc-primary);
  color: var(--wc-primary);
}

.btn-compact {
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-spotlight {
  background: rgba(31, 143, 78, 0.08);
  border-color: rgba(31, 143, 78, 0.45);
  color: var(--wc-primary);
  box-shadow: 0 10px 20px rgba(31, 143, 78, 0.14);
}

.btn-spotlight:hover,
.btn-spotlight:focus-visible {
  background: linear-gradient(120deg, var(--wc-primary), var(--wc-secondary));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(31, 143, 78, 0.25);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes solutionDrift {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tickerScrollOffset {
  from {
    transform: translateX(40%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .header-actions {
    display: flex;
    grid-column: 2;
    justify-self: end;
    gap: 8px;
  }

  .header-contact {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 12px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--wc-card);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    width: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-link-group {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav .nav-link,
  .site-nav .nav-link-group,
  .site-nav .nav-cta,
  .site-nav .dropdown a {
    width: 100%;
  }

  .site-nav .nav-link {
    padding: 8px 0;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    border: 0;
    box-shadow: none;
    padding: 6px 0 10px;
    background: transparent;
    display: none;
  }

  .has-dropdown[data-open="true"] .dropdown {
    display: flex;
  }

  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-stack .floating-image {
    position: relative;
    right: 0;
    bottom: 0;
    width: 60%;
    margin-top: -40px;
  }

  .control-automation-layout {
    flex-direction: column;
  }

  .control-automation-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .control-automation-video {
    max-width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 80px 0 108px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-controls {
    padding: 10px 14px;
  }

  .hero-slider .hero-controls {
    width: min(360px, calc(100% - 32px));
    bottom: 20px;
  }

  .ticker-item {
    padding: 8px 14px;
    font-size: 12px;
  }

  .ticker-icon {
    width: 22px;
    height: 22px;
  }

  .ticker-wordmark {
    height: 20px;
  }

  .ticker-logo {
    height: 20px;
  }

  .blog-detail summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-toggle {
    align-self: flex-end;
  }

  .cta-box {
    padding: 32px;
  }

  .video-frame:not(.video-frame--media) {
    min-height: 260px;
  }

  .ioflex-collage {
    min-height: 260px;
    aspect-ratio: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .ioflex-collage-main {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
  }

  .ioflex-collage-top {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
  }

  .ioflex-collage-mid {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
  }

  .ioflex-collage-small {
    grid-column: 1 / span 1;
    grid-row: 4 / span 1;
  }

  .ioflex-collage-logo {
    grid-column: 2 / span 1;
    grid-row: 4 / span 1;
  }

  .products-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-gutter: 14px;
  }

  .brand {
    gap: 14px;
  }

  .brand img {
    height: 38px;
    max-width: 170px;
  }

  .brand small {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .hero-slide {
    min-height: 60vh;
  }

  .hero-content {
    padding: 64px 0;
  }

  .hero-slider .carousel-controls {
    width: calc(100% - 32px);
    bottom: 16px;
  }

  .ticker-band {
    padding: 16px 0;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .ticker-group {
    gap: 16px;
    padding-right: 18px;
  }

}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 50vh;
  }

  .hero-content {
    padding: 48px 0 56px;
  }

  .hero-slider .carousel-slide {
    padding: 16px 20px;
  }

  .hero-slider .carousel-controls {
    flex-wrap: wrap;
    gap: 8px;
  }

  .system-hero {
    padding: 72px 0 56px;
  }

  .system-hero .image-panel {
    margin-top: 8px;
  }

  .ticker-band {
    padding: 12px 0;
  }

  :root {
    --container-gutter: 18px;
  }

  .header-inner {
    gap: 12px;
    padding: 12px 0;
  }

  .lang-toggle__button {
    padding: 3px 10px;
    font-size: 12px;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .section {
    padding: 56px 0;
  }

  #docs,
  #blog,
  .cta-section,
  #contact,
  #faq,
  #about,
  #press {
    padding: 48px 0;
  }

  .section-head h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

.section-head p {
  font-size: 15px;
}

.section-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--wc-muted);
}

  .split {
    gap: 24px;
  }

  .feature-grid {
    gap: 14px;
  }

  .image-panel-caption {
    font-size: 12px;
    padding: 8px 12px;
    left: 12px;
    bottom: 12px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    width: 100%;
    min-width: auto;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    padding: 16px;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table th,
  .spec-table td {
    white-space: nowrap;
  }

  .btn-compact,
  .ioflex-section .cta-row .btn {
    white-space: normal;
  }

  .ioflex-section .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .image-panel {
    overflow: visible;
  }

  .image-panel img,
  .image-panel video {
    border-radius: var(--radius);
  }

  .image-panel-caption {
    position: static;
    margin-top: 8px;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 36px 0 48px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .ticker-item {
    padding: 8px 14px;
  }

  .cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-top,
  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .contact-highlight + .contact-highlight {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--wc-border);
    padding-top: 16px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .contact-form-grid .span-2 {
    grid-column: span 1;
  }

  .contact-map iframe {
    min-height: 240px;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-toggle {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .split,
  .system-hero-grid,
  .robot-harvest-hero-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid,
  .feature-grid,
  .docs-grid,
  .catalog-grid,
  .products-grid,
  .blog-grid,
  .media-grid,
  .package-grid,
  .dashboard-grid,
  .robot-harvest-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-media img {
    height: 140px;
  }

  .hero-title {
    line-height: 1.1;
  }

  .hero-description,
  .system-hero-copy p,
  .robot-harvest-hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .system-hero .robot-harvest-highlight {
    background: rgba(8, 36, 26, 0.55);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .robot-harvest-hero .robot-harvest-highlight {
    background: rgba(8, 36, 26, 0.55);
    border-color: rgba(255, 255, 255, 0.25);
  }

  video.is-mobile-hidden {
    display: none;
  }

  .video-mobile-trigger.is-active {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content>* {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-slide.is-active .hero-content>* {
    animation: none;
  }

  .carousel-track {
    transition: none;
  }

  .ticker-track {
    animation: none;
  }

  .solution-card::after {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
