:root {
  --ink: #142018;
  --muted: #5f6f65;
  --soft: #f3f8f1;
  --line: #d7e4d5;
  --green: #28794f;
  --green-dark: #0c2a1d;
  --blue: #24768a;
  --gold: #bd8a27;
  --sun: #e0b94f;
  --coral: #d86b3d;
  --ivory: #fbfcf4;
  --pastel-yellow: #fff4cf;
  --pastel-blue: #e6f4f7;
  --pastel-green: #e9f6df;
  --pastel-pink: #f8e9dd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 45, 31, 0.12);
  --shadow-soft: 0 12px 34px rgba(25, 45, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8faf4;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

:focus-visible {
  outline: 2px solid rgba(39, 99, 72, 0.48);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 253, 247, 0.86);
  border-bottom: 1px solid rgba(215, 228, 213, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(31, 54, 39, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #e3b84f 0%, #2d915a 32%, #2d88a0 66%, #d86b3d 100%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  width: 54px;
  height: 36px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  color: var(--green-dark);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #657468;
  font-size: 11px;
  letter-spacing: 0;
}

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

.nav-links a,
.nav-main {
  position: relative;
  padding: 28px 0;
  color: #26382f;
  font-size: 17px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: #276f4c;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-main.active::after,
.nav-item:hover .nav-main::after,
.nav-main:hover::after,
.nav-main:focus-visible::after {
  width: 56px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-item:hover .nav-main {
  color: var(--green);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-item {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 22px 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(12, 26, 20, 0.18);
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 10px 34px;
  color: #293a32;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(39, 99, 72, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff9e5 0%, #eef7e5 36%, #dff2f5 73%, #fff5e8 100%);
}

main {
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 238, 0.96) 0%, rgba(255, 252, 238, 0.86) 38%, rgba(255, 252, 238, 0.28) 100%),
    url("assets/brand/hero-green-pasture.jpg") center center / cover no-repeat;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(255, 251, 237, 0.16) 0%, rgba(244, 251, 239, 0.06) 54%, #f8faf4 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  padding: 170px 0 126px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(50px, 6.4vw, 86px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.54);
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: #506259;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #1f6c45, #2f915a);
  box-shadow: 0 10px 26px rgba(10, 27, 20, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, #277c51, #39a66a);
}

.button.secondary {
  color: var(--green-dark);
  border-color: rgba(36, 118, 138, 0.34);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.button.outline {
  color: var(--green-dark);
  border-color: #b8d2c3;
  background: var(--white);
}

.hero-index-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 214, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(22, 45, 29, 0.14);
}

.hero-index-panel a {
  display: grid;
  gap: 4px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(217, 228, 214, 0.86);
  color: var(--green-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-index-panel a:last-child {
  border-bottom: 0;
}

.hero-index-panel a:hover,
.hero-index-panel a:focus-visible {
  background: rgba(240, 247, 237, 0.78);
  transform: translateX(2px);
}

.hero-index-panel span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.hero-index-panel strong {
  font-size: 24px;
  line-height: 1.25;
}

.hero-index-panel small {
  color: #6a7a6d;
  font-size: 13px;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 76px rgba(20, 47, 31, 0.2);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(224, 185, 79, 0.42), rgba(40, 121, 79, 0.34), rgba(36, 118, 138, 0.34));
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(24, 45, 31, 0.12);
}

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

.hero-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(9, 41, 28, 0.72);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
}

.hero-service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(203, 224, 205, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 248, 232, 0.94) 46%, rgba(230, 244, 247, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(24, 45, 31, 0.11);
}

.hero-service-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 145, 90, 0.22), rgba(45, 145, 90, 0));
}

.hero-service-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(40, 121, 79, 0.38), rgba(36, 118, 138, 0.28), rgba(189, 138, 39, 0.26));
}

.hero-service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.hero-service-card h2 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
}

.hero-service-card > span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 500px;
  margin-top: 18px;
  color: #51645a;
  font-size: 16px;
}

