:root {
  --ink: #16251d;
  --muted: #607269;
  --subtle: #eef5ea;
  --paper: #f5f8ef;
  --white: #ffffff;
  --line: #d8e2dd;
  --green: #168346;
  --green-dark: #0f4a33;
  --blue: #247a8b;
  --wheat: #b88b35;
  --clay: #8f5c3d;
  --shadow: 0 22px 60px rgba(18, 38, 33, 0.14);
  --radius: 8px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(18, 63, 50, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.topbar {
  height: 36px;
  display: flex;
  align-items: center;
  background: rgba(9, 37, 29, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.82rem;
}

.site-search {
  display: inline-flex;
  align-items: center;
  height: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.site-search input {
  width: 150px;
  height: 100%;
  padding: 0 10px;
  color: currentColor;
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.site-search button {
  height: 100%;
  padding: 0 12px;
  color: var(--white);
  background: rgba(181, 137, 69, 0.92);
  border: 0;
}

.header-main {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(23, 33, 38, 0.1);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
}

.site-header.is-scrolled .topbar,
.site-header.is-open .topbar {
  background: rgba(245, 248, 245, 0.86);
  border-bottom-color: rgba(23, 33, 38, 0.08);
}

.site-header.is-scrolled .site-search,
.site-header.is-open .site-search {
  background: rgba(23, 33, 38, 0.04);
  border-color: rgba(23, 33, 38, 0.1);
}

.site-header.is-scrolled .site-search input::placeholder,
.site-header.is-open .site-search input::placeholder {
  color: rgba(23, 33, 38, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 5px 8px 5px 5px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(6, 38, 75, 0.14), rgba(255, 255, 255, 0.04));
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 8px;
  background: linear-gradient(135deg, rgba(242, 247, 250, 0.9), rgba(215, 231, 238, 0.84));
  border: 1px solid rgba(5, 42, 88, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(6, 38, 75, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.14;
  white-space: nowrap;
}

.brand-text small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
}

.site-nav a,
.nav-item > a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--wheat);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.nav-item > a:hover::after,
.site-nav a.is-current::after,
.nav-item > a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current,
.nav-item > a.is-current {
  color: var(--wheat);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown a {
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.nav-dropdown a:hover {
  color: var(--green-dark);
  background: #eef5ef;
}

.nav-dropdown a::after {
  display: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-phone,
.primary-btn,
.secondary-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
}

.header-phone {
  min-width: 112px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(31, 111, 74, 0.24);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone {
  color: var(--white);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  margin-top: calc(var(--header-height) * -1);
  overflow: hidden;
  color: var(--ink);
  background: #eef6e9;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 251, 241, 0.96) 0%, rgba(248, 251, 241, 0.88) 44%, rgba(248, 251, 241, 0.46) 100%),
    linear-gradient(180deg, rgba(225, 242, 224, 0.84), rgba(255, 255, 255, 0.62));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 142px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.74fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wheat);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #50635a;
  font-size: 1.1rem;
}

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

.primary-btn,
.secondary-btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.primary-btn {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(31, 111, 74, 0.28);
}

.secondary-btn {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 131, 70, 0.28);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-card {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(38, 68, 44, 0.14);
}

.hero-card-large {
  grid-column: 1 / -1;
  min-height: 300px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  color: var(--white);
  background: rgba(15, 74, 51, 0.84);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.home-entry {
  background: linear-gradient(180deg, #ffffff, #eef6ed);
}

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

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

.home-link-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.home-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 131, 70, 0.38);
  box-shadow: 0 20px 42px rgba(23, 33, 38, 0.12);
}

.home-link-card span {
  color: var(--wheat);
  font-size: 0.86rem;
  font-weight: 900;
}

.home-link-card strong {
  margin-top: 26px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.home-link-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-strip {
  padding: 28px 0;
  color: var(--white);
  background: var(--green-dark);
}

.strength {
  padding: 58px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #eff7eb, #ffffff);
}

.strength-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.strength-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

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

.intro-grid > div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce8d5;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(38, 68, 44, 0.08);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: #d6b36b;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.products .section-heading {
  max-width: 1120px;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.solution-copy h2,
.detail-block h2,
.quality-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.solution-copy p:not(.eyebrow),
.detail-block p:not(.eyebrow),
.quality-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.products .section-heading p:not(.eyebrow) {
  max-width: 1120px;
  line-height: 1.45;
}

.products,
.applications,
.cases,
.news {
  position: relative;
  background:
    linear-gradient(180deg, rgba(239, 247, 234, 0.92) 0%, rgba(255, 255, 255, 0.96) 340px, #ffffff 100%),
    url("./assets/photos/hero-modern-agriculture-aerial.jpg") center top / cover no-repeat;
}

.products .container,
.applications .container,
.cases .container,
.news .container {
  position: relative;
  z-index: 1;
}

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

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
}

.product-card-featured {
  border-color: rgba(36, 123, 157, 0.38);
}

.product-image {
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: var(--subtle);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.product-body {
  padding: 24px;
}

.product-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-body h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.product-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-body li {
  position: relative;
  padding-left: 18px;
  color: #38474d;
  font-size: 0.92rem;
}

.product-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--wheat);
  border-radius: 50%;
}

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

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

.application-grid article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(23, 33, 38, 0.12);
}

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

.application-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 34, 31, 0.1), rgba(12, 34, 31, 0.82));
}

.application-grid article > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.application-grid span {
  color: #f0cf82;
  font-size: 0.8rem;
  font-weight: 800;
}

.application-grid h3 {
  margin: 8px 0 10px;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.application-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.solutions {
  color: var(--white);
  background: #18292f;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.solution-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.service-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.service-list strong {
  display: block;
  margin-bottom: 6px;
  color: #f0cf82;
  font-size: 1rem;
}

.service-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.solution-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.solution-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.solution-gallery .wide {
  grid-column: 1 / -1;
  height: 330px;
}

.product-detail {
  background: var(--white);
}

.detail-grid {
  display: grid;
  gap: 34px;
}

.detail-block {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-block-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
}

.detail-block-reverse img {
  order: 2;
}

.detail-block > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row span,
.quality-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--green-dark);
  background: #ecf5ef;
  border: 1px solid #cfe1d5;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
}

.quality-points .after-sales-point {
  white-space: nowrap;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.case-tab {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

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

.case-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
}

.case-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

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

.case-table th {
  color: var(--green-dark);
  background: #f5f8f5;
  font-size: 0.86rem;
}

.case-table td {
  color: #344147;
  font-size: 0.93rem;
}

.case-table tr:last-child td {
  border-bottom: 0;
}

.application-performance {
  background: #f5f8f3;
}

.performance-table-grid {
  display: grid;
  gap: 28px;
}

.performance-table-card {
  display: grid;
  gap: 14px;
}

.performance-table-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.about {
  background: var(--white);
}

.home-about {
  position: relative;
  padding: 104px 0 88px;
  background:
    linear-gradient(90deg, rgba(10, 33, 26, 0.9) 0%, rgba(15, 55, 42, 0.78) 46%, rgba(239, 246, 234, 0.88) 100%),
    linear-gradient(180deg, rgba(13, 42, 34, 0.54), rgba(255, 255, 255, 0.9) 82%),
    url("./assets/photos/hero-modern-agriculture-aerial.jpg") center top / cover;
  overflow: hidden;
}

.home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 249, 242, 0.96) 68%, #ffffff 100%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.home-about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.about-layout-simple {
  grid-template-columns: minmax(0, 1fr);
}

.about-layout-simple .about-copy {
  max-width: 980px;
}

.home-platform-copy {
  color: var(--white);
}

.home-platform-copy .eyebrow {
  color: #f3cd78;
}

.about-copy.home-platform-copy h2 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: 3.05rem;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.about-copy .home-platform-subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.42rem;
  font-weight: 800;
}

