:root {
  --primary: #2e7d32;
  --secondary: #4caf50;
  --accent: #8bc34a;
  --dark: #1b4332;
  --light: #f5f9f3;
  --blue: #1f6f8b;
  --blue-dark: #164e63;
  --soil: #8a6f4d;
  --text: #24352d;
  --muted: #63746a;
  --line: #dce8df;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(27, 67, 50, 0.14);
  --radius: 8px;
  --section: clamp(72px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 44, 35, 0.28);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(27, 67, 50, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--white);
}

.site-header.scrolled .brand {
  color: var(--dark);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.3);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-header.scrolled .nav-menu a {
  color: var(--text);
}

.nav-menu a:hover,
.site-header.scrolled .nav-menu a:hover {
  color: var(--accent);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .nav-action {
  border-color: rgba(46, 125, 50, 0.18);
  color: var(--white);
  background: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.scrolled .nav-toggle {
  border-color: rgba(46, 125, 50, 0.2);
  color: var(--dark);
  background: var(--light);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 90px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(100deg, rgba(6, 33, 24, 0.92) 0%, rgba(11, 43, 32, 0.82) 38%, rgba(19, 85, 72, 0.64) 100%),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 33, 24, 0.75) 0%, rgba(6, 33, 24, 0.3) 55%, rgba(6, 33, 24, 0.1) 100%);
  pointer-events: none;
}

.hero::before {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.42), rgba(255, 255, 255, 0) 72%);
  filter: blur(8px);
  animation: heroFloat 8s ease-in-out infinite;
  z-index: -1;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  content: "";
  background: linear-gradient(0deg, rgba(245, 249, 243, 1), rgba(245, 249, 243, 0));
  pointer-events: none;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-badges i {
  color: var(--accent);
}

.hero-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(46, 125, 50, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(46, 125, 50, 0.42);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel {
  max-width: 440px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-panel-header i {
  color: var(--accent);
  font-size: 1.5rem;
}

.hero-metrics {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.hero-metrics div {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.1;
}

.hero-metrics span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.hero-quality {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--dark);
  background: rgba(245, 249, 243, 0.95);
  box-shadow: 0 8px 20px rgba(4, 21, 16, 0.14);
}

.hero-quality i {
  margin-top: 4px;
  color: var(--primary);
}

.process {
  padding: var(--section) 0;
  background: linear-gradient(180deg, #f9fdf7 0%, #ffffff 100%);
}

.quality-innovation {
  position: relative;
  padding: var(--section) 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f6fbf2 0%, #ffffff 100%);
}

.quality-innovation::before {
  position: absolute;
  top: -80px;
  left: -70px;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.16), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.quality-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(31, 111, 139, 0.06));
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.06);
}

.quality-highlight-copy {
  max-width: 620px;
}

.quality-highlight-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-highlight-copy strong {
  color: var(--dark);
  font-size: 1.06rem;
  line-height: 1.6;
}

.quality-highlight-stats {
  display: flex;
  gap: 12px;
}

.quality-highlight-stats div {
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.quality-highlight-stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.quality-highlight-stats span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

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

.quality-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fcf2 100%);
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quality-card::after {
  position: absolute;
  inset: auto 24px 18px 24px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.16;
}

.quality-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 125, 50, 0.22);
  box-shadow: 0 22px 44px rgba(27, 67, 50, 0.13);
}

.quality-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.24);
}

.quality-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 1.16rem;
}

.quality-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.quality-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quality-points li {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(46, 125, 50, 0.09);
  font-size: 0.8rem;
  font-weight: 700;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.timeline-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fcf2 100%);
  box-shadow: 0 16px 36px rgba(27, 67, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-card::before {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.22;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 125, 50, 0.24);
  box-shadow: 0 22px 44px rgba(27, 67, 50, 0.14);
}

.timeline-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.timeline-step {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  font-size: 0.95rem;
  font-weight: 800;
}

.timeline-pill i {
  color: var(--primary);
  font-size: 1.05rem;
}

.timeline-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1.14rem;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