.hero-service-steps {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-service-steps strong {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--green-dark);
  border: 1px solid rgba(201, 221, 205, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 14px;
}

.hero-photo-grid .hero-photo {
  height: 156px;
}

.hero-showcase-note {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  color: var(--green-dark);
  border: 1px solid rgba(220, 232, 214, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 244, 207, 0.94), rgba(230, 244, 247, 0.94)),
    #ffffff;
}

.hero-showcase-note strong {
  font-size: 16px;
}

.hero-showcase-note span {
  color: #557062;
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 168px max(20px, calc((100% - 1180px) / 2)) 86px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(10, 38, 28, 0.9) 0%, rgba(21, 75, 55, 0.72) 46%, rgba(51, 103, 84, 0.28) 100%),
    url("assets/brand/hero-pasture.jpg") center center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 17, 0.22), rgba(10, 24, 17, 0.62));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.product-page-hero {
  background:
    linear-gradient(110deg, rgba(10, 38, 28, 0.9) 0%, rgba(21, 75, 55, 0.72) 46%, rgba(51, 103, 84, 0.28) 100%),
    url("assets/brand/hero-green-pasture.jpg") center center / cover no-repeat;
}

.home-focus {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 72px;
}

.news-section + .home-focus {
  padding-top: 72px;
}

.home-focus::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--gold));
}

.home-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 34px;
}

.home-focus-head h2,
.home-capability h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
}

.home-focus-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.home-focus-grid a {
  position: relative;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid rgba(47, 122, 85, 0.72);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-focus-grid a:nth-child(1) {
  border-top-color: #2f915a;
  background: linear-gradient(180deg, #ffffff 0%, #f0faed 100%);
}

.home-focus-grid a:nth-child(2) {
  border-top-color: #2d88a0;
  background: linear-gradient(180deg, #ffffff 0%, #edf8fb 100%);
}

.home-focus-grid a:nth-child(3) {
  border-top-color: #d6a23a;
  background: linear-gradient(180deg, #ffffff 0%, #fff7dd 100%);
}

.home-focus-grid a:nth-child(4) {
  border-top-color: #d86b3d;
  background: linear-gradient(180deg, #ffffff 0%, #fff0e8 100%);
}

.home-focus-grid a:hover,
.home-focus-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(172, 198, 177, 0.95);
  box-shadow: var(--shadow);
}

.home-focus-grid a::after {
  content: "继续了解";
  width: fit-content;
  margin-top: 28px;
  padding: 8px 12px;
  color: var(--green-dark);
  border: 1px solid #c7dccc;
  border-radius: 8px;
  background: #f6faf5;
  font-size: 13px;
  font-weight: 800;
}

.home-focus-grid span {
  color: var(--green);
  font-weight: 800;
}

.home-focus-grid strong {
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.24;
}

.home-focus-grid small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.home-capability {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  padding: 84px max(20px, calc((100% - 1180px) / 2));
  color: var(--ink);
  border-top: 1px solid rgba(215, 228, 213, 0.8);
  border-bottom: 1px solid rgba(215, 228, 213, 0.8);
  background: linear-gradient(135deg, #eef7ea 0%, #fbfcf5 54%, #e8f3e5 100%);
}

.home-capability p {
  color: var(--muted);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(210, 224, 207, 0.92);
  border-radius: 8px;
  background: rgba(210, 224, 207, 0.92);
}

.capability-list article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.capability-list article:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 250, 237, 0.92));
}

.capability-list article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 247, 0.92));
}

.capability-list article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 207, 0.9));
}

.capability-list span {
  color: var(--green);
  font-weight: 800;
}

.capability-list strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}

.capability-list p {
  margin: 10px 0 0;
  font-size: 14px;
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.hero-visual {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(199, 216, 193, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(249, 251, 246, 0.97));
  box-shadow: 0 24px 70px rgba(28, 54, 36, 0.14);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid #2f7a55;
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.hero-board-head {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(205, 219, 199, 0.92);
}

.hero-board-head span {
  display: block;
  color: #6f8d45;
  font-size: 12px;
  font-weight: 800;
}

.hero-board-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.hero-board-head p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #5f6d62;
  font-size: 14px;
}

.hero-board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 10px;
}

