/* =========================================================
   Terra Agroscience — Design System
   Fonts: Parkinsans (headings) / Manrope (body) — via Google Fonts
   ========================================================= */

:root {
  /* Colors */
  --color-green-900: #0c2103;
  --color-green-700: #1b5300;
  --color-mint-100: #def4e1;
  --color-offwhite: #f7f9f4;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-orange: #fe7f00;
  --color-peach-100: #ffe0c2;
  --color-yellow: #ffcc00;
  --color-gray-400: #d9d9d9;
  --color-gray-600: #666666;
  --color-ink-900: #1e1e1e;

  /* Gradients */
  --gradient-hero-overlay: linear-gradient(180deg, rgba(12, 33, 3, 0.7) 0%, rgba(12, 33, 3, 0.9) 100%);
  --gradient-news-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.76%, rgba(0, 0, 0, 1) 100%);
  --gradient-divider: linear-gradient(180deg, var(--color-orange) 0%, #151715 100%);
  --gradient-ring: linear-gradient(180deg, var(--color-green-900) 0%, var(--color-green-700) 50%, var(--color-green-900) 100%);

  /* Typography */
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --fs-hero: 106px;
  --lh-hero: 160px;
  --fs-h2: 41px;
  --lh-h2: 60px;
  --fs-h3: 35px;
  --lh-h3: 53px;
  --fs-h3-alt: 30px;
  --lh-h3-alt: 44px;
  --fs-h4: 25px;
  --lh-h4: 37px;
  --fs-h5: 20px;
  --lh-h5: 27px;
  --fs-number: 49px;
  --lh-number: 74px;
  --fs-body: 16px;
  --lh-body: 24px;
  --fs-contact: 21px;
  --lh-contact: 29px;

  /* Radii */
  --radius-sm: 17px;
  --radius-md: 40px;
  --radius-lg: 80px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-nav: 0 4px 4px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 4px 4px rgba(0, 0, 0, 0.02);
  --shadow-inner-glass: inset 0 0 0 8px rgba(255, 255, 255, 0.1);

  /* Layout */
  --container-width: 1602px;
  --container-padding: 160px;
  --header-height: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-gray-600);
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink-900);
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-green-700);
  background: var(--color-mint-100);
  padding: 16px 30px;
  border-radius: var(--radius-md);
}

.eyebrow .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green-700);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 20px 32px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-green-700);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-green-900);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: var(--color-white);
  border-bottom-color: transparent;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: 1920px;
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 160px;
  position: relative;
}

.nav-logo img {
  width: 102px;
  height: 80px;
}

.nav-links {
  margin-inline: auto;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-caret {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header.is-scrolled .nav-caret {
  filter: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white);
  transition: color 0.25s ease;
}

.site-header.is-scrolled .nav-link {
  color: var(--color-ink-900);
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--color-orange) !important;
}

.nav-cta {
  padding: 16px 40px 16px 24px;
}

.nav-cta img {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 5px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: background-color 0.3s ease;
}

.site-header.is-scrolled .nav-burger span {
  background: var(--color-ink-900);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-white);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: var(--shadow-nav);
}

.mobile-nav.is-open {
  max-height: 500px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}

.mobile-nav .nav-link {
  color: var(--color-ink-900);
  font-size: var(--fs-body);
}

.mobile-nav .btn {
  width: fit-content;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 1180px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero-content {
  width: 100%;
  padding-inline: 50px;
  padding-block: 90px 60px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, var(--fs-hero));
  line-height: 1.15;
  text-align: center;
  color: var(--color-mint-100);
  max-width: 1314px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1820px;
  margin-inline: auto;
}

.hero-intro,
.hero-figure,
.hero-quote {
  width: 550px;
  flex-shrink: 0;
}

.hero-figure {
  width: 576px;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 112px;
}

.hero-intro-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-subtitle {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
}

.hero-intro-text p {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero-cta {
  width: fit-content;
}

.hero-figure {
  position: relative;
}

.hero-figure-img {
  width: 100%;
  height: 372px;
  object-fit: cover;
  background: var(--color-gray-400);
}

.hero-stat-badge {
  position: absolute;
  top: -58px;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--color-green-700);
  padding: 16px 19px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-icon-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat-label {
  display: block;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-white);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
}

.hero-quote {
  background: rgba(27, 83, 0, 0.5);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  height: 320px;
  margin-top: 110px;
}

