:root {
  --green: #304904;
  --green-dark: #203500;
  --green-soft: #5d7334;
  --cream: #fff8d9;
  --cream-soft: #f8f0c9;
  --white: #ffffff;
  --gold: #d8c47a;
  --shadow: 0 18px 40px rgba(12, 22, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--green);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 16px;
  left: 0;
  right: 0;
  width: min(1320px, calc(100% - 38px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 18px;
}
.logo img { width: 72px; }
.site-nav {
  justify-self: center;
  display: flex;
  gap: 2px;
  padding: 8px 14px;
  color: #193000;
  background: rgba(245, 240, 203, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.site-nav a { padding: 8px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.site-nav a:hover { background: rgba(48, 73, 4, 0.18); }
.mobile-yieldex,
.mobile-biocap { display: none; }
.learn-pill, .learn-bottom, .cream-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  padding: 9px 20px;
  color: var(--cream);
  background: #587225;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.yieldex-pill,
.biocap-pill {
  min-width: 116px;
  min-height: 38px;
  padding: 9px 18px;
  color: #203500;
  background: linear-gradient(180deg, #fff7da, #e6dca7);
  border: 1px solid rgba(255, 248, 217, 0.62);
  box-shadow: 0 10px 24px rgba(12, 22, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.biocap-pill {
  min-width: 108px;
  color: var(--cream);
  background: linear-gradient(180deg, #5f7a27, #3d5d0d);
}
.yieldex-pill:hover,
.biocap-pill:hover {
  background: linear-gradient(180deg, #fffbe8, #eadf9c);
  transform: translateY(-1px);
}
.biocap-pill:hover {
  color: var(--cream);
  background: linear-gradient(180deg, #6f8c32, #486913);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #587225;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background-position: center 42%;
  background-size: cover;
}
.home-hero {
  display: flex;
  align-items: center;
  background-image: url("assets/hero-field.avif");
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 56%, rgba(255, 248, 217, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(22, 38, 0, 0.92) 0%, rgba(35, 55, 0, 0.78) 38%, rgba(35, 55, 0, 0.36) 68%, rgba(35, 55, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(22, 38, 0, 0.28), rgba(22, 38, 0, 0.74));
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 92%);
  margin-left: clamp(24px, 5vw, 70px);
  padding: 108px 0 58px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 248, 217, 0.4);
  border-radius: 999px;
  color: #fff8d9;
  background: rgba(255, 248, 217, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3.45vw, 50px);
  line-height: 1.08;
}
.hero-copy p {
  width: min(500px, 100%);
  margin-bottom: 22px;
  color: rgba(255, 248, 217, 0.92);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.hero-primary {
  color: #203500;
  background: linear-gradient(180deg, #fffbe4, #dfcf83);
  box-shadow: 0 16px 28px rgba(12, 22, 0, 0.24);
}
.hero-secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 217, 0.38);
  background: rgba(32, 53, 0, 0.38);
}
.hero-primary:hover,
.hero-secondary:hover {
  transform: translateY(-1px);
}
.hero-product-display {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 7vw, 118px);
  bottom: 28px;
  width: min(500px, 40vw);
  height: min(390px, 31vw);
}
.hero-product {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(12, 22, 0, 0.46));
}
.hero-product-x5 {
  left: 0;
  bottom: 52px;
  z-index: 3;
  width: 66%;
}
.hero-product-boss {
  right: 12%;
  bottom: 42px;
  z-index: 2;
  width: 28%;
}
.hero-product-strip {
  right: 2%;
  bottom: 36px;
  z-index: 4;
  width: 12%;
  transform: rotate(-2deg);
}
.wood-discs { position: absolute; right: 7%; bottom: -8px; width: 480px; height: 210px; }
.wood-discs span {
  position: absolute;
  bottom: 0;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #f8e5a7 0 48%, #d7bd73 49% 58%, #9d8141 59% 100%);
  box-shadow: var(--shadow);
}
.wood-discs span:first-child { left: 0; width: 330px; height: 150px; }
.wood-discs span:last-child { right: 0; width: 300px; height: 135px; }
.home-hero .wood-discs { display: none; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3.2vw, 46px);
  max-width: 1180px;
  margin: 34px auto 38px;
  padding: 0 28px;
}
.stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  text-align: left;
}
.stat-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--cream);
}
.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stats strong {
  display: block;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  font-weight: 500;
}
.stats div > span:not(.stat-icon) {
  display: block;
  color: var(--cream);
  font-family: Georgia, serif;
  max-width: 190px;
  font-size: clamp(18px, 1.75vw, 27px);
  line-height: 1.1;
}

.growth-card {
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 20px 24px 44px;
  color: var(--green);
  background: var(--cream);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.growth-card h2, .why h2, .network h2, .legal h2, .contact h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}
.growth-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 72px; }
.growth-grid article {
  min-height: 244px;
  padding: 0 18px 20px;
  text-align: center;
  background: #fbf5dc;
  border-radius: 20px;
  box-shadow: 0 8px 14px rgba(40, 50, 0, 0.24);
}
.growth-grid img {
  width: 100%;
  aspect-ratio: 1;
  margin: -42px 0 14px;
  object-fit: cover;
  border-radius: 14px;
}
.growth-grid h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 0.9;
}
.growth-grid p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.why {
  position: relative;
  min-height: 690px;
  padding: 36px 24px 54px;
  background: linear-gradient(rgba(48, 73, 4, 0.78), rgba(48, 73, 4, 0.82)), url("assets/category-chilli.avif") center / cover;
}
.glass-panel, .glass-heading {
  width: min(740px, 92%);
  margin: 28px auto 0;
  padding: 28px;
  text-align: center;
  color: var(--cream);
  background: rgba(242, 239, 206, 0.25);
  border: 1px solid rgba(255, 248, 217, 0.24);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.glass-panel p,
.glass-heading p {
  line-height: 1.55;
}

.category-showcase {
  position: relative;
  width: min(1420px, calc(100% - 48px));
  min-height: 520px;
  margin: 0 auto;
  color: var(--cream);
  border-radius: 14px;
  overflow: hidden;
}
.category-image,
.category-overlay {
  position: absolute;
  inset: 0;
}
.category-image {
  background: url("assets/category-chilli.avif") center / cover no-repeat;
  filter: saturate(0.82);
  transform: scale(1.04);
  transition: background-image 320ms ease, transform 320ms ease;
}
.category-showcase:hover .category-image { transform: scale(1.07); }
.category-overlay {
  background: linear-gradient(rgba(33, 52, 0, 0.54), rgba(33, 52, 0, 0.72));
}
.category-content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 58px 28px 28px;
}
.category-content h2 {
  margin-left: 20px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
  text-transform: capitalize;
}
.category-line {
  position: absolute;
  left: 58px;
  top: 142px;
  bottom: 38px;
  width: 2px;
  background: rgba(255, 248, 217, 0.82);
}
.category-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
.category-copy {
  align-self: center;
  width: min(790px, 70%);
  margin: 52px auto 0;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
  transition: opacity 180ms ease, transform 180ms ease;
}
.category-copy.changing {
  opacity: 0.55;
  transform: translateY(6px);
}
.category-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}
.category-copy p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 600;
}
.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
  padding-left: 46px;
}
.category-tabs button {
  min-width: 0;
  padding: 8px 6px 0;
  border: 0;
  color: rgba(255, 248, 217, 0.68);
  background: transparent;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, font-size 180ms ease;
}
.category-tabs button:hover,
.category-tabs button.active {
  color: var(--cream);
  transform: translateY(-3px);
}