.hero-board-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-height: auto;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(213, 224, 208, 0.86);
  border-radius: 0;
  background: transparent;
}

.hero-board-grid article:last-child {
  border-bottom: 0;
}

.hero-board-grid article span {
  display: inline-flex;
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: #edf5ed;
  border: 1px solid #c8ddbf;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.hero-board-grid h3 {
  grid-column: 2;
  margin: 0 0 4px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-board-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-panel-footer span {
  padding: 7px 10px;
  color: #355744;
  background: rgba(245, 249, 243, 0.96);
  border: 1px solid rgba(199, 219, 190, 0.9);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 212, 0.9);
  border-radius: 8px;
  background: rgba(216, 226, 212, 0.9);
  box-shadow: 0 18px 48px rgba(25, 45, 31, 0.08);
}

.trust-strip div {
  min-height: 118px;
  padding: 22px;
  background: rgba(255, 255, 251, 0.96);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.section-head h2,
.solution-content h2,
.download-copy h2,
.digital-copy h2,
.about-main h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
}

.section-head p:not(.eyebrow),
.solution-content p,
.download-copy p,
.digital-copy p,
.about-main p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.company-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(37, 48, 40, 0.05);
}

.profile-copy h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.profile-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.profile-facts {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 229, 215, 0.92);
  border-radius: 8px;
  background: #f7faf4;
}

.profile-facts div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 229, 215, 0.92);
}

.profile-facts div:last-child {
  border-bottom: 0;
}

.profile-facts dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.profile-facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.value-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(37, 48, 40, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-grid article:hover,
.news-card:hover,
.product-card:hover,
.service-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(172, 198, 177, 0.95);
  box-shadow: var(--shadow-soft);
}

.value-grid article {
  border-top: 4px solid #9fc289;
}

.value-mark {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.value-grid h3,
.service-list h3,
.credential-panel h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.value-grid p,
.service-list p {
  margin: 0;
  color: var(--muted);
}

.products-section {
  width: 100%;
  max-width: none;
  padding: 88px max(20px, calc((100% - 1180px) / 2));
  background: #f4f8f2;
  border-top: 1px solid rgba(218, 229, 215, 0.8);
  border-bottom: 1px solid rgba(218, 229, 215, 0.8);
}

.product-guide {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 212, 0.96);
  border-radius: 8px;
  background: rgba(216, 226, 212, 0.96);
  box-shadow: 0 18px 48px rgba(25, 45, 31, 0.12);
}