.hero-quote-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--color-green-700);
  object-fit: cover;
  margin-right: -16px;
}

.hero-avatars-label {
  margin-left: 24px;
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero-stars {
  display: flex;
  gap: 8px;
}

.hero-quote-text {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* =========================================================
   About
   ========================================================= */
.about {
  padding-block: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 786fr 786fr;
  gap: 30px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-content > .btn {
  width: fit-content;
}

.about-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.eyebrow {
  width: fit-content;
}

.about-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.about-text {
  color: var(--color-gray-600);
}

.about-features {
  display: flex;
  gap: 82px;
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-mint-100);
  padding: 18px;
}

.feature-icon-peach {
  background: var(--color-peach-100);
}

.about-feature h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}

.about-feature p {
  color: var(--color-gray-600);
}

.about-media {
  position: relative;
}

.about-media-img {
  width: 100%;
  height: 856px;
  object-fit: cover;
  background: var(--color-gray-400);
}

.about-cert-card {
  position: absolute;
  bottom: 45px;
  left: 43px;
  width: 700px;
  max-width: calc(100% - 86px);
  background: var(--color-white);
  border: 1px solid var(--color-orange);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-cert-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-cert-label {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink-900);
}

.about-cert-title {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}

/* =========================================================
   Why Choose
   ========================================================= */
.why-choose {
  background: var(--color-green-900);
  padding-block: 120px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 736fr 786fr;
  gap: 30px;
}

.why-choose-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-card {
  background: var(--color-green-900);
  border: 1px solid var(--color-green-700);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-gray-400);
}

.gallery-card h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-white);
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-choose-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

.why-choose-text {
  color: var(--color-offwhite);
}

.stat-bars {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: 20px;
}

.stat-track {
  position: relative;
  height: 6px;
  background: var(--color-gray-400);
}

.stat-fill-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
}

.stat-fill-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
}

.stat-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 3px 25px 3px 26px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  white-space: nowrap;
}

.why-choose-content > .btn {
  width: fit-content;
}

/* =========================================================
   Our Process
   ========================================================= */
.process {
  background: var(--color-green-700);
  padding-block: 120px;
}

.process-header {
  display: flex;
  align-items: flex-end;
  gap: 31px;
  margin-bottom: 90px;
}

.process-header-left {
  width: 786px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

.process-header-text {
  color: var(--color-offwhite);
}

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

.process-card {
  background: var(--color-white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.process-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 81px;
  height: 81px;
  background: var(--color-green-700);
}

.process-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-mint-100);
}

.process-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.process-card-body h3 {
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  color: var(--color-black);
}

.process-card-body p {
  color: var(--color-black);
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-black);
  width: fit-content;
}

/* =========================================================
   Statistics
   ========================================================= */
.stats {
  padding-block: 120px;
}

.stats-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 1058px;
  margin-inline: auto;
  margin-bottom: 90px;
}

.stats-header-left {
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
  margin-inline: 0;
}

.stats-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.stats-text {
  color: var(--color-gray-600);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  border: 1px solid var(--color-gray-400);
  padding: 40px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

.stat-card-label {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-gray-600);
}

.dot-gray {
  background: var(--color-gray-600);
}

.stat-card-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-ink-900);
  margin-top: 64px;
}

.stat-card p {
  color: var(--color-gray-600);
  margin-top: 20px;
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--color-green-900);
  padding-block: 64px;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 100px;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-white);
  position: relative;
}

.marquee-item::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* =========================================================
   Products
   ========================================================= */
.products {
  padding-block: 120px;
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 90px;
}

.products-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}

.products-list {
  display: flex;
  flex-direction: column;
}

.product-row {
  display: grid;
  grid-template-columns: 474fr 654fr 474fr;
  margin-top: -1px;
}

.product-info,
.product-detail {
  background: var(--color-white);
  border: 1px solid var(--color-gray-400);
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 85px 40px;
}

.product-index {
  color: var(--color-gray-600);
}

.product-info h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  margin-top: 50px;
}

.product-info p {
  color: var(--color-gray-600);
}

.product-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 80px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--color-gray-600);
  border-radius: var(--radius-pill);
  color: var(--color-gray-600);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.product-detail p {
  color: var(--color-gray-600);
  margin-top: 188px;
}

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

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   News & Events
   ========================================================= */
.news {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
}

.news-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-news-overlay);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.news-inner {
  position: relative;
  z-index: 1;
}

.news-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin-bottom: 90px;
}

