:root {
  --ink: #14211b;
  --muted: #65736b;
  --line: #e4ebe5;
  --paper: #ffffff;
  --soft: #f4f7f1;
  --sage: #789262;
  --leaf: #2f6d3b;
  --deep: #173b24;
  --gold: #c7963d;
  --aqua: #dfeee5;
  --shadow: 0 22px 55px rgba(20, 33, 27, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--deep);
}

.brand-logo {
  width: clamp(165px, 18.7vw, 209px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--leaf));
  font-size: 15px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.main-nav {
  position: absolute;
  inset: 76px 16px auto 16px;
  display: none;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.main-nav.open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.nav-link,
.mega-trigger {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  border-radius: 8px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-link:hover,
.mega-trigger:hover {
  background: var(--soft);
  color: var(--leaf);
  transform: translateY(-1px);
}

.mega-menu {
  display: none;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 33, 27, 0.1);
}

.nav-item.has-mega.open .mega-menu {
  display: grid;
  gap: 2px;
}

.mega-card {
  position: relative;
  padding: 11px 13px 11px 22px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.mega-card::before {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%) scale(0.75);
  transition: transform 240ms ease, background 240ms ease;
}

.mega-card:hover {
  color: var(--leaf);
  background: var(--soft);
  transform: translateX(4px);
}

.mega-card:hover::before {
  background: var(--leaf);
  transform: translateY(-50%) scale(1);
}

.mega-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.mega-card span {
  display: none;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.dealer-btn,
.btn {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid var(--deep);
  padding: 12px 18px;
  background: var(--deep);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.dealer-btn::after,
.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 78%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.dealer-btn:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20, 33, 27, 0.18);
}

.dealer-btn:hover::after,
.btn:hover::after {
  transform: translateX(120%);
}

.dealer-btn {
  display: none;
}

.btn.secondary {
  background: transparent;
  color: var(--deep);
}

.hero .btn.secondary,
.page-hero .btn.secondary,
.section.deep .btn.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.btn.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #1e170d;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(16, 41, 27, 0.9), rgba(16, 41, 27, 0.48)),
    var(--hero-image, url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=80"));
  background-position: center;
  background-size: auto, cover;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0;
  background-image:
    linear-gradient(90deg, rgba(16, 41, 27, 0.9), rgba(16, 41, 27, 0.48)),
    var(--hero-next-image, var(--hero-image, url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=80")));
  background-position: center;
  background-size: auto, cover;
  transform: scale(1.015);
  transition: opacity 1500ms ease, transform 5200ms ease;
}

.hero.is-changing::before {
  opacity: 1;
  transform: scale(1.055);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 34vh;
  z-index: 0;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 92px 0 118px;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-animate:nth-child(2) {
  animation-delay: 130ms;
}

.hero-animate:nth-child(3) {
  animation-delay: 260ms;
}

.hero-animate:nth-child(4) {
  animation-delay: 390ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.3vw, 23px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 86px 0;
  position: relative;
  transition: background-color 620ms ease;
}

.section > .container {
  transition: transform 620ms ease;
}

.section:hover {
  background-color: #f7faf4;
}

.section:hover > .container {
  transform: translateY(-2px);
}

.section.soft {
  background: var(--soft);
}

.section.soft:hover {
  background: #edf5e9;
}

.section.deep {
  background: var(--deep);
  color: #fff;
}

.section.deep:hover {
  background: #13361f;
}

.section.deep .lead,
.section.deep .muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 38px;
}

.section-head.narrow {
  max-width: 790px;
}

.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--radius);
}

.stat {
  padding: 30px;
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  background: #fff;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 33, 27, 0.08);
}

.motion-ready .reveal-stat {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .reveal-stat.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.stat strong {
  display: block;
  color: var(--deep);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two,
.grid.three,
.grid.four,
.grid.nine {
  grid-template-columns: 1fr;
}

.card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.card.lift {
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 109, 59, 0.26);
  box-shadow: 0 24px 55px rgba(20, 33, 27, 0.12);
}

.product-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.product-card.with-image {
  min-height: 470px;
  overflow: hidden;
}

.product-thumb {
  position: relative;
  min-height: 275px;
  margin: -8px -8px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8faf7, #eef4ed);
  border-radius: 8px;
  padding: 22px;
}

.product-spotlight-grid .product-thumb,
.product-portfolio-grid .product-thumb {
  background: #b3b3b3;
}

.product-thumb img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: transform 420ms ease;
}

.product-thumb.wide img {
  width: 100%;
  height: 230px;
  transform: none;
}

.product-card:hover .product-thumb img {
  transform: translateY(-6px) scale(1.04);
}

.product-card:hover .product-thumb.wide img {
  transform: translateY(-6px) scale(1.02);
}

.product-card small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card p,
.muted {
  color: var(--muted);
}

.image-panel {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(20, 33, 27, 0), rgba(20, 33, 27, 0.22)),
    var(--panel-image, url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1200&q=80")) center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.image-panel:hover {
  transform: scale(1.018);
  box-shadow: 0 28px 70px rgba(20, 33, 27, 0.16);
}

.split {
  display: grid;
  gap: 34px;
  align-items: center;
}

.product-detail-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.product-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(223, 238, 229, 0.8), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 50% 88%, rgba(20, 33, 27, 0.12), transparent 42%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.product-visual img {
  width: min(100%, 430px);
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

.product-visual:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 109, 59, 0.26);
  box-shadow: 0 30px 72px rgba(20, 33, 27, 0.16);
}