.product-guide a {
  min-height: 150px;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.product-guide span {
  color: var(--green);
  font-weight: 800;
}

.product-guide strong {
  font-size: 22px;
  line-height: 1.25;
}

.product-guide small {
  color: var(--muted);
  font-size: 14px;
}

.product-summary-section {
  text-align: left;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.product-summary-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid rgba(47, 122, 85, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(37, 48, 40, 0.04);
}

.product-summary-grid span {
  color: var(--green);
  font-weight: 800;
}

.product-summary-grid h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.28;
}

.product-summary-grid p {
  margin: 0;
  color: var(--muted);
}

.product-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.product-lines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.product-line-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(213, 226, 210, 0.96);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(24, 37, 29, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-line-card:hover {
  transform: translateY(-3px);
  border-color: rgba(172, 198, 177, 0.95);
  box-shadow: var(--shadow-soft);
}

.product-line-card > p:first-child {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.product-line-card h3 {
  margin: 16px 0 12px;
  font-size: 25px;
  line-height: 1.22;
}

.product-line-card > p:not(:first-child) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.line-products {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 22px;
}

.line-products span {
  padding: 4px 8px;
  color: #365847;
  background: #f0f6ef;
  border: 1px solid #d7e7d2;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.read-more {
  width: fit-content;
  margin-top: auto;
  padding: 9px 14px;
  color: var(--green-dark);
  border: 1px solid #bad2c4;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.read-more:hover,
.read-more:focus-visible {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-top: 44px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(213, 226, 210, 0.96);
}

.catalog-head h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.catalog-head p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.filter {
  padding: 9px 14px;
  border: 1px solid #cbd8cf;
  color: #2d3933;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  cursor: pointer;
}

.filter.active,
.filter:hover,
.filter:focus-visible {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  outline: none;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(24, 37, 29, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-media {
  aspect-ratio: 4 / 3;
  padding: 12px;
  background: linear-gradient(180deg, #f8faf4, #eef5ed);
}

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

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

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.tag-row span {
  padding: 3px 7px;
  color: var(--green);
  background: #edf5ef;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.product-body h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #4d3d20;
  font-size: 13px;
}

.product-meta strong {
  color: var(--ink);
}

.product-action {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  color: var(--green-dark);
  border: 1px solid #bad2c4;
  background: #f7fbf8;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.product-action:hover,
.product-action:focus-visible {
  color: var(--white);
  background: var(--green);
}

.fly-bait-section {
  display: grid;
  gap: 30px;
  scroll-margin-top: 110px;
}

.fly-bait-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 36px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(211, 226, 215, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 243, 0.96)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(44, 68, 52, 0.07);
}

.fly-bait-copy {
  align-self: center;
}

.fly-bait-copy h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
}

.fly-bait-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
}

.fly-bait-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.fly-bait-tags span {
  padding: 7px 10px;
  color: #2f6f4f;
  border: 1px solid #cfe2d4;
  border-radius: 8px;
  background: #f4faf5;
  font-size: 13px;
  font-weight: 800;
}

.fly-bait-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fly-bait-main {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.fly-bait-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.fly-bait-main figcaption,
.fly-bait-gallery figcaption {
  color: #516158;
  font-size: 14px;
  font-weight: 700;
}

.fly-bait-main figcaption {
  padding: 12px 4px 2px;
}

.fly-bait-gallery {
  column-count: 3;
  column-gap: 18px;
}

.fly-bait-gallery figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(211, 226, 215, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(24, 37, 29, 0.05);
  break-inside: avoid;
}

.fly-bait-gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: #f8faf4;
}

.fly-bait-gallery figcaption {
  padding: 12px 14px 14px;
}

.news-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: -42px;
  padding: 112px max(20px, calc((100% - 1180px) / 2)) 96px;
  border-top: 1px solid rgba(212, 226, 209, 0.84);
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 235, 177, 0.34) 0, rgba(255, 235, 177, 0) 34%),
    radial-gradient(circle at 88% 18%, rgba(197, 225, 214, 0.62) 0, rgba(197, 225, 214, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 250, 0.98) 0%, #f6faf2 52%, #fbfcf7 100%);
  box-shadow: 0 -18px 50px rgba(33, 64, 43, 0.06);
}

.news-section::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, rgba(40, 121, 79, 0), rgba(40, 121, 79, 0.36), rgba(189, 138, 39, 0.34), rgba(40, 121, 79, 0));
  transform: translateX(-50%);
}

.news-head {
  max-width: 920px;
}

.news-head h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: 0;
}

.news-head p:not(.eyebrow) {
  max-width: 900px;
  font-size: 18px;
}

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

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 248, 0.94));
  box-shadow: 0 16px 42px rgba(24, 37, 29, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-card {
  border-top: 5px solid rgba(47, 122, 85, 0.68);
}

.news-card::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(47, 122, 85, 0.07);
}

.news-card:nth-child(2) {
  border-top-color: rgba(36, 118, 138, 0.72);
}

.news-card:nth-child(3) {
  border-top-color: rgba(189, 138, 39, 0.72);
}

.news-card:nth-child(4) {
  border-top-color: rgba(216, 107, 61, 0.72);
}

.news-card:nth-child(5) {
  border-top-color: rgba(43, 139, 93, 0.72);
}

.news-card:nth-child(6) {
  border-top-color: rgba(36, 118, 138, 0.72);
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(136, 180, 151, 0.9);
  box-shadow: 0 22px 56px rgba(24, 37, 29, 0.11);
  transform: translateY(-4px);
}

.news-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 249, 239, 0.96));
}