.home-product-strip {
  width: 100%;
  margin: 42px auto 0;
  padding: 0 0 34px;
  overflow: hidden;
}
.home-product-track {
  display: flex;
  width: max-content;
  animation: homeProductLoop 38s linear infinite;
  will-change: transform;
}
.home-product-set {
  display: flex;
  gap: 22px;
  padding-right: 22px;
}
.home-product-strip article {
  flex: 0 0 clamp(300px, 17vw, 360px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--green);
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(12, 22, 0, 0.28);
}
.home-product-media {
  position: relative;
  flex: 0 0 292px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.home-product-media.field { background-image: linear-gradient(rgba(32, 53, 0, 0.05), rgba(32, 53, 0, 0.12)), url("assets/hero-field.avif"); }
.home-product-media.crop { background-image: linear-gradient(rgba(32, 53, 0, 0.05), rgba(32, 53, 0, 0.12)), url("assets/tomatoes.avif"); }
.home-product-media.foliage { background-image: linear-gradient(rgba(32, 53, 0, 0.18), rgba(32, 53, 0, 0.22)), url("assets/orchard.avif"); }
.home-product-media.greenhouse { padding: 0; background: #f6edc5; }
.home-product-media.harvest { background-image: linear-gradient(rgba(32, 53, 0, 0.08), rgba(32, 53, 0, 0.16)), url("assets/hero-field.avif"); }
.home-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.home-product-strip h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 24px 24px 12px;
  color: var(--green);
  background: var(--cream);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 0.95;
}
.home-product-strip p {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  padding: 0 24px 32px;
  color: var(--green);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}
@keyframes homeProductLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.precision {
  padding: 72px 28px 76px;
  background: linear-gradient(rgba(48, 73, 4, 0.78), rgba(48, 73, 4, 0.84)), url("assets/hero-field.avif") center / cover;
}
.glass-heading h2 { margin-bottom: 4px; font-size: clamp(30px, 4vw, 42px); }
.product-carousel-wrap { margin-top: 64px; overflow: hidden; position: relative; }
.product-carousel-wrap::before, .product-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.product-carousel-wrap::before { left: 0; background: linear-gradient(90deg, rgba(48, 73, 4, 1), rgba(48, 73, 4, 0)); }
.product-carousel-wrap::after { right: 0; background: linear-gradient(270deg, rgba(48, 73, 4, 1), rgba(48, 73, 4, 0)); }
.product-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scroll 28s linear infinite;
  will-change: transform;
}
.product-track:hover { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.feature-product {
  width: 320px;
  color: var(--green);
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-product img { width: 100%; height: 360px; object-fit: cover; }
.feature-product h3 {
  margin: 0;
  padding: 24px 24px 28px;
  font-size: 26px;
  line-height: 1;
  text-align: center;
}
.feature-product h3,
.product-cards h2 {
  overflow-wrap: anywhere;
}

.network, .legal {
  width: min(960px, 92%);
  margin: 0 auto;
  text-align: center;
}
.network { padding: 34px 0 28px; }
.network h2 {
  margin-bottom: 4px;
  font-size: 26px;
}
.network h3 {
  margin: 18px 0 4px;
  font-size: 26px;
}
.network p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}
.network .cream-button {
  flex-direction: column;
  margin: 36px auto 0;
  text-align: center;
  line-height: 1.1;
}
.legal { padding: 18px 0 58px; }
.legal h2 { margin-bottom: 18px; font-size: 20px; }
.legal p {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}
.faq {
  width: min(1120px, 92%);
  margin: 0 auto 20px;
  padding: 34px 0 20px;
  text-align: center;
}
.faq h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 44px);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.faq article {
  padding: 22px 24px;
  color: var(--green);
  background: var(--cream);
  border-radius: 12px;
  text-align: left;
}
.faq h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.08;
}
.faq p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}
.cream-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 310px;
  min-height: 42px;
  margin-top: 18px;
  padding: 8px 24px;
  color: var(--green);
  background: var(--cream-soft);
  border-radius: 999px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cream-button span { font-size: 14px; font-weight: 400; }