.news-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

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

.news-card {
  border: 1px solid var(--color-gray-400);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.news-card-glass {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 85px;
  min-height: 401px;
}

.news-card-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card-text h3 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
}

.news-card-text p {
  color: var(--color-gray-400);
}

.news-card-author {
  color: var(--color-offwhite);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.news-card-date {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.news-more {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.news-more-line {
  width: 4px;
  height: 203px;
  background: var(--gradient-divider);
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  background: var(--color-green-900);
  padding-block: 120px;
}

.testimonials-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonials-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

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

.text-accent-green {
  color: var(--color-green-700);
}

.testimonials-stat {
  width: 300px;
  flex-shrink: 0;
  background: var(--color-green-900);
  border: 2px solid var(--color-green-700);
  box-shadow: var(--shadow-inner-glass);
  padding: 47px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.testimonials-stat > span {
  color: var(--color-offwhite);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.testimonials-stat strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-white);
}

.testimonials-divider {
  border: none;
  border-top: 1px solid var(--color-green-700);
  margin: 60px 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 80px;
}

.testimonial-visual-wrap {
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonial-visual {
  position: relative;
  width: 641px;
  height: 640px;
  flex-shrink: 0;
}

.testimonial-ring {
  position: absolute;
  top: 20px;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient-ring);
}

.testimonial-orbit {
  position: absolute;
  top: -6px;
  left: -51px;
  width: 642px;
  height: 642px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.testimonial-award {
  position: absolute;
  top: 122px;
  left: 94px;
  width: 413px;
  height: 387px;
}

.testimonial-avatar {
  position: absolute;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.testimonial-avatar-main {
  width: 100px;
  height: 100px;
  top: 270px;
  left: 541px;
}

.testimonial-avatar-top {
  width: 60px;
  height: 60px;
  top: 80px;
  left: 487px;
}

.testimonial-avatar-bottom {
  width: 60px;
  height: 60px;
  top: 490px;
  left: 487px;
}

.testimonial-avatar.is-active {
  border-color: var(--color-mint-100);
  transform: scale(1.05);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  color: var(--color-white);
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 8px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-white);
}

.testimonial-role {
  color: var(--color-offwhite);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* =========================================================
   Location
   ========================================================= */
.location {
  background: var(--color-mint-100);
  padding-block: 120px;
}

.location-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.eyebrow-peach {
  background: var(--color-peach-100);
  color: var(--color-orange);
}

.dot-orange {
  background: var(--color-orange);
}

.location-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.location-text {
  color: var(--color-gray-600);
  max-width: 786px;
}

.location-grid {
  display: grid;
  grid-template-columns: 785fr 786fr;
  gap: 30px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 47px;
}

.location-contact-row {
  display: flex;
  align-items: center;
  gap: 170px;
}

.location-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green-700);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-contact);
  line-height: var(--lh-contact);
}

.location-divider {
  border: none;
  border-top: 1px solid var(--color-green-700);
  margin: 0;
}

.location-offices {
  display: flex;
  gap: 30px;
}

.location-office {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-office-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green-700);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-contact);
  line-height: var(--lh-contact);
}

.location-address {
  color: var(--color-green-700);
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-hours-label {
  color: var(--color-gray-600);
}

.location-hours p {
  color: var(--color-green-700);
}

.location-direction {
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-contact);
  line-height: var(--lh-contact);
  width: fit-content;
}

.location-map {
  position: relative;
  background: var(--color-green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-map-img {
  width: 100%;
  height: auto;
}

.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
}

.map-pin-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}

.map-pin-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--color-orange);
  border-radius: 50%;
}

.map-pin-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-orange);
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  padding: 5px 15px;
  border-radius: 10px;
  white-space: nowrap;
}

.map-pin-india {
  top: 50%;
  left: 77%;
}

.map-pin-india .map-pin-label {
  right: calc(100% + 12px);
  border-radius: 10px 10px 10px 0;
}

.map-pin-kenya {
  top: 60%;
  left: 65%;
}

.map-pin-kenya .map-pin-label {
  left: calc(100% + 12px);
  border-radius: 10px 10px 0 10px;
}