.news-type {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 10px;
  color: var(--green);
  background: #f1f7f2;
  border: 1px solid rgba(210, 226, 214, 0.9);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.news-card time {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.news-card h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 12px;
  font-size: 25px;
  line-height: 1.3;
}

.news-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.news-card a {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.news-card a:hover,
.news-card a:focus-visible {
  color: var(--blue);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 44px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(53, 74, 61, 0.06);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.manual-preview {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8f2;
  box-shadow: 0 16px 40px rgba(53, 74, 61, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.manual-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  transition: transform 220ms ease;
}

.manual-preview:hover,
.manual-preview:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(53, 74, 61, 0.14);
}

.manual-preview:hover img,
.manual-preview:focus-visible img {
  transform: scale(1.025);
}

.manual-preview span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(16, 56, 78, 0.82);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.solution-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  padding: 88px max(20px, calc((100% - 1180px) / 2));
  color: #f8fbf6;
  background:
    linear-gradient(135deg, rgba(18, 51, 39, 0.97), rgba(35, 93, 63, 0.96));
}

.solution-content .eyebrow {
  color: #d6bb72;
}

.solution-content p {
  color: rgba(246, 250, 244, 0.72);
}

.solution-content .button {
  margin-top: 28px;
}

.solution-content .button.secondary {
  color: #123327;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.94);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-list article {
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(202, 225, 203, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list p {
  color: rgba(246, 250, 244, 0.68);
}

.service-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #123327;
  background: #d7e9d1;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.service-list h3 {
  color: #ffffff;
}

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

.digital,
.about {
  position: relative;
  z-index: 0;
}

.digital::before,
.about::before {
  content: "";
  position: absolute;
  inset: 36px -28px;
  z-index: -1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 231, 215, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #2d3933;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #cce0d3;
}

.digital-figure,
.certificate-grid figure {
  margin: 0;
}

.digital-figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(53, 74, 61, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.digital-figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(53, 74, 61, 0.14);
}

.digital-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #ffffff;
}

.digital-figure figcaption,
.certificate-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-tags span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: #edf5ef;
  border: 1px solid #d2e4d8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.credential-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.credential-panel ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.certificate-section {
  width: 100%;
  max-width: none;
  padding: 88px max(20px, calc((100% - 1180px) / 2));
  background: #f4f8f2;
  border-top: 1px solid rgba(218, 229, 215, 0.8);
}

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

.certificate-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.certificate-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  background: #fffdf8;
}

.footer {
  width: 100%;
  margin: 0;
  padding: 0 max(20px, calc((100% - 1180px) / 2));
  border-top: 0;
  background:
    linear-gradient(135deg, #0f2a20 0%, #183f2d 52%, #225a3f 100%);
  color: rgba(243, 248, 240, 0.72);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.45fr) minmax(260px, 0.65fr);
  gap: 40px;
  padding: 48px 0 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  width: 58px;
  height: 38px;
  object-fit: contain;
}

.footer-logo strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.footer-logo small {
  display: block;
  margin-top: 3px;
  color: rgba(243, 248, 240, 0.62);
  font-size: 12px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(243, 248, 240, 0.68);
}

.footer-trademarks {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}

.footer-trademarks > span {
  color: rgba(243, 248, 240, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-trademarks div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trademarks strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #eef7ea;
  border: 1px solid rgba(214, 232, 208, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(243, 248, 240, 0.72);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--green);
  outline: none;
}

.footer-contact p {
  margin: 0;
}

.footer-phone a {
  color: #d6e7c8;
  font-size: 22px;
  font-weight: 800;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  padding: 9px 14px;
  color: #123327 !important;
  background: #d6e7c8;
  border-radius: 8px;
  font-weight: 800;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: #123327;
  background: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(214, 232, 208, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 14, 0.66);
}

.modal-panel {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 40px));
  margin: 20px auto;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 12px 12px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
}