.cream-button.compact { min-width: 250px; min-height: 34px; margin-top: 28px; font-size: 16px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff8d9;
  background: #2fad54;
  border: 2px solid rgba(255, 248, 217, 0.82);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(12, 22, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #248f45;
  box-shadow: 0 20px 38px rgba(12, 22, 0, 0.38);
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.licenses {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 28px 30px 30px;
  color: var(--green);
  text-align: center;
  background: var(--cream);
  border-radius: 14px;
}
.licenses h2 { margin-bottom: 4px; font-size: 26px; }
.licenses p {
  margin-bottom: 20px;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}
.license-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(42px, 9vw, 120px);
}
.license-logos img { width: 150px; height: 86px; object-fit: contain; }

.contact {
  width: min(960px, 92%);
  margin: 0 auto;
  padding: 58px 0;
  text-align: center;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 38px;
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: left;
}
.contact label { color: var(--cream); font-size: 13px; font-weight: 700; }
.contact label.wide, .contact label.check, .contact button { grid-column: 1 / -1; }
.contact input {
  display: block;
  width: 100%;
  height: 66px;
  margin-top: 8px;
  border: 0;
  border-radius: 5px;
  background: var(--cream);
}
.contact .check input { display: inline-block; width: 18px; height: 18px; margin-right: 10px; }
.contact button {
  justify-self: center;
  width: 640px;
  max-width: 100%;
  height: 34px;
  border: 0;
  color: var(--cream);
  background: #607b1d;
  border-radius: 999px;
  font-weight: 700;
}
.learn-bottom { margin-top: 42px; }

.grow-page {
  width: 100%;
  margin: 0 auto;
  padding: 96px 0 0;
  background: var(--green);
  text-align: center;
}
.grow-cover,
.grow-image-section,
.grow-advantages,
.grow-ready,
.grow-map {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}
.grow-cover,
.grow-map {
  overflow: hidden;
}
.grow-cover img,
.grow-image-section img,
.grow-map img {
  width: 100%;
  display: block;
  object-fit: cover;
  will-change: transform;
}
.grow-cover {
  padding-top: 18px;
}
.grow-cover img {
  height: clamp(420px, 52vw, 620px);
  border-radius: 4px;
  animation: growImageDrift 13s ease-in-out infinite alternate;
}
.grow-copy {
  width: min(860px, 88%);
  margin: 42px auto 58px;
}
.grow-copy p,
.grow-image-section p,
.grow-ready p {
  margin: 0 auto 14px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.32;
}
.grow-image-section h1,
.grow-image-section h2,
.grow-advantages h2,
.grow-ready h2 {
  margin: 0 0 24px;
  color: var(--cream);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}
.grow-image-section img {
  height: clamp(380px, 48vw, 560px);
  margin-bottom: 28px;
  border-radius: 4px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
  animation: growImageDrift 14s ease-in-out infinite alternate;
}
.grow-image-section {
  margin-bottom: 78px;
}
.grow-image-section p {
  width: min(820px, 88%);
}
.grow-advantages {
  width: min(900px, 88%);
  margin: 12px auto 78px;
  text-align: left;
}
.grow-advantages h2,
.grow-advantages h3 {
  text-align: center;
}
.grow-advantages h2 {
  margin-bottom: 2px;
}
.grow-advantages h3,
.grow-ready h3 {
  margin: 0 0 32px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
}
.grow-advantages dl {
  margin: 0;
}
.grow-advantages dt {
  margin-top: 22px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
}
.grow-advantages dd {
  margin: 6px 0 0;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.5;
}
.grow-ready {
  width: min(920px, 88%);
  margin: 0 auto 96px;
}
.grow-ready h2 {
  font-size: clamp(38px, 4.4vw, 58px);
}
.grow-ready p {
  width: min(760px, 100%);
  font-size: clamp(17px, 1.8vw, 22px);
}
.grow-map {
  position: relative;
  width: min(980px, calc(100% - 44px));
  margin-bottom: 110px;
  border-radius: 12px;
  overflow: hidden;
}
.grow-map img {
  height: auto;
  border-radius: 12px;
  background: var(--cream);
}

@keyframes growImageDrift {
  from {
    transform: scale(1.01) translate3d(-8px, -5px, 0);
  }
  to {
    transform: scale(1.045) translate3d(8px, 5px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .grow-cover img,
  .grow-image-section img,
  .grow-map img {
    animation: none;
    transform: none;
  }
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  grid-template-areas:
    "brand sections"
    "social social";
  gap: 34px clamp(64px, 10vw, 130px);
  align-items: start;
  width: min(1190px, calc(100% - 70px));
  margin: 70px auto 0;
  padding: 32px clamp(34px, 7vw, 110px) 28px;
  color: var(--green);
  background: var(--cream);
  border-radius: 6px;
}
.footer-brand {
  grid-area: brand;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 16px;
}
.footer-brand img { width: 70px; }
.footer-brand h2 {
  margin: 6px 0 4px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 800;
}
.footer-sections {
  grid-area: sections;
  align-self: start;
  display: grid;
  gap: 12px;
  padding-top: 24px;
}
.footer-sections h3 {
  margin: 0;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px 76px;
}
.footer a, .footer p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}
.footer-brand p {
  font-size: 18px;
  line-height: 1.78;
  font-weight: 400;
}
.socials {
  grid-area: social;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green);
  line-height: 1;
}
.socials a:hover span {
  background: rgba(48, 73, 4, 0.08);
}
.socials a span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green);
  border: 1.5px solid #6d7f31;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
}
.socials a:nth-child(2) span {
  border-radius: 7px;
  font-size: 0;
}
.socials a:nth-child(2) span::before {
  content: "▶";
  font-size: 13px;
  line-height: 1;
}
.socials a:nth-child(3) span {
  border-radius: 8px;
  font-size: 0;
}
.socials a:nth-child(3) span::before {
  content: "◎";
  font-size: 18px;
  line-height: 1;
}
.socials a:nth-child(4) span {
  border-radius: 50%;
  font-size: 11px;
}
.socials a:nth-child(2) span::before {
  content: ">";
}
.socials a:nth-child(3) span::before {
  content: "o";
}
.socials a {
  width: 48px;
  height: 48px;
}
.socials svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socials .whatsapp-icon {
  width: 42px;
  height: 42px;
  fill: currentColor;
  stroke: none;
}
.socials a:hover svg {
  filter: drop-shadow(0 2px 4px rgba(48, 73, 4, 0.18));
  transform: translateY(-1px);
}
.footer-policies {
  grid-column: 2 / 4;
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 22px;
}