/* =========================================================
   Footer
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  background: var(--color-green-900);
}

.footer-main {
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 90px;
}

.footer-col h3 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
  margin-bottom: 50px;
}

.footer-col-brand {
  width: 378px;
  flex-shrink: 0;
}

.footer-logo {
  margin-bottom: 50px;
}

.footer-col-brand p {
  color: var(--color-white);
}

.footer-contact {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  color: var(--color-mint-100);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.footer-contact a {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-offwhite);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-col-newsletter {
  width: 328px;
  flex-shrink: 0;
}

.footer-col-newsletter > p {
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-offwhite);
  padding: 10px 20px;
  gap: 10px;
}

.footer-newsletter-form input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-gray-600);
  width: 100%;
}

.footer-newsletter-form input::placeholder {
  color: rgba(102, 102, 102, 0.6);
}

.footer-newsletter-form button {
  flex-shrink: 0;
  display: flex;
}

.footer-social {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-icons img {
  transition: transform 0.25s ease;
}

.footer-social-icons a:hover img {
  transform: translateY(-3px);
}

.footer-bottom {
  background: var(--color-ink-900);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* =========================================================
   Inner Page Hero (About / Products / Infrastructure / News)
   ========================================================= */
.page-hero {
  position: relative;
  height: 626px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, var(--fs-hero));
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.page-hero-breadcrumb {
  color: var(--color-white);
  font-size: 18px;
  line-height: 26px;
}

.page-hero-breadcrumb a {
  transition: color 0.25s ease;
}

.page-hero-breadcrumb a:hover {
  color: var(--color-orange);
}

/* =========================================================
   About — Core Values
   ========================================================= */
.core-values {
  background: var(--color-mint-100);
  padding-block: 120px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: 786fr 786fr;
  gap: 30px;
}

.core-values-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.core-values-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.core-values-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.core-values-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.core-value-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--color-gray-400);
}

.core-value-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-green-700);
  flex-shrink: 0;
}

.core-value-row h3 {
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  margin-bottom: 0;
}

.core-value-row p {
  color: var(--color-gray-600);
}

.core-values-media {
  position: relative;
  height: 1095px;
}

.core-values-media-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.core-values-callout {
  position: absolute;
  left: 0;
  top: 625px;
  width: 400px;
  max-width: 100%;
  background: var(--color-green-900);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.core-values-callout p {
  color: var(--color-mint-100);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}

/* =========================================================
   About — Leadership
   ========================================================= */
.leadership {
  background: var(--color-green-900);
  border-block: 1px solid var(--color-green-700);
  padding-block: 120px;
}

.leadership-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 786px;
}

.leadership-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

.leadership-card {
  background: var(--color-mint-100);
  padding: 30px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.leadership-photo {
  width: 619px;
  max-width: 45%;
  height: 400px;
  object-fit: cover;
  flex-shrink: 0;
}

.leadership-quote-block {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.leadership-quote {
  color: var(--color-gray-600);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}

.leadership-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.leadership-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-green-700);
}

.leadership-role {
  color: var(--color-gray-600);
}

/* =========================================================
   About — Sustainability
   ========================================================= */
.sustainability {
  padding-block: 120px;
}

.sustainability-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 1058px;
  margin-inline: auto;
  margin-bottom: 90px;
}

.sustainability-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.sustainability-text {
  color: var(--color-gray-600);
}

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

.sustainability-card {
  border: 1px solid var(--color-gray-400);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sustainability-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.sustainability-card h3 {
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  margin-bottom: 20px;
}

.sustainability-card p {
  color: var(--color-gray-600);
}

/* =========================================================
   About — Journey
   ========================================================= */
.journey {
  position: relative;
  background: var(--color-green-700);
  padding-block: 120px;
}

.journey-shape-decor {
  position: absolute;
  left: -40px;
  top: 280px;
  width: 319px;
  height: auto;
  pointer-events: none;
}

.journey-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.journey-header {
  width: 786px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 140px;
}

.journey-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

.journey-timeline {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-left: 140px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.journey-line {
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: var(--color-mint-100);
}

.journey-item {
  position: relative;
}

.journey-dot {
  position: absolute;
  left: -111px;
  top: 30px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-green-700);
  border: 2px solid var(--color-mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-dot::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-mint-100);
}

.journey-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-400);
  padding: 30px;
  width: 650px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.journey-card img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}

.journey-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  color: var(--color-green-700);
}

.journey-card p {
  color: var(--color-black);
}

/* =========================================================
   About — CTA
   ========================================================= */
.about-cta {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
}

.about-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-green-900);
  opacity: 0.8;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 786px;
}

.about-cta-heading {
  font-size: var(--fs-h3-alt);
  line-height: var(--lh-h3-alt);
  color: var(--color-white);
}