section {
  scroll-margin-top: 92px;
}

.section-band {
  background: var(--light);
}

.about,
.products,
.facility,
.why-us,
.certifications,
.solutions,
.contact {
  padding: var(--section) 0;
}

.split-layout,
.cert-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.section-copy h2,
.section-heading h2,
.dealer-layout h2,
.contact-info h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.dealer-layout p,
.contact-info p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

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

.stat-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--primary));
  font-size: 1.25rem;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--dark);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
}

.stat-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.why-item,
.cert-card,
.crop-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.1);
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(27, 67, 50, 0.16);
}

.product-image {
  min-height: 190px;
  background-position: center;
  background-size: cover;
}

.product-image.npk {
  background-image:
    linear-gradient(0deg, rgba(27, 67, 50, 0.18), rgba(27, 67, 50, 0.18)),
    url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=900&q=80");
}

.product-image.organic {
  background-image:
    linear-gradient(0deg, rgba(27, 67, 50, 0.18), rgba(27, 67, 50, 0.18)),
    url("https://images.unsplash.com/photo-1515150144380-bca9f1650ed9?auto=format&fit=crop&w=900&q=80");
}

.product-image.micro {
  background-image:
    linear-gradient(0deg, rgba(27, 67, 50, 0.18), rgba(27, 67, 50, 0.18)),
    url("https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=900&q=80");
}

.product-image.soluble {
  background-image:
    linear-gradient(0deg, rgba(27, 67, 50, 0.18), rgba(27, 67, 50, 0.18)),
    url("https://images.unsplash.com/photo-1592982537447-7440770cbfc9?auto=format&fit=crop&w=900&q=80");
}

.product-body {
  position: relative;
  padding: 34px 22px 24px;
}

.product-icon {
  position: absolute;
  top: -28px;
  left: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 14px 26px rgba(27, 67, 50, 0.24);
}

.product-body h3 {
  min-height: 58px;
  margin: 0;
  color: var(--dark);
  font-size: 1.18rem;
  line-height: 1.22;
}

.product-body p {
  min-height: 104px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.facility-heading {
  max-width: 840px;
}

.facility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 26px;
  align-items: stretch;
}

.facility-slider {
  position: relative;
  width: 100%;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facility-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.facility-slider img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(17, 55, 42, 0.82);
  backdrop-filter: blur(14px);
}

.slide-caption strong,
.slide-caption span {
  display: block;
}

.slide-caption strong {
  font-size: 1.2rem;
}

.slide-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.facility-slider .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.7;
}

.facility-slider .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.facility-points {
  display: grid;
  gap: 16px;
}

.facility-points article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(27, 67, 50, 0.08);
}

.facility-points i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.facility-points h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1.1rem;
}

.facility-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 24px;
}

.why-item i {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
}

.why-item h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.08rem;
  line-height: 1.28;
}

.cert-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cert-card {
  min-height: 184px;
  padding: 22px;
  text-align: center;
}

.cert-card i {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--soil), var(--primary));
  font-size: 1.25rem;
}

.cert-card strong,
.cert-card span {
  display: block;
}

.cert-card strong {
  color: var(--dark);
  font-size: 1.02rem;
  line-height: 1.25;
}

.cert-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.crop-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.crop-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.crop-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(27, 67, 50, 0.04), rgba(27, 67, 50, 0.78));
}

.crop-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.crop-card:hover img {
  transform: scale(1.07);
}

.crop-card h3 {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
}

.dealer-cta {
  position: relative;
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(27, 67, 50, 0.92), rgba(31, 111, 139, 0.78)),
    url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.dealer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dealer-layout h2,
.dealer-layout p {
  color: var(--white);
}

.dealer-layout p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-link {
  display: block;
  color: inherit;
}

.contact-link:hover article {
  transform: translateY(-2px);
  border-color: rgba(46, 125, 50, 0.26);
  box-shadow: 0 12px 28px rgba(27, 67, 50, 0.08);
}

.contact-list i {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary);
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  color: var(--dark);
  line-height: 1.2;
}