.about-copy .home-platform-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.home-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-platform-actions .secondary-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.home-platform-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.home-platform-stats div {
  min-height: 94px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.home-platform-stats strong {
  display: block;
  color: #f0cf82;
  font-size: 1.6rem;
  line-height: 1;
}

.home-platform-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.home-platform-visual {
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: center;
}

.home-about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(12, 42, 33, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(7, 30, 23, 0.24);
  backdrop-filter: blur(12px);
}

.home-about-photo::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 43, 34, 0.34), rgba(255, 255, 255, 0.08) 52%, rgba(12, 43, 34, 0.2)),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.28), transparent 32%);
  pointer-events: none;
}

.home-about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: rgba(247, 248, 246, 0.54);
  filter: blur(0.55px) saturate(0.9) contrast(0.96);
  opacity: 0.86;
  transform: scale(1.01);
}

.home-about-photo figcaption {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(12, 49, 38, 0.72);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.home-platform-note {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-platform-note span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(15, 74, 51, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-platform-pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

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

.home-platform-pillar {
  min-height: 208px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  gap: 12px 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 74, 51, 0.18);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 48, 38, 0.14);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.home-platform-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(18, 48, 38, 0.18);
}

.home-platform-pillar span {
  grid-column: 1;
  color: var(--wheat);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-platform-pillar strong {
  grid-column: 1;
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1.25;
}

.home-platform-pillar p {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-platform-pillar img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 100%;
  min-height: 146px;
  object-fit: cover;
  border-radius: 7px;
  align-self: stretch;
}

.home-about .about-quality {
  position: relative;
  z-index: 1;
}

.about-photo {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.campus-overview {
  background: linear-gradient(180deg, #ffffff, #eef6ed);
}

.campus-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.campus-photo img {
  width: 100%;
  height: min(62vw, 620px);
  min-height: 360px;
  object-fit: cover;
}

.campus-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(15, 74, 51, 0.84);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
}

.about-copy h2,
.service-layout h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-copy p,
.service-layout p {
  margin: 16px 0 0;
  color: var(--muted);
}

.about-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-links a {
  min-height: 124px;
  padding: 18px;
  background: #f3f7f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-links strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.02rem;
}

.about-links span {
  color: var(--muted);
  font-size: 0.9rem;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
}

.news-feature,
.news-list a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 33, 38, 0.08);
}

.news-feature {
  overflow: hidden;
}

.news-feature img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-feature div {
  padding: 22px;
}

.news-feature span,
.news-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-feature h3 {
  margin: 8px 0 10px;
  font-size: 1.32rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.news-feature p {
  margin: 0;
  color: var(--muted);
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-list a {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.news-list strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.news-list small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service {
  color: var(--white);
  background: #18292f;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: start;
}

.service-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-cards article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.service-cards strong {
  display: block;
  margin-bottom: 10px;
  color: #f0cf82;
  font-size: 1.06rem;
}

.service-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.about-quality {
  margin-top: 52px;
  padding-top: 42px;
  border-top: 1px solid rgba(43, 64, 51, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.quality-copy {
  max-width: 1180px;
}

.quality-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.cert-section {
  display: grid;
  gap: 14px;
}

.cert-section + .cert-section {
  margin-top: 8px;
}

.cert-section h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.25;
}

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

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

.cert-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 45, 36, 0.07);
}

.cert-grid img {
  display: block;
  width: 100%;
  height: 238px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f3f6f2;
}

.cert-grid-compact img {
  height: 208px;
}

.cert-grid-compact figcaption {
  font-size: 0.78rem;
}

.cert-grid figcaption {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 10px;
  color: #405058;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.35;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 63, 50, 0.94), rgba(36, 123, 157, 0.78)),
    url("./assets/photos/mulch-delivery-load.jpg") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.site-footer {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0f261f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

@media (max-width: 1120px) {
  .brand-text strong {
    font-size: 1.05rem;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 132px;
  }

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

  .intro-grid,
  .product-grid,
  .application-grid,
  .home-link-grid,
  .home-platform-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-card-featured {
    grid-column: span 2;
  }

  .product-grid-two .product-card-featured {
    grid-column: auto;
  }

  .solution-layout,
  .about-layout,
  .home-about-layout,
  .news-grid,
  .service-layout,
  .about-quality,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .hero-inner {
    width: min(100% - 28px, 720px);
  }

  .topbar {
    display: none;
  }

  .header-main {
    min-height: 70px;
    width: min(100% - 28px, 720px);
  }

  .brand-text small {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .nav-item > a {
    display: block;
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 8px 12px;
    padding: 4px;
    background: #f4f8f4;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a:hover {
    background: #edf5ef;
  }

  .site-nav a::after,
  .nav-item > a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 118px 0 48px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card-large {
    min-height: 240px;
  }

  .intro-grid,
  .product-grid,
  .application-grid,
  .service-list,
  .service-cards,
  .about-links,
  .home-platform-pillar-grid {
    grid-template-columns: 1fr;
  }

  .home-platform-pillar {
    grid-template-columns: 1fr;
  }

  .home-platform-pillar img {
    grid-column: 1;
    grid-row: auto;
    height: 210px;
  }

  .product-card-featured {
    grid-column: auto;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .solution-copy h2,
  .detail-block h2,
  .about-copy h2,
  .service-layout h2,
  .quality-copy h2,
  .contact-copy h2 {
    font-size: 1.75rem;
  }

  .solution-gallery,
  .detail-block,
  .detail-block-reverse,
  .about-layout,
  .home-about-layout,
  .about-quality,
  .news-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .detail-block-reverse img {
    order: 0;
  }

  .detail-block > img,
  .solution-gallery img,
  .solution-gallery .wide,
  .about-photo,
  .news-feature img {
    height: 280px;
  }

  .home-about-photo img {
    height: auto;
  }

  .home-about {
    padding: 76px 0 62px;
  }

  .about-copy.home-platform-copy h2 {
    font-size: 2.35rem;
    white-space: normal;
  }

  .about-copy .home-platform-subtitle {
    font-size: 1.08rem;
  }

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

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

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

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

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

@media (max-width: 520px) {
  .brand-text strong {
    max-width: 11em;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-copy.home-platform-copy h2 {
    font-size: 2rem;
  }

  .home-platform-stats,
  .home-platform-note {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .metric {
    font-size: 1.7rem;
  }

  .product-body,
  .service-list div {
    padding: 18px;
  }

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

  .cert-grid-five,
  .cert-grid-four {
    grid-template-columns: 1fr;
  }

  .home-link-grid {
    grid-template-columns: 1fr;
  }

  .home-link-card {
    min-height: 150px;
  }

  .cert-grid img {
    height: 260px;
  }
}