.about-cta-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.about-cta-rating {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 30px 30px 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 23px;
  max-width: 552px;
}

.about-cta-stars {
  display: flex;
  gap: 8px;
}

.about-cta-rating p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
  text-align: right;
  margin: 0;
}

.page-hero-breadcrumb-accent {
  color: var(--color-orange);
}

/* =========================================================
   Products listing page
   ========================================================= */
.products-cat-bar {
  padding-block: 90px 60px;
}

.products-cat-bar #productsTabs {
  margin-top: 30px;
  flex-wrap: wrap;
}

.products-cat-bar #productsTabs .news-tab {
  flex: 1 1 180px;
}

.products-cat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.products-cat-title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}

.products-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 500px;
  max-width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-gray-600);
}

.products-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-gray-600);
}

.products-search input::placeholder {
  color: rgba(102, 102, 102, 0.6);
}

.products-grid-section {
  padding-bottom: 120px;
}

.products-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.product-item {
  position: relative;
  height: 380px;
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  overflow: hidden;
}

.product-item img {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 252px;
  height: 378px;
  object-fit: cover;
}

.product-item-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-green-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-inline: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .product-item-overlay,
.product-item:focus-within .product-item-overlay {
  opacity: 1;
}

.product-item-overlay h3 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-white);
}

.product-item-overlay p {
  color: var(--color-white);
  margin-top: -20px;
}

.product-item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
}

.product-item-arrow img {
  position: static;
  transform: none;
  width: 24px;
  height: 24px;
}

/* =========================================================
   Contact page — form
   ========================================================= */
.contact-form-section {
  padding-block: 120px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 700fr 786fr;
  gap: 60px;
}

.contact-form-intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-gray-600);
}

.contact-form-text {
  color: var(--color-gray-600);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item .feature-icon {
  background: var(--color-mint-100);
}

.contact-info-item a,
.contact-info-item span {
  color: var(--color-green-700);
  font-size: var(--fs-contact);
  line-height: var(--lh-contact);
}

.contact-form {
  background: var(--color-mint-100);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-ink-900);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-gray-600);
  outline: none;
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-green-700);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  width: fit-content;
}

/* =========================================================
   News & Events listing page
   ========================================================= */
.news-tabs-bar {
  padding-block: 60px;
}

.news-tabs {
  border: 1px solid var(--color-mint-100);
  padding: 10px;
  display: flex;
  gap: 10px;
}

.news-tab {
  flex: 1;
  text-align: center;
  padding: 16px 30px;
  background: var(--color-mint-100);
  color: var(--color-green-700);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.news-tab.is-active {
  background: var(--color-green-700);
  color: var(--color-white);
}

.news-listing-section {
  padding-bottom: 120px;
}

.article-listing-section {
  padding-top: 120px;
}

.news-listing-grid {
  display: grid;
  grid-template-columns: 1058fr 514fr;
  gap: 30px;
  align-items: start;
}

.featured-news-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-ink-900);
  margin-bottom: 30px;
}

.news-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.news-item-card {
  background: var(--color-offwhite);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.news-item-meta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gray-600);
  font-size: 18px;
  line-height: 26px;
}

.news-item-meta-group img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.news-item-card h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}

.news-item-card p {
  color: var(--color-gray-600);
}

.news-sidebar {
  background: var(--color-mint-100);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-offwhite);
  padding: 16px 20px;
}

.news-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-gray-600);
}

.news-search input::placeholder {
  color: rgba(102, 102, 102, 0.6);
}

.news-sidebar-divider {
  border: none;
  border-top: 1px solid var(--color-gray-600);
  margin: 0;
}

.news-categories h3 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-green-700);
  margin-bottom: 30px;
}

.news-categories ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-categories a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink-900);
  font-size: 18px;
  line-height: 26px;
  transition: color 0.25s ease;
}

.news-categories a:hover {
  color: var(--color-green-700);
}

.upcoming-events {
  background: var(--color-mint-100);
  padding-block: 120px;
}

.upcoming-events-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-green-700);
  margin-bottom: 30px;
}

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

/* =========================================================
   News & Events — article detail page
   ========================================================= */
.article-hero-img {
  width: 100%;
  height: 564px;
  object-fit: cover;
  margin-bottom: 30px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-body h1 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--color-ink-900);
}

.article-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-section h2 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-gray-600);
}

.article-section p {
  color: var(--color-gray-600);
}