.contact-list span,
.contact-list a {
  margin-top: 4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--primary);
}

.contact-form {
  padding: clamp(24px, 4vw, 36px);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-header i {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
}

.form-header h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.35rem;
}

.form-header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form label {
  display: block;
  margin: 14px 0 7px;
  color: var(--dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #fbfdfb;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.14);
}

.contact-form button {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

.faq {
  padding: var(--section) 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(27, 67, 50, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(46, 125, 50, 0.24);
  box-shadow: 0 18px 40px rgba(27, 67, 50, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  color: var(--dark);
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(46, 125, 50, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.active {
  border-color: rgba(46, 125, 50, 0.24);
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: linear-gradient(90deg, rgba(46, 125, 50, 0.06), rgba(31, 111, 139, 0.04));
}

.faq-item.active .faq-question i {
  color: var(--white);
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-answer p {
  padding: 0 24px 22px;
}

.map-section {
  padding: var(--section) 0;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(27, 67, 50, 0.12);
}

.map-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
}

.map-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-details h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.map-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--white);
  font-weight: 800;
}

.map-frame {
  padding: 16px;
  background: linear-gradient(145deg, #f6fcf2 0%, #eef7f3 100%);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #102c23;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 44px 0;
}

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

.site-footer p {
  max-width: 440px;
  margin: 16px 0 0;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

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

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.testimonials {
  padding: var(--section) 0;
}

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

.testimonial-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fcf4 100%);
  box-shadow: 0 18px 36px rgba(27, 67, 50, 0.09);
}

.testimonial-card::before {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(46, 125, 50, 0.14);
  content: "\201C";
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-top strong,
.testimonial-top span {
  display: block;
}

.testimonial-top strong {
  color: var(--dark);
}

.testimonial-top span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: #f4b400;
  font-size: 0.82rem;
}

.markets {
  padding: var(--section) 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.market-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(27, 67, 50, 0.08);
  background-size: cover;
  background-position: center;
}

.market-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(8, 32, 23, 0.82) 0%, rgba(8, 32, 23, 0.52) 55%, rgba(8, 32, 23, 0.24) 100%);
  pointer-events: none;
}

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

.market-africa {
  background-image: url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=900&q=80");
}

.market-middle-east {
  background-image: url("https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=900&q=80");
}

.market-south-asia {
  background-image: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=900&q=80");
}

.market-se-asia {
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80");
}

.market-card::before {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.18), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.market-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.24);
}

.market-body strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: 1.08rem;
}

.market-body span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.65;
}

.market-tag {
  align-self: flex-start;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@media (max-width: 1120px) {
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-grid,
  .market-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-body h3,
  .product-body p {
    min-height: auto;
  }

  .crop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .map-card {
    grid-template-columns: 1fr;
  }

  .map-panel {
    order: 2;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: var(--radius);
    color: var(--text);
  }

  .nav-menu a:hover {
    background: var(--light);
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 134px 0 72px;
  }

  .hero-grid,
  .split-layout,
  .cert-layout,
  .contact-layout,
  .facility-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .facility-slider,
  .facility-slider img {
    min-height: 430px;
    height: 430px;
  }

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

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

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

  .dealer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1160px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.32rem, 13vw, 3.45rem);
  }

  .hero-actions,
  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .about-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .stats-grid,
  .product-grid,
  .why-grid,
  .cert-grid,
  .crop-grid,
  .timeline-grid,
  .quality-grid,
  .market-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    min-height: 210px;
  }

  .facility-slider,
  .facility-slider img {
    min-height: 360px;
    height: 360px;
  }

  .slide-caption {
    right: 14px;
    bottom: 42px;
    left: 14px;
    padding: 14px;
  }

  .slider-button {
    top: 44%;
    width: 40px;
    height: 40px;
  }

  .why-item {
    min-height: 108px;
  }

  .crop-card,
  .crop-card img {
    min-height: 230px;
    height: 230px;
  }

  .contact-list article,
  .form-header {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
  }
}