.product-visual:hover img {
  transform: scale(1.035);
}

.product-visual-demo {
  isolation: isolate;
  perspective: 1000px;
  overflow: hidden;
  padding: 44px;
  background: #b3b3b3;
  border-color: #8f8f8f;
}

.product-visual-demo img {
  max-height: 500px;
}

.product-visual-fill img {
  width: min(100%, 500px);
  max-height: 590px;
}

.product-visual-fill.wide img {
  width: min(100%, 640px);
  max-height: 590px;
}

.product-visual-demo::before {
  display: none;
}

.product-visual-demo:hover {
  transform: translateY(-6px) scale(1.006);
  box-shadow: 0 38px 90px rgba(20, 33, 27, 0.22);
}

.product-visual-demo:hover img {
  transform: translateY(-8px) translateZ(26px) scale(1.045);
  filter: drop-shadow(0 20px 22px rgba(20, 33, 27, 0.24));
}

.product-visual.wide img {
  width: min(100%, 560px);
}

.product-copy {
  display: grid;
  gap: 22px;
}

.quote {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-size: 22px;
  line-height: 1.45;
}

.why-choose-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 247, 241, 0.72), rgba(255, 255, 255, 0.96));
}

.why-choose-grid,
.agri-intel-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.why-choose-media,
.agri-intel-panel {
  position: relative;
  min-height: 520px;
}

.why-image-main {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 33, 27, 0.05), rgba(20, 33, 27, 0.28)),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1300&q=80") center/cover;
  box-shadow: var(--shadow);
  transform-origin: center;
  transition: transform 700ms ease, filter 700ms ease;
}

.why-choose-media:hover .why-image-main {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.why-badge {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: min(210px, 52%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 22px;
  color: #fff;
  text-align: center;
  font-weight: 800;
  background: var(--leaf);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(20, 33, 27, 0.24);
  animation: softFloat 5.8s ease-in-out infinite;
}

.why-badge svg,
.intel-card svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-float,
.intel-float {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(20, 33, 27, 0.12);
  animation: softFloat 6.4s ease-in-out infinite;
}

.why-float-one {
  top: 34px;
  left: 22px;
}

.why-float-two {
  top: 118px;
  right: 16px;
  animation-delay: 1.1s;
}

.why-choose-copy {
  max-width: 590px;
}

.why-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
}

.why-item:hover {
  transform: translateX(8px);
  border-color: rgba(47, 109, 59, 0.28);
  background: #fbfdf9;
  box-shadow: 0 20px 46px rgba(20, 33, 27, 0.1);
}

.why-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--deep);
  border-radius: 50%;
  font-weight: 850;
}

.why-item h3,
.why-item p,
.intel-card h3,
.intel-card p {
  margin-bottom: 0;
}

.why-item p,
.intel-card p {
  margin-top: 8px;
  color: var(--muted);
}

.agri-intel-section {
  overflow: hidden;
}

.agri-intel-copy {
  max-width: 560px;
}

.agri-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.agri-tags span {
  padding: 10px 13px;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.agri-intel-panel {
  display: grid;
  place-items: center;
}

.agri-intel-panel::before {
  position: absolute;
  inset: 9% 5%;
  content: "";
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(20, 33, 27, 0.16), rgba(20, 33, 27, 0.34)),
    url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1300&q=80") center/cover;
  box-shadow: var(--shadow);
}

.orbit-ring {
  position: absolute;
  width: min(82%, 430px);
  aspect-ratio: 1;
  border: 1px dashed rgba(199, 150, 61, 0.72);
  border-radius: 50%;
  animation: slowSpin 22s linear infinite;
}

.intel-card {
  position: absolute;
  z-index: 2;
  width: min(280px, 72%);
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(20, 33, 27, 0.18);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.intel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 34px 72px rgba(20, 33, 27, 0.22);
}

.intel-card svg {
  margin-bottom: 14px;
  color: var(--leaf);
}

.intel-card-primary {
  top: 44px;
  left: 22px;
}

.intel-card-secondary {
  right: 18px;
  bottom: 48px;
}

.intel-float-one {
  right: 8px;
  top: 34px;
}