.about-cover { padding: 68px 40px 0; }
.about-cover img {
  width: min(1200px, 100%);
  height: auto;
  max-height: 620px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0 0 14px 14px;
  background: var(--cream);
}
.story, .philosophy { width: min(1120px, 90%); margin: 72px auto; }
.story h1 {
  max-width: 930px;
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
}
.story p {
  max-width: 1060px;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
}

.belief-card {
  width: min(1200px, 94%);
  min-height: clamp(420px, 48vw, 620px);
  margin: 74px auto 84px;
  display: flex;
  align-items: end;
  padding: clamp(110px, 16vw, 210px) clamp(24px, 4vw, 42px) 40px;
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.86), rgba(48, 73, 4, 0.48)), url("assets/about-mission-greenhouse.avif") center / cover;
  border-radius: 24px;
}
.belief-card div { max-width: 760px; }
.belief-card h2 { font: 700 28px Georgia, serif; }
.belief-card p { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.28; font-weight: 700; }

.philosophy h2 {
  margin-bottom: 16px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.92;
}
.philosophy h3 { margin-bottom: 24px; font-size: clamp(34px, 5vw, 56px); }
.philosophy-grid {
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 34px clamp(18px, 3vw, 34px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.92) 0 42%, rgba(48, 73, 4, 0.62) 66%, rgba(48, 73, 4, 0.08)), url("assets/about-philosophy-bottles.avif") center right / cover;
  border-radius: 0 0 12px 12px;
}
.philosophy-grid div { max-width: 500px; }
.philosophy-grid ul { margin: 14px 0 22px; padding-left: 24px; }
.philosophy-grid p, .philosophy-grid li { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.22; font-weight: 700; }

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 94%);
  margin: 56px auto 34px;
}
.about-values article {
  position: relative;
  min-height: 540px;
  color: var(--green);
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(12, 22, 0, 0.28);
}
.about-values img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.about-values div { padding: 18px 20px 34px; }
.about-values h2 {
  min-height: 62px;
  margin-bottom: 14px;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.08;
}
.about-values p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.about-values a {
  position: absolute;
  left: 20px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--cream);
  background: #5d7334;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.about-values a::after {
  content: "->";
  font-size: 14px;
}