.modal-body img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modal-body h2 {
  margin: 0 0 8px;
  font-size: 34px;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-grid div {
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.detail-grid dt {
  color: var(--muted);
  font-size: 13px;
}

.detail-grid dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.modal-body h3 {
  margin: 22px 0 8px;
}

.modal-body ul {
  margin: 0;
  padding-left: 20px;
  color: #3a453f;
}

.modal-body li + li {
  margin-top: 6px;
}

.notice {
  margin-top: 22px;
  padding: 12px 14px;
  color: #5b4b25;
  background: #fbf5e6;
  border: 1px solid #ead8a8;
  border-radius: 8px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 150px;
  }

  .hero-index-panel {
    width: min(560px, 100%);
  }

  .hero-showcase {
    width: min(640px, 100%);
  }

  .hero-service-card {
    min-height: 300px;
  }

  .value-grid,
  .product-summary-grid,
  .company-profile,
  .trust-strip,
  .catalog-head,
  .home-focus-head,
  .home-capability,
  .solution-band,
  .download-section,
  .digital,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .filter-bar {
    justify-content: flex-start;
  }

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

  .news-section {
    padding-top: 92px;
  }

  .home-focus-grid,
  .capability-list,
  .product-guide {
    grid-template-columns: 1fr;
  }

  .fly-bait-hero {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .fly-bait-main {
    max-width: 520px;
  }

  .fly-bait-gallery {
    column-count: 2;
  }

  .solution-band {
    gap: 30px;
  }

  .digital,
  .about,
  .contact,
  .download-section {
    gap: 28px;
  }

  .download-section {
    padding: 46px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-body img {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1180px);
    height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(218, 216, 203, 0.9);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.96);
    box-shadow: var(--shadow);
    gap: 0;
  }

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

  .nav-links a {
    padding: 11px 12px;
    color: #293a32;
    font-size: 15px;
  }

  .nav-main::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    transform: none;
  }

  .nav-menu a {
    padding: 7px 12px;
    color: #5a665f;
    font-size: 14px;
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    left: 0;
    width: 100%;
    opacity: 0.34;
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(251, 252, 245, 0.78) 0%, rgba(251, 252, 245, 0.72) 48%, rgba(248, 250, 244, 0.98) 100%),
      linear-gradient(90deg, rgba(251, 252, 245, 0.9), rgba(251, 252, 245, 0.56));
  }

  .page-hero {
    min-height: 480px;
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 132px 0 82px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-index-panel {
    display: none;
  }

  .hero-showcase {
    padding: 10px;
  }

  .hero-service-card {
    min-height: 0;
    padding: 24px;
  }

  .hero-service-card::after {
    display: none;
  }

  .hero-service-card h2 {
    font-size: 28px;
  }

  .hero-service-card > span {
    font-size: 14px;
  }

  .hero-service-steps {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-service-steps strong {
    min-height: 38px;
  }

  .hero-photo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-photo-grid .hero-photo {
    height: 140px;
  }

  .hero-showcase-note {
    padding: 14px;
  }

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

  .section {
    width: min(100% - 28px, 1180px);
  }

  .trust-strip {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .trust-strip div {
    min-height: 0;
    padding: 18px;
  }

  .product-guide {
    width: min(100% - 28px, 1180px);
    margin-top: -26px;
  }

  .product-guide a {
    min-height: 0;
    padding: 20px;
  }

  .section,
  .products-section,
  .home-focus,
  .home-capability,
  .solution-band,
  .news-section,
  .certificate-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .news-section {
    margin-top: -24px;
    padding-top: 78px;
    border-radius: 18px 18px 0 0;
  }

  .news-head h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .news-card {
    min-height: 0;
    padding: 24px;
  }

  .news-card h3 {
    font-size: 22px;
  }

  .products-section,
  .home-capability,
  .solution-band,
  .news-section,
  .certificate-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .products-grid,
  .product-summary-grid,
  .product-lines,
  .news-grid,
  .service-list,
  .certificate-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .company-profile {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .catalog-head {
    grid-template-columns: 1fr;
  }

  .product-line-card {
    min-height: 0;
  }

  .manual-preview,
  .manual-preview img {
    min-height: 260px;
  }

  .download-section {
    padding: 30px 20px;
  }

  .fly-bait-hero {
    padding: 24px 18px;
  }

  .fly-bait-gallery {
    column-count: 1;
  }

  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 38px;
  }

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

  .modal-panel {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
  }

  .modal-body {
    padding: 24px;
  }
}