.article-section ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 22px;
  list-style: disc;
  color: var(--color-gray-600);
}

.article-section ul li {
  color: var(--color-gray-600);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.event-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-highlights h2 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  color: var(--color-gray-600);
}

.event-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-highlight-item h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-gray-600);
}

.event-highlight-item p,
.event-highlight-item ul {
  color: var(--color-gray-600);
}

.event-highlight-item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 22px;
  list-style: disc;
}

.related-news {
  background: var(--color-mint-100);
  padding-block: 120px;
}

.related-news-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-green-700);
  margin-bottom: 30px;
}

/* =========================================================
   Infrastructure page
   ========================================================= */

.infra-facilities {
  background: var(--color-green-900);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-block: 100px;
}

.infra-facility-row {
  display: grid;
  grid-template-columns: 786fr 786fr;
  gap: 30px;
  align-items: stretch;
}

.infra-facility-row.is-reversed .infra-facility-content {
  order: 2;
}

.infra-facility-row.is-reversed .infra-facility-media {
  order: 1;
}

.infra-facility-content {
  background: var(--color-white);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.infra-facility-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-ink-900);
}

.infra-facility-content > p {
  color: var(--color-gray-600);
}

.infra-facility-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.infra-facility-highlights h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-ink-900);
}

.infra-facility-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.infra-facility-highlights ul li {
  color: var(--color-gray-600);
}

.infra-facility-media {
  position: relative;
}

.infra-facility-media img {
  width: 100%;
  height: 100%;
  min-height: 718px;
  object-fit: cover;
  background: var(--color-gray-400);
}

.infra-stat-card {
  border: 1px solid var(--color-peach-100);
  padding: 40px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

.infra-stat-card-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-ink-900);
  margin-bottom: 10px;
}

.infra-stat-card p {
  color: var(--color-gray-600);
}

.infra-process {
  background: var(--color-green-700);
  padding-block: 120px;
}

.infra-process-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.infra-process-top {
  display: grid;
  grid-template-columns: 786fr 786fr;
  gap: 30px;
  align-items: start;
}

.infra-process-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.infra-process-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-white);
}

.infra-process-img {
  width: 100%;
  height: 524px;
  object-fit: cover;
  background: var(--color-gray-400);
}

.infra-process-steps {
  display: flex;
  flex-direction: column;
}

.infra-process-step {
  background: var(--color-white);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.infra-process-step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-number);
  line-height: var(--lh-number);
  color: var(--color-green-700);
  flex-shrink: 0;
  width: 65px;
}

.infra-process-step h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--color-black);
}

/* =========================================================
   Product Detail page
   ========================================================= */

.page-hero-current {
  color: var(--color-white);
}

.product-details-page {
  padding-block: 120px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 786fr 786fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 60px;
}

.product-detail-media {
  position: relative;
  height: 786px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-offwhite);
}

.product-detail-media-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-media-fg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 87.5%;
  height: 100%;
  object-fit: contain;
}

.product-detail-media-single {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-spec-value {
  color: var(--color-gray-600);
}

.crop-name-plain {
  font-weight: 600;
  color: var(--color-ink-900);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-detail-title {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--color-ink-900);
}

.product-spec {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-spec h2,
.product-spec h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--color-ink-900);
}

.product-spec p {
  color: var(--color-gray-600);
}

.product-spec ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-spec ul li {
  color: var(--color-gray-600);
}

.product-sku-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-sku-pill {
  background: var(--color-mint-100);
  color: var(--color-green-700);
  padding: 16px 30px;
  border-radius: var(--radius-md);
}

.product-detail-full {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.product-dosage-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.product-dosage-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.product-dosage-table th {
  background: var(--color-green-700);
  color: var(--color-white);
  text-align: left;
  padding: 16px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  white-space: nowrap;
}

.product-dosage-table td {
  padding: 16px 30px;
  border: 1px solid var(--color-mint-100);
  color: var(--color-ink-900);
}

.crop-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.crop-name img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.product-detail-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}

.product-detail-related-heading {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--color-green-700);
  margin-bottom: 30px;
}

.product-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-item-static .product-item-overlay {
  opacity: 1;
  background: rgba(27, 83, 0, 0.62);
}

/* =========================================================
   Responsive
   ========================================================= */

/* ---- Large desktop: 1440px ---- */
@media (max-width: 1440px) {
  .nav-inner {
    padding-inline: 60px;
  }

  .hero-content {
    padding-inline: 40px;
  }

  .hero-row {
    max-width: 100%;
  }
}