.vision-panel {
  width: min(1220px, 94%);
  min-height: 590px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.95), rgba(48, 73, 4, 0.72) 52%, rgba(48, 73, 4, 0.18)), url("assets/about-vision-lab.avif") center / cover;
}
.vision-panel div { max-width: 650px; }
.vision-panel h2 {
  margin-bottom: 44px;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.94;
}
.vision-panel h3 {
  margin-bottom: 24px;
  font: 800 clamp(22px, 2.1vw, 31px) Arial, sans-serif;
}
.vision-panel p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.18;
}

.mission-team {
  width: min(1220px, 94%);
  margin: -72px auto 110px;
}
.mission-panel {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(90deg, rgba(48, 73, 4, 0.95), rgba(48, 73, 4, 0.68) 58%, rgba(48, 73, 4, 0.34)), url("assets/about-mission-greenhouse.avif") center / cover;
}
.mission-panel div { max-width: 600px; }
.mission-panel h2 {
  margin-bottom: clamp(70px, 9vw, 120px);
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.94;
}
.mission-panel h3 {
  margin-bottom: 22px;
  font: 800 clamp(22px, 2.1vw, 31px) Arial, sans-serif;
}
.mission-panel p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.2;
}
.team-heading {
  margin: -58px 0 76px;
  text-align: center;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 92%);
  margin: 0 auto;
}
.team-grid article {
  color: var(--green);
  text-align: center;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(12, 22, 0, 0.28);
}
.team-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center top;
}
.team-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 245px;
  color: var(--cream);
  background:
    linear-gradient(rgba(48, 73, 4, 0.7), rgba(48, 73, 4, 0.85)),
    url("assets/about-innovation-plant.avif") center / cover;
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
}
.team-grid h3 {
  margin: 18px 12px 7px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.1;
}
.team-grid h3 a {
  color: inherit;
}
.team-grid p {
  margin: 0 14px 22px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.products-page {
  padding-top: 88px;
  background: var(--green);
}
.product-feature {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto 102px;
  text-align: center;
}
.products-hero h1,
.fertilizer-hero h1,
.nutrient-hero h1 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(54px, 7vw, 82px);
  line-height: 1;
}
.products-hero img {
  width: 100%;
  height: clamp(360px, 54vw, 660px);
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(13, 24, 0, 0.26);
}
.product-slider {
  position: relative;
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto 124px;
}
.product-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 27vw, 330px);
  grid-template-columns: none;
  gap: 42px;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-cards::-webkit-scrollbar { display: none; }