.intel-float-two {
  left: 14px;
  bottom: 34px;
  animation-delay: 1.2s;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.timeline-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 109, 59, 0.24);
  box-shadow: 0 18px 42px rgba(20, 33, 27, 0.1);
}

.timeline-item::before {
  position: absolute;
  left: 22px;
  top: 24px;
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--deep);
  font-weight: 800;
}

.team-card {
  min-height: 300px;
}

.team-avatar {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--aqua);
  color: var(--deep);
  font-weight: 850;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(223, 238, 229, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 50% 28%, rgba(47, 109, 59, 0.16), transparent 36%);
  border: 1px dashed rgba(47, 109, 59, 0.28);
}

.team-photo span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(20, 33, 27, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-box {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--aqua);
}

.icon-box img {
  width: 34px;
  height: 34px;
}

.chart-wrap {
  display: grid;
  gap: 18px;
}

.bar-row {
  display: grid;
  gap: 8px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eee8;
}

.bar span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
  transform-origin: left;
  animation: barGrow 1200ms ease both;
}

.testimonial {
  min-height: 210px;
}

.page-hero {
  padding: 96px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 33, 27, 0.91), rgba(20, 33, 27, 0.52)),
    var(--page-image, url("https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=1800&q=80")) center/cover;
}

.page-hero h1 {
  max-width: 890px;
}

.page-hero .lead {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--deep);
  background: var(--soft);
}

.benefit-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

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

.benefit-list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field input[readonly] {
  color: var(--deep);
  background: #f3f7f1;
}

.modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.enquiry-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 14, 0.64);
}

.enquiry-modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(10, 18, 14, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms ease;
}

.enquiry-modal.open .enquiry-modal__panel {
  transform: translateY(0) scale(1);
}

.enquiry-modal__panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.enquiry-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.map-frame {
  width: 100%;
  min-height: 410px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  padding: 52px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #0f2719;
}

.footer-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.footer a {
  color: #fff;
}

.footer .brand-logo {
  width: clamp(220px, 25vw, 320px);
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-brand {
  max-width: 360px;
}

.footer-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.footer-address {
  max-width: 340px;
  margin: 0 0 18px;
}

.footer-contact {
  justify-self: start;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease, background-color 620ms ease;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  transition: color 220ms ease, transform 220ms ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.social-link img {
  width: 21px;
  height: 21px;
}

.social-link:hover {
  transform: translateY(-4px);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

@keyframes heroPan {
  from {
    background-position: center center;
  }

  to {
    background-position: center center, 54% 48%;
  }
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-animate,
  .reveal-stat,
  .reveal-on-scroll,
  .why-badge,
  .why-float,
  .intel-float,
  .orbit-ring {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .footer-contact .social-links {
    justify-content: flex-end;
  }

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

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

  .why-choose-grid,
  .agri-intel-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .product-detail-grid {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  }
}

@media (min-width: 980px) {
  .nav-wrap {
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .dealer-btn {
    display: inline-flex;
  }

  .main-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-link,
  .mega-trigger {
    padding: 10px 12px;
    font-size: 14px;
  }

  .nav-item.has-mega {
    position: relative;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    margin-top: 0;
    grid-template-columns: 1fr;
    padding: 10px;
    box-shadow: 0 22px 54px rgba(20, 33, 27, 0.14);
  }

  .nav-item.has-mega:hover .mega-menu,
  .nav-item.has-mega:focus-within .mega-menu,
  .nav-item.has-mega.open .mega-menu {
    display: grid;
  }
}

@media (max-width: 979px) {
  .nav-wrap {
    justify-content: center;
    padding-right: 58px;
    padding-left: 58px;
  }

  .nav-wrap .brand {
    justify-content: center;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 42px;
  }

  .brand-logo {
    width: 142px;
  }

  .nav-wrap {
    padding-right: 52px;
    padding-left: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .stat,
  .card {
    padding: 20px;
  }

  .product-card.with-image {
    min-height: 430px;
  }

  .product-thumb {
    min-height: 245px;
  }

  .product-thumb img,
  .product-thumb.wide img {
    height: 205px;
  }

  .why-choose-media,
  .agri-intel-panel,
  .why-image-main {
    min-height: 430px;
  }

  .agri-intel-panel {
    display: grid;
    gap: 14px;
    align-items: stretch;
    min-height: auto;
    padding: 16px;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .agri-intel-panel::before {
    inset: 0;
  }

  .orbit-ring {
    display: none;
  }

  .why-badge {
    right: 16px;
    bottom: 18px;
    width: min(190px, 62%);
  }

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

  .intel-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 18px;
  }

  .intel-card-primary {
    top: auto;
    left: auto;
  }

  .intel-card-secondary {
    right: auto;
    bottom: auto;
  }

  .intel-float {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: fit-content;
    max-width: 100%;
  }

  .intel-float-one {
    justify-self: end;
  }

  .intel-float-two {
    justify-self: start;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }
}