/* ---- Small desktop: 1280px ---- */
@media (max-width: 1280px) {
  :root {
    --fs-hero: 80px;
    --fs-h2: 35px;
    --lh-h2: 49px;
    --fs-h3: 31px;
    --lh-h3: 45px;
  }

  .nav-inner {
    padding-inline: 32px;
  }

  .hero-row {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .hero-intro,
  .hero-figure,
  .hero-quote {
    width: 100%;
    max-width: 550px;
  }

  .hero-intro {
    padding-top: 0;
  }

  .process-header-left {
    width: 620px;
  }
}

/* ---- Tablet / small laptop: 1024px ---- */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-inner {
    padding-inline: 24px;
  }

  .hero-row {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .hero-intro,
  .hero-figure,
  .hero-quote {
    width: 100%;
    max-width: 550px;
  }

  .hero-intro {
    padding-top: 0;
  }

  .hero-title {
    max-width: 100%;
  }

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

  .infra-facility-row,
  .infra-facility-row.is-reversed {
    grid-template-columns: 1fr;
  }

  .infra-facility-row .infra-facility-content,
  .infra-facility-row.is-reversed .infra-facility-content {
    order: 1;
  }

  .infra-facility-row .infra-facility-media,
  .infra-facility-row.is-reversed .infra-facility-media {
    order: 2;
  }

  .infra-facility-media img {
    min-height: 400px;
  }

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

  .infra-process-step {
    gap: 30px;
  }

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

  .product-detail-media {
    height: 500px;
  }

  .product-detail-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-values-media {
    height: auto;
  }

  .core-values-media-img {
    position: static;
    height: 500px;
  }

  .core-values-callout {
    position: static;
    width: 100%;
    margin-top: -60px;
    margin-left: 30px;
    max-width: calc(100% - 30px);
  }

  .leadership-card {
    flex-direction: column;
  }

  .leadership-photo {
    width: 100%;
    max-width: 100%;
  }

  .journey-grid {
    flex-direction: column;
  }

  .journey-header {
    width: 100%;
    position: static;
  }

  .journey-timeline {
    padding-left: 60px;
    width: 100%;
  }

  .journey-dot {
    left: -46px;
  }

  .journey-line {
    left: 15px;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-rating {
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .about-cta-rating p {
    text-align: left;
  }

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

  .news-listing-grid {
    grid-template-columns: 1fr;
  }

  .news-item-grid {
    grid-template-columns: 1fr;
  }

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

  .about-media-img {
    height: 500px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-gallery {
    max-width: 600px;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .process-header-left {
    width: 100%;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-row {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .product-info,
  .product-detail {
    border-bottom: none;
  }

  .product-media {
    min-height: 320px;
  }

  .product-detail p {
    margin-top: 40px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .testimonials-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .testimonial-card {
    flex-direction: column;
    gap: 40px;
  }

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

  .location-map {
    min-height: 400px;
  }

  .footer-grid {
    flex-wrap: wrap;
    row-gap: 60px;
  }

  .footer-col-brand {
    width: 100%;
    max-width: 400px;
  }
}

/* ---- Tablet portrait: 768px ---- */
@media (max-width: 768px) {
  :root {
    --fs-hero: 50px;
    --fs-h2: 29px;
    --lh-h2: 42px;
    --fs-h3: 26px;
    --lh-h3: 38px;
    --fs-h3-alt: 24px;
    --lh-h3-alt: 35px;
    --fs-h4: 22px;
    --lh-h4: 33px;
    --fs-number: 36px;
    --lh-number: 51px;
    --container-padding: 24px;
  }

  .container {
    padding-inline: 20px;
  }

  .nav-inner {
    padding-inline: 20px;
  }

  .nav-logo img {
    width: 80px;
    height: 62px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 140px 60px;
    padding-inline: 20px;
  }

  .hero-quote {
    height: auto;
    padding: 30px 24px;
  }

  .about,
  .process,
  .stats,
  .products,
  .news,
  .testimonials,
  .location,
  .why-choose,
  .core-values,
  .leadership,
  .sustainability,
  .journey,
  .about-cta,
  .products-cat-bar,
  .products-grid-section,
  .contact-form-section {
    padding-block: 70px;
  }

  .about-features {
    flex-direction: column;
    gap: 30px;
  }

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

  .core-value-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .products-item-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-form {
    padding: 30px;
  }

  .why-choose-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

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

  .stats-header {
    margin-bottom: 50px;
  }

  .product-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .product-dosage-table th,
  .product-dosage-table td {
    padding: 14px 20px;
  }

  .products-header {
    margin-bottom: 50px;
  }

  .product-detail {
    padding: 30px 24px;
  }

  .product-info {
    padding: 40px 24px;
  }

  .testimonial-visual {
    transform: scale(0.72);
    transform-origin: top left;
    margin-bottom: -160px;
  }

  .location-offices {
    flex-direction: column;
    gap: 40px;
  }

  .location-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 50px;
  }

  .footer-col-newsletter,
  .footer-col-brand {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: auto;
    padding-block: 24px;
  }

  .news-more-line {
    height: 100px;
  }
}

/* ---- Mobile: 480px and below (covers 390 / 375 / 320) ---- */
@media (max-width: 480px) {
  :root {
    --fs-hero: 36px;
    --fs-h2: 24px;
    --lh-h2: 33px;
    --fs-h3: 22px;
    --lh-h3: 31px;
    --fs-h3-alt: 20px;
    --lh-h3-alt: 29px;
    --fs-h4: 19px;
    --lh-h4: 28px;
    --fs-h5: 18px;
    --lh-h5: 25px;
    --fs-number: 29px;
    --lh-number: 40px;
    --fs-body: 15px;
    --lh-body: 22px;
    --fs-contact: 17px;
    --lh-contact: 24px;
  }

  .container {
    padding-inline: 16px;
  }

  .nav-inner {
    padding-inline: 16px;
  }

  .nav-logo img {
    width: 64px;
    height: 50px;
  }

  .btn {
    padding: 16px 24px;
    font-size: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-block: 120px 40px;
    padding-inline: 16px;
  }

  .hero-title {
    margin-bottom: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 29px;
  }

  .hero-stat-badge {
    width: 120px;
    height: 120px;
    top: -40px;
    padding: 12px 14px;
  }

  .hero-figure-img {
    height: 260px;
  }

  .page-hero {
    height: auto;
    min-height: 420px;
    padding-bottom: 40px;
  }

  .products-item-grid {
    grid-template-columns: 1fr;
  }

  .products-cat-bar-inner {
    align-items: flex-start;
  }

  .core-values-callout {
    padding: 30px;
  }

  .core-values-callout p {
    font-size: 18px;
    line-height: 26px;
  }

  .leadership-quote {
    font-size: 18px;
    line-height: 26px;
  }

  .journey-card {
    padding: 20px;
  }

  .journey-timeline {
    padding-left: 46px;
  }

  .journey-dot {
    left: -32px;
    width: 24px;
    height: 24px;
  }

  .journey-dot::after {
    width: 12px;
    height: 12px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 24px;
  }

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

  .news-sidebar {
    padding: 30px;
  }

  .news-tabs {
    flex-direction: column;
  }

  .about-media-img {
    height: 360px;
  }

  .about-cert-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .about-media {
    display: flex;
    flex-direction: column;
  }

  .why-choose-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-img {
    aspect-ratio: 16 / 10;
  }

  .stat-card {
    padding: 30px 24px;
    padding-top: 40px;
  }

  .process-card {
    min-height: auto;
    padding: 24px;
  }

  .product-tags {
    gap: 12px 16px;
  }

  .tag {
    font-size: 14px;
    padding: 8px 16px;
  }

  .news-card-glass {
    padding: 24px;
    gap: 50px;
    min-height: 320px;
  }

  .testimonial-visual {
    transform: scale(0.56);
    transform-origin: top left;
    margin-bottom: -280px;
  }

  .testimonial-content {
    gap: 24px;
  }

  .testimonials-stat {
    width: 100%;
    padding: 32px 24px;
  }

  .location-contact-item {
    font-size: var(--fs-contact);
  }

  .map-pin-label {
    font-size: 11px;
    padding: 3px 8px;
  }

  .map-pin-kenya {
    left: 52%;
  }

  .map-pin-india {
    left: 82%;
  }

  .footer-newsletter-form {
    flex-wrap: nowrap;
  }

  .footer-social-icons {
    gap: 14px;
  }
}

@media (max-width: 360px) {
  :root {
    --fs-hero: 30px;
  }

  .hero-stars img,
  .testimonial-stars img {
    width: 15px;
    height: 15px;
  }
}