.product-cards.compact {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.product-cards article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 18px 24px;
  text-align: center;
  color: var(--green);
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(12, 22, 0, 0.2);
  scroll-snap-align: start;
}
.product-cards img {
  width: 100%;
  height: 184px;
  object-fit: contain;
  margin-bottom: 18px;
}
.product-cards h2 {
  min-height: 54px;
  margin-bottom: 8px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 0.98;
  letter-spacing: 0;
}
.product-cards p {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.45;
}
.slider-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 217, 0.62);
  border-radius: 50%;
  color: var(--green);
  background: var(--cream);
  box-shadow: 0 12px 24px rgba(12, 22, 0, 0.28);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-btn:hover {
  background: #f3e9b7;
}
.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }
.product-slider.no-scroll .slider-btn,
.product-slider.no-scroll::before,
.product-slider.no-scroll::after {
  display: none;
}
.product-slider::before,
.product-slider::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
}
.product-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--green), rgba(48, 73, 4, 0));
}
.product-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--green), rgba(48, 73, 4, 0));
}

.fertilizer-hero {
  margin-top: 46px;
  margin-bottom: 102px;
}
.fertilizer-hero div,
.nutrient-hero div {
  min-height: clamp(360px, 54vw, 660px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(13, 24, 0, 0.26);
}
.fertilizer-hero div {
  background: linear-gradient(rgba(48, 73, 4, 0.05), rgba(48, 73, 4, 0.05)), url("assets/hero-field.avif") center / cover;
}
.nutrient-hero {
  margin-top: 30px;
  margin-bottom: 44px;
}
.product-feature-secondary div {
  background: linear-gradient(rgba(48, 73, 4, 0.12), rgba(48, 73, 4, 0.08)), url("assets/about-mission-greenhouse.avif") center / cover;
}
.product-feature-micro div {
  background: linear-gradient(rgba(48, 73, 4, 0.1), rgba(48, 73, 4, 0.06)), url("assets/growth-fruit-development.avif") center / cover;
}
.fertilizer-hero img,
.nutrient-hero img {
  width: min(430px, 64%);
  filter: drop-shadow(0 18px 22px rgba(20, 28, 0, 0.34));
}
.nutrient-hero img {
  width: min(360px, 52%);
}
.nutrient-hero.hero-photo div {
  min-height: 0;
  background: none;
}
.nutrient-hero.hero-photo img {
  width: 100%;
  height: clamp(300px, 48vw, 620px);
  object-fit: cover;
  filter: none;
}
.fertilizer-slider,
.nutrient-slider {
  margin-bottom: 104px;
}
.micro-slider { margin-bottom: 52px; }
.more-products {
  display: flex;
  justify-content: center;
  margin: 0 auto 98px;
}
.more-products a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 24px;
  color: var(--green);
  background: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(12, 22, 0, 0.22);
}
.more-products a:hover { background: #f3e9b7; }
.product-cards .empty {
  justify-content: flex-end;
  min-height: 360px;
  padding-bottom: 24px;
}
.product-cards .empty h2 {
  min-height: 0;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.2vw, 28px);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    grid-template-columns: 80px 1fr 48px;
    padding: 10px 16px;
    background: rgba(48, 73, 4, 0.94);
    box-shadow: 0 12px 28px rgba(12, 22, 0, 0.2);
  }
  .header-actions { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 16px;
    border-radius: 0;
    background: rgba(245, 240, 203, 0.98);
    box-shadow: 0 16px 28px rgba(12, 22, 0, 0.22);
  }
  .site-nav a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
  }
  .site-nav .mobile-yieldex,
  .site-nav .mobile-biocap {
    display: block;
    margin-top: 4px;
    color: var(--cream);
    background: #587225;
    text-align: center;
  }
  .site-nav .mobile-biocap { background: #304904; }
  .site-nav.open { display: flex; }
  .hero {
    min-height: 620px;
    background-position: 58% center;
  }
  .hero-copy {
    width: min(520px, 92%);
    margin-left: 24px;
    padding: 100px 0 210px;
  }
  .hero-copy h1 {
    max-width: 500px;
    font-size: clamp(31px, 5.2vw, 44px);
  }
  .hero-copy p {
    max-width: 450px;
    font-size: 15px;
  }
  .hero-product-display {
    right: 18px;
    bottom: 12px;
    width: min(330px, 46vw);
    height: min(270px, 38vw);
    opacity: 0.96;
  }
  .hero-product-x5 {
    bottom: 38px;
    width: 66%;
  }
  .hero-product-boss {
    right: 12%;
    bottom: 30px;
    width: 28%;
  }
  .hero-product-strip {
    right: 2%;
    bottom: 26px;
    width: 12%;
  }
  .wood-discs { width: 320px; right: 3%; }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    gap: 22px 26px;
  }
  .product-row, .philosophy-grid { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: repeat(2, 1fr); row-gap: 68px; }
  .category-showcase {
    width: min(720px, 92%);
    min-height: 560px;
  }
  .category-content { min-height: 560px; padding: 42px 20px 24px; }
  .category-line { left: 34px; top: 118px; bottom: 120px; }
  .category-copy { width: min(560px, 82%); margin-top: 74px; }
  .category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    padding-left: 24px;
  }
  .home-product-strip {
    width: 100%;
  }
  .home-product-strip article { flex-basis: 320px; }
  .home-product-media { flex-basis: 280px; }
  .product-slider { width: min(760px, calc(100% - 34px)); }
  .product-cards { grid-auto-columns: clamp(230px, 42vw, 300px); }
  .slider-btn.prev { left: -12px; }
  .slider-btn.next { right: -12px; }
  .grow-page { padding-top: 80px; }
  .grow-cover,
  .grow-image-section,
  .grow-map {
    width: min(720px, calc(100% - 34px));
  }
  .grow-cover img,
  .grow-image-section img {
    height: 420px;
  }
  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "sections"
      "social";
    width: min(680px, calc(100% - 34px));
    gap: 30px;
    padding: 30px;
  }
  .footer-links {
    gap: 8px 36px;
  }
  .socials {
    justify-self: start;
    align-self: start;
  }
  .contact {
    width: min(680px, 90%);
  }
  .contact input,
  .contact textarea {
    font-size: 16px;
  }
  .license-logos { flex-direction: column; gap: 22px; }
  .about-cover { padding: 0; }
  .story, .philosophy { width: min(680px, 90%); margin: 54px auto; }
  .belief-card {
    width: min(680px, 92%);
    margin: 58px auto;
    padding-top: 150px;
  }
  .philosophy-grid {
    min-height: 480px;
    background: linear-gradient(rgba(48, 73, 4, 0.86), rgba(48, 73, 4, 0.62)), url("assets/about-philosophy-bottles.avif") center / cover;
  }
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(680px, 92%);
    gap: 34px 20px;
  }
  .about-values article { min-height: 500px; }
  .about-values img { height: 260px; }
  .vision-panel {
    width: min(680px, 92%);
    min-height: 520px;
    margin-bottom: 80px;
    background: linear-gradient(rgba(48, 73, 4, 0.9), rgba(48, 73, 4, 0.58)), url("assets/about-vision-lab.avif") center / cover;
  }
  .mission-team {
    width: min(680px, 92%);
    margin-top: -34px;
    margin-bottom: 80px;
  }
  .mission-panel {
    min-height: 500px;
    background: linear-gradient(rgba(48, 73, 4, 0.9), rgba(48, 73, 4, 0.62)), url("assets/about-mission-greenhouse.avif") center / cover;
  }
  .team-heading { margin: -34px 0 50px; }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 90%);
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 64px 1fr 44px;
    gap: 10px;
    padding: 8px 12px;
  }
  .logo img { width: 58px; }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero {
    min-height: 640px;
    align-items: flex-start;
    background-position: 55% center;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(22, 38, 0, 0.9) 0%, rgba(31, 50, 0, 0.74) 54%, rgba(31, 50, 0, 0.38) 100%),
      linear-gradient(90deg, rgba(22, 38, 0, 0.75), rgba(22, 38, 0, 0.24));
  }
  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding: 94px 18px 250px;
  }
  .hero-kicker {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.035em;
  }
  .hero-copy h1 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.08;
  }
  .hero-copy p {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-primary,
  .hero-secondary {
    min-height: 39px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .hero-product-display {
    right: -44px;
    bottom: 14px;
    width: 290px;
    height: 230px;
    opacity: 0.86;
    pointer-events: none;
  }
  .hero-product-x5 {
    left: 0;
    bottom: 30px;
    width: 65%;
  }
  .hero-product-boss {
    right: 13%;
    bottom: 24px;
    width: 28%;
  }
  .hero-product-strip {
    right: 5%;
    bottom: 22px;
    width: 12%;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }
  .wood-discs { display: none; }
  .stats, .contact form, .growth-grid, .faq-grid { grid-template-columns: 1fr; }
  .stats {
    width: min(360px, 92%);
    gap: 14px;
    margin: 34px auto;
    padding: 0;
  }
  .stats div {
    justify-content: flex-start;
    min-height: 62px;
    gap: 12px;
  }
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  .stats strong { font-size: 22px; }
  .stats div > span:not(.stat-icon) {
    max-width: none;
    font-size: 21px;
  }
  .growth-card {
    width: calc(100% - 24px);
    padding: 18px 18px 36px;
    border-radius: 18px;
  }
  .growth-grid {
    gap: 42px;
    margin-top: 44px;
  }
  .growth-grid article {
    min-height: auto;
    padding: 0 18px 22px;
  }
  .growth-grid img {
    width: min(230px, 100%);
    margin: -26px auto 16px;
  }
  .grow-page {
    padding: 0 0 0;
  }
  .grow-cover,
  .grow-image-section,
  .grow-map {
    width: 100%;
  }
  .grow-cover { padding-top: 0; }
  .grow-cover img {
    height: 270px;
    border-radius: 0;
  }
  .grow-copy {
    width: min(420px, 88%);
    margin: 34px auto 44px;
  }
  .grow-image-section {
    width: min(420px, 92%);
    margin-bottom: 54px;
  }
  .grow-image-section img {
    height: 240px;
  }
  .grow-advantages,
  .grow-ready {
    width: min(420px, 88%);
  }
  .grow-advantages dd { font-size: 13px; }
  .grow-map {
    width: min(420px, 92%);
    margin-bottom: 82px;
  }
  .product-slider { width: min(420px, calc(100% - 28px)); margin-bottom: 76px; }
  .product-cards { grid-auto-columns: minmax(220px, 84vw); gap: 18px; }
  .product-cards article { min-height: 340px; }
  .product-cards img { height: 160px; }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .slider-btn.prev { left: -8px; }
  .slider-btn.next { right: -8px; }
  .contact {
    width: min(420px, 90%);
    padding: 42px 0;
  }
  .contact input {
    height: 52px;
  }
  .contact button {
    width: 100%;
    min-height: 42px;
  }
  .about-cover img {
    height: auto;
    max-height: none;
    border-radius: 0;
  }
  .story p { font-size: 16px; }
  .belief-card {
    min-height: 430px;
    padding: 120px 22px 28px;
    border-radius: 16px;
  }
  .belief-card h2 { font-size: 20px; }
  .belief-card p, .philosophy-grid p, .philosophy-grid li { font-size: 17px; }
  .philosophy h2 { font-size: 42px; }
  .philosophy h3 { font-size: 29px; }
  .philosophy-grid {
    min-height: 430px;
    padding: 24px 18px;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }
  .about-values article { min-height: auto; }
  .about-values img { height: 240px; }
  .about-values h2 { min-height: 0; }
  .vision-panel {
    min-height: 460px;
    padding: 36px 22px;
  }
  .vision-panel h2 { margin-bottom: 34px; font-size: 42px; }
  .vision-panel h3 { font-size: 20px; }
  .vision-panel p { font-size: 19px; line-height: 1.08; }
  .mission-team { margin-top: -42px; }
  .mission-panel {
    min-height: 430px;
    padding: 34px 22px;
  }
  .mission-panel h2 { margin-bottom: 64px; font-size: 42px; }
  .mission-panel h3 { font-size: 20px; }
  .mission-panel p { font-size: 19px; line-height: 1.08; }
  .team-heading { margin: -22px 0 36px; font-size: 42px; }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(300px, 86%);
  }
  .team-grid article,
  .team-grid article:last-child {
    width: 100%;
    grid-column: auto;
  }
  .team-grid img,
  .team-photo-placeholder {
    height: 230px;
  }
  .team-grid h3 { font-size: 20px; }
  .category-showcase {
    width: min(100% - 28px, 420px);
    min-height: 620px;
  }
  .category-content {
    min-height: 620px;
    padding: 30px 16px 24px;
  }
  .category-content h2 { margin-left: 0; font-size: 32px; }
  .category-line { left: 22px; top: 96px; bottom: 176px; }
  .category-copy {
    width: min(320px, 84%);
    margin-top: 98px;
  }
  .category-copy p { font-size: 16px; line-height: 1.45; }
  .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
    padding-left: 18px;
  }
  .category-tabs button { font-size: 25px; }
  .home-product-strip {
    width: 100%;
    margin-top: 34px;
    padding-bottom: 28px;
  }
  .home-product-set { gap: 16px; padding-right: 16px; }
  .home-product-strip article { flex-basis: min(312px, 84vw); }
  .home-product-media { flex-basis: 310px; }
  .home-product-strip h2 {
    padding: 22px 26px 12px;
    font-size: 42px;
  }
  .home-product-strip p {
    padding: 0 26px 44px;
    font-size: 18px;
    line-height: 1.55;
  }
  .footer {
    width: calc(100% - 22px);
    margin-top: 48px;
    padding: 24px 18px;
    gap: 24px;
  }
  .footer-brand {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }
  .footer-brand img { width: 58px; }
  .footer-brand h2 {
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.35;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.55;
  }
  .footer-sections {
    gap: 10px;
    padding-top: 0;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .footer a,
  .footer p {
    font-size: 13px;
  }
  .socials {
    justify-self: center;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
  .socials a,
  .socials svg {
    width: 38px;
    height: 38px;
  }
}
