:root {
  --navy: #071936;
  --navy-2: #082442;
  --green: #162D4A;
  --green-2: #162D4A;
  --lime: #162D4A;
  --cream: #f8f5ec;
  --paper: #fffdf7;
  --line: rgba(7, 25, 54, 0.14);
  --text: #071936;
  --muted: #41516a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 25, 54, 0.12);
  --radius: 8px;
  --container: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
          radial-gradient(circle at 8% 8%, rgba(143, 197, 61, 0.12), transparent 28%),
          linear-gradient(180deg, #fffdf7 0%, #f7f3ea 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
          border-color 180ms ease,
          box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 36px rgba(7, 25, 54, 0.08);
}

.navbar {
  min-height: 72px;
  padding-block: 0.6rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  flex-shrink: 0;
  color: var(--green);
  font-size: clamp(1.75rem, 2.7vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand:hover,
.footer-brand:hover {
  color: var(--green);
}

.brand__leaf {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 2rem;
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.brand__leaf::after {
  content: "";
  position: absolute;
  right: 0.05rem;
  bottom: 0.22rem;
  width: 0.55rem;
  height: 0.28rem;
  border-radius: 100% 0;
  background: var(--lime);
  transform: rotate(-24deg);
}

.navbar-nav {
  gap: clamp(0.2rem, 1vw, 0.8rem);
}

.nav-link {
  position: relative;
  color: #082442;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 0.75rem 0.55rem !important;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0.55rem;
  bottom: 0.35rem;
  left: 0.55rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  display: none;
}

.service-dropdown {
  min-width: 280px;
  padding: 0.65rem;
  border: 1px solid rgba(7, 25, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 24px 60px rgba(7, 25, 54, 0.14);
}

.service-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-dropdown .dropdown-item:hover,
.service-dropdown .dropdown-item:focus {
  color: var(--green);
  background: rgba(6, 68, 43, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.85rem;
}

.language-btn,
.btn-primary-soft,
.btn-outline-deep,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.85rem;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transition:
          transform 180ms ease,
          box-shadow 180ms ease,
          border-color 180ms ease,
          background-color 180ms ease;
}

.language-btn {
  padding: 0 1rem;
  border: 1px solid rgba(7, 25, 54, 0.24);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.language-btn__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.05rem;
  color: #ffffff;
  background:
          linear-gradient(90deg, transparent 42%, #ffffff 42%, #ffffff 58%, transparent 58%),
          linear-gradient(0deg, transparent 39%, #ffffff 39%, #ffffff 61%, transparent 61%),
          #173f8f;
  border-radius: 2px;
  font-size: 0;
  box-shadow: inset 0 0 0 1px rgba(7, 25, 54, 0.18);
}

.btn-primary-soft {
  padding-inline: 1.35rem;
  border: 1px solid var(--green);
  color: #ffffff;
  background: var(--green);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus-visible {
  color: #ffffff;
  background: #04351f;
  border-color: #04351f;
  box-shadow: 0 14px 28px rgba(6, 68, 43, 0.24);
  transform: translateY(-1px);
}

.btn-outline-deep {
  padding-inline: 1.4rem;
  border: 1px solid rgba(6, 68, 43, 0.48);
  color: var(--green);
  background: rgba(255, 255, 255, 0.54);
}

.btn-outline-deep:hover,
.btn-outline-deep:focus-visible {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.navbar-toggler {
  border-color: rgba(7, 25, 54, 0.18);
  border-radius: var(--radius);
  box-shadow: none !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(410px, 39.55vw, 570px);
  padding: clamp(2.4rem, 4.4vw, 4.25rem) 0 clamp(5.5rem, 9vw, 7.7rem);
  background:
          url("assets/hero-background.png") center top / cover no-repeat,
          #f8f5ec;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #f8f5ec;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 22%;
  left: 0;
  width: min(47rem, 52vw);
  pointer-events: none;
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.91) 54%, rgba(255, 253, 247, 0) 100%),
          radial-gradient(circle at 17% 33%, rgba(255, 253, 247, 0.94) 0%, rgba(255, 253, 247, 0.64) 42%, transparent 72%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(40, 92, 20, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.05vw, 3.55rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy p {
  max-width: 455px;
  margin: 1.45rem 0 0;
  color: var(--navy);
  font-size: clamp(0.94rem, 0.98vw, 1.02rem);
  font-weight: 500;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions .btn-lg {
  min-height: 3.35rem;
  padding-inline: 1.45rem;
  font-size: 0.92rem;
}

.hero-section--landscape {
  align-items: flex-start;
  min-height: auto;
  height: clamp(620px, 45vw, 898px);
  padding: 0;
  background:
          url("assets/hero-landscape-ground.png") center bottom / cover no-repeat,
          #f8f5ec;
}

.hero-section--landscape::before {
  z-index: 1;
  inset: 0 auto 35% 0;
  width: min(56vw, 980px);
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.94) 56%, rgba(255, 253, 247, 0.28) 88%, transparent 100%),
          radial-gradient(circle at 24% 45%, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.72) 50%, transparent 76%);
}

.hero-section--landscape::after {
  height: 27%;
  background: linear-gradient(180deg, transparent, rgba(31, 82, 18, 0.08));
}

.hero-section--landscape .site-container {
  position: relative;
  z-index: 3;
  max-width: 1751px;
  padding-inline: clamp(2rem, 5.8vw, 6.4rem);
}

.hero-landscape-grid {
  min-height: clamp(620px, 35.28vw, 898px);
}

.hero-farm-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  margin-top: clamp(1.2rem, 3vw, 3.2rem);
}

.hero-farm-layer {
  width: min(56vw, 1120px);
  max-width: none;
  margin-right: clamp(-8rem, -7vw, -3rem);
  pointer-events: none;
  user-select: none;
}

.hero-section--landscape .hero-copy {
  max-width: min(58vw, 780px);
  padding-top: clamp(4.8rem, 5vw, 5.6rem);
}

.hero-section--landscape .hero-copy::before {
  content: "Agrionis";
  position: absolute;
  z-index: -1;
  top: clamp(1.1rem, 1.2vw, 4.7rem);
  left: clamp(-1rem, -0.6vw, -0.3rem);
  color: rgba(21,39,67, 0.08);
  font-size: clamp(9rem, 16vw, 21rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.hero-eyebrow {
  display: block;
  color: #071936;
  font-size: clamp(0.95rem, 1.15vw, 1.28rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero-section--landscape .hero-copy h1 {
  position: relative;
  margin-top: clamp(2.2rem, 2.8vw, 3.1rem);
  color: #0b0b0d;
  font-size: clamp(3.2rem, 4.75vw, 5.05rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}
/*
.hero-section--landscape .hero-copy h1::before {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 1.05em;
  width: clamp(0.8rem, 1.1vw, 1.15rem);
  height: clamp(0.8rem, 1.1vw, 1.15rem);
  border-radius: 50%;
  background: #6aba1a;
}
*/

.hero-section--landscape .hero-copy h1 span {
  display: block;
  color: #0b0b0d;
}

.hero-section--landscape .hero-copy p {
  max-width: 620px;
  margin-top: clamp(1.45rem, 2vw, 2rem);
<!--
padding-left: clamp(1.8rem, 1.8vw, 2rem);
-->
  color: #4c5353;
  font-size: clamp(1rem, 1.14vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-section--landscape .hero-actions {
  margin-top: clamp(2.1rem, 3vw, 3.1rem);
  padding-left: clamp(1.8rem, 1.8vw, 2rem);
}

.hero-section--landscape .btn-primary-soft {
  min-width: clamp(220px, 15vw, 257px);
  min-height: clamp(3.65rem, 3.9vw, 4.25rem);
  border-color: #77c51f;
  border-radius: 7px;
  color: #0b0b0d;
  background: linear-gradient(180deg, #071936, #000000);
  box-shadow: none;
  font-size: clamp(0.86rem, 0.88vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-section--landscape .btn-primary-soft:hover,
.hero-section--landscape .btn-primary-soft:focus-visible {
  color: #0b0b0d;
  background: linear-gradient(180deg, #85d72c, #66bd18);
}

.hero-reference-strip {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(0.78rem, 1.2vw, 1.05rem) 0;
  /*
  border-top: 1px solid rgba(7, 25, 54, 0.08);
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.96), rgba(255, 255, 255, 0.9), rgba(255, 253, 247, 0.96));
  box-shadow: 0 -18px 44px rgba(7, 25, 54, 0.08);
   */
}

.hero-reference-strip__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-reference-strip__track {
  display: flex;
  width: max-content;
  animation: heroReferenceMarquee 34s linear infinite;
  will-change: transform;
}

.hero-reference-strip:hover .hero-reference-strip__track {
  animation-play-state: paused;
}

.hero-reference-strip__group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(0.9rem, 3.9vw, 15.9rem);
  padding-right: clamp(0.8rem, 1.6vw, 1.4rem);
}

.hero-reference-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  /*
  min-width: clamp(150px, 11vw, 196px);
  min-height: clamp(52px, 4.2vw, 66px);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: 8px;
  color: #071936;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(7, 25, 54, 0.07);
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
   */
}

.hero-reference-logo i {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
}

.hero-reference-logo--green i {
  background: linear-gradient(135deg, #6aba1a, #2f7a13);
}

.hero-reference-logo--orange i {
  background: linear-gradient(135deg, #f6a02d, #d96513);
}

.hero-reference-logo--blue i {
  background: linear-gradient(135deg, #4d95d9, #155a98);
}

.hero-reference-logo--olive i {
  background: linear-gradient(135deg, #94a83d, #607420);
}

@keyframes heroReferenceMarquee {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reference-strip__track {
    animation: none;
  }
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-right: -2.25rem;
  border-radius: 0;
}

.hero-visual img {
  width: 100%;
  min-height: 392px;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}

.floating-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 176px;
  padding: 0.72rem 0.86rem;
  border: 1px solid rgba(7, 25, 54, 0.12);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(7, 25, 54, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.floating-label i {
  display: grid;
  place-items: center;
  flex: 0 0 1.65rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-2);
  border: 1px solid rgba(11, 107, 66, 0.18);
  border-radius: 50%;
}

.floating-label--one {
  top: 12%;
  left: 26%;
}

.floating-label--two {
  top: 28%;
  right: 5%;
}

.floating-label--three {
  bottom: 18%;
  left: 34%;
}

.floating-label--four {
  right: 12%;
  bottom: 13%;
}

.section-pad {
  padding: clamp(0.6rem, 1vw, 1rem) 0;
}

.about-section,
.services-section,
.management-section {
  background: rgba(255, 253, 247, 0.74);
}

.about-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: clamp(3.2rem, 5vw, 5.4rem);
  border-bottom-right-radius: clamp(3.5rem, 7vw, 7.5rem);
  border-bottom-left-radius: clamp(3.5rem, 7vw, 7.5rem);
}

.about-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: clamp(3.5rem, 6vw, 6rem);
  border-bottom-right-radius: 50% 100%;
  border-bottom-left-radius: 50% 100%;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 22px 48px rgba(113, 139, 86, 0.1);
}

.brand-transition {
  position: relative;
  overflow: hidden;
  min-height: clamp(104px, 10vw, 150px);
  margin-top: calc(clamp(2.2rem, 4vw, 4rem) * -1);
  padding-top: clamp(2.2rem, 4vw, 4rem);
  background:
          radial-gradient(circle at 50% 50%, rgba(255, 253, 247, 0.86) 0%, rgba(255, 253, 247, 0.58) 30%, rgb(235 239 241 / 82%) 72%), linear-gradient(90deg, #e8e8e8 0%, #f9fcff 50%, #ffffff 100%);}

.brand-transition::before,
.brand-transition::after {
  content: "";
  position: absolute;
  right: -3rem;
  left: -3rem;
  height: clamp(46px, 5vw, 72px);
  background: #fefcf6;
  pointer-events: none;
}

.brand-transition::before {
  top: 0;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  transform: translateY(-62%);
}

.brand-transition::after {
  bottom: 0;
  border-top-right-radius: 999px;
  border-top-left-radius: 999px;
  transform: translateY(62%);
}

.brand-transition__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.brand-transition span {
  z-index: 11;
  color: rgba(6, 68, 43, 0.13);
  font-size: clamp(4.2rem, 10vw, 8.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-media {
  position: relative;
  margin: 0;
  padding-bottom: 2.2rem;
}

.about-media img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media figcaption {
  position: absolute;
  right: 2rem;
  bottom: 0;
  left: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(6, 68, 43, 0.2);
}

.about-media figcaption span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 1rem;
  color: #ffffff;
  background: linear-gradient(145deg, #051f3a, #1e2c49);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.about-media figcaption i {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.35rem;
  color: #f1db70;
  border: 1px solid rgba(241, 219, 112, 0.5);
  border-radius: 50%;
}

.section-copy {
  max-width: 610px;
}

.section-kicker {
  font-family:font-family: "Outfit", sans-serif; ;
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.management-intro h2,
.cta-band h2 {
  font-family: "Outfit", sans-serif;
  margin: 0;
  color: linear-gradient(145deg, #051f3a, #1e2c49);
  font-size: clamp(1.85rem, 3vw, 0.7rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-copy p,
.management-intro p,
.management-item p,
.management-card p,
.service-card p,
.workflow-step p {
  color: var(--navy);
  line-height: 1.7;
}

.section-copy p {
  margin: 1.2rem 0 0;
  max-width: 575px;
}

.section-heading {
  margin-bottom: 1.8rem;
  text-align: center;
}

.section-heading--small {
  margin-bottom: 1.2rem;
}

.service-card {
  display: flex;
  position: relative;
  min-height: 230px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.45rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  transition:
          transform 180ms ease,
          box-shadow 180ms ease,
          border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 68, 43, 0.26);
  box-shadow: var(--shadow);
}

.service-card__number {
  color: var(--green-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-card > i {
  align-self: center;
  margin: 0.55rem 0 1rem;
  color: var(--green);
  font-size: 3.2rem;
  line-height: 1;
}

.service-card h3 {
  min-height: 2.85rem;
  margin: 0;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.service-card p {
  margin: 1rem 0 0;
  font-size: 16px;
  line-height: 15px;
}

.product-services {
  /*
  background: #F6F7E8;

   */
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
  align-items: start;
}

.product-intro {
  grid-column: span 2;
  max-width: 590px;
  padding-top: 0.1rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 5px;
  color: #ffd241;
  background: #563127;
  font-size: 1rem;
  font-weight: 900;
}

.product-badge i {
  font-size: 1.05rem;
}

.product-intro h2 {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: #160c08;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-intro p {
  max-width: 585px;
  margin: 2rem 0 0;
  color: #67564b;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  font-weight: 500;
  line-height: 1.75;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  color: #160c08;
  font-size: 1rem;
  font-weight: 900;
}

.product-link span,
.product-card__arrow {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: #160c08;
  background: #e7f0ff;
}

.product-link > span {
  margin-right: -0.15rem;
}

.product-link::after,
.product-link--solid::after {
  content: "";
  position: relative;
  z-index: -1;
}

.product-link:not(.product-link--solid) {
  padding-right: 1.3rem;
  border-radius: 999px;
  background: #ffd044;
}

.product-link:not(.product-link--solid) span {
  margin-right: 0.35rem;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 388px;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 1.4rem 3.6rem;
  border-radius: 8px;
  background: #f4efdf;
  text-align: center;
}

.product-card h3 {
  font-family: "Outfit", sans-serif;
  margin: 0;
  color: #160c08;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
}

.product-card p {
  max-width: 235px;
  margin: 0.9rem auto 0;
  color: #67564b;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.55;
}

.product-card img {
  width: min(230px, 92%);
  height: 180px;
  object-fit: contain;
  margin-top: auto;
  mix-blend-mode: multiply;
}

.product-card__arrow {
  position: absolute;
  bottom: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  border: 2px dotted #ffc82e;
  color: #f5b700;
  background: #ffffff;
}

.product-inquiry {
  grid-column: span 2;
  overflow: hidden;
  min-height: 414px;
  border-radius: 8px;
  background: linear-gradient(rgb(35 55 86), rgb(20 36 62)), url(assets/cta-farm.png) center / cover no-repeat;
}

.product-inquiry__content {
  padding: clamp(2rem, 4vw, 3rem);
}

.product-inquiry h2 {
  font-family: "Outfit", sans-serif;
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.4rem, 1.7vw, 1rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.product-inquiry p {
  max-width: 560px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.7;
}

.product-inquiry__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  max-width: 540px;
  margin-top: 2rem;
  border: 1px solid rgba(86, 49, 39, 0.1);
  border-radius: 22px;
  background: #fffdf7;
}

.product-inquiry__form label {
  margin: 0;
}

.product-inquiry__form input,
.product-inquiry__form select {
  font-family: "Outfit", sans-serif;
  width: 100%;
  min-height: 3.8rem;
  padding: 0 1.45rem;
  border: 0;
  color: #3b2a22;
  background: transparent;
  font: inherit;
  font-weight: 600;
  outline: none;
}

.product-inquiry__form input::placeholder {
  color: rgba(59, 42, 34, 0.62);
}

.product-inquiry__form label:nth-child(2) {
  border-left: 1px solid rgba(86, 49, 39, 0.12);
}

.product-inquiry__service {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(86, 49, 39, 0.12);
}

.product-inquiry__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.product-link--solid {
  margin-top: 0;
  padding-right: 1.35rem;
  border-radius: 999px;
  background: #ffffff;
}

.product-link--solid span {
  margin-right: 0.45rem;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.faq-link > i:first-child {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 208, 68, 0.36);
  border-radius: 50%;
  color: #ffd044;
}

.faq-link span {
  display: grid;
  line-height: 1.25;
}

.faq-link strong {
  color: #ffffff;
}

.workflow-section {
  padding: clamp(4.2rem, 7vw, 6.4rem) 0 2.8rem;
  background: rgba(255, 253, 247, 0.74);
}

.workflow-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.workflow-badge {
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(145deg, #051f3a, #314265);
  font-size: 1rem;
  font-weight: 600;
}

.workflow-badge i {
  font-size: 1.05rem;
}

.workflow-header h2 {
  font-family: "Outfit", sans-serif;
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: linear-gradient(145deg, #051f3a, #314265);
  font-size: clamp(2.4rem, 4.6vw, 2.15rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.workflow-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.55rem;
  color: color: linear-gradient(145deg, #051f3a, #314265);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.workflow-header__link i {
  color: linear-gradient(145deg, #051f3a, #314265);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.workflow-header__link:hover i {
  transform: translateX(4px);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1rem;
}

.workflow-line::before {
  content: "";
  position: absolute;
  top: 130px;
  right: 13%;
  left: 13%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(7, 25, 54, 0.38) 0 4px, transparent 4px 8px);
}

.workflow-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.workflow-step__icon {
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 0.55rem;
  color: #f3d55b;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6, 68, 43, 0.18);
}

.workflow-step__icon i {
  font-size: 1.55rem;
}

.workflow-step strong {
  color: #051f3a;
  font-size: 30px;
}

.workflow-step h3 {
  margin: 0.1rem 0 0;
  color: #051f3a;
  font-size: 23px;
  font-weight: 700;
}

.workflow-step p {
  max-width: 350px;
  margin: 0.35rem 0 0;
  font-size: 16px;
}

.management-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.management-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 1rem;
  padding-top: 50px;
  border-top: 2px solid;
  color: linear-gradient(145deg, #051f3a, #314265);
}

.management-intro {
  padding: 1.35rem 1.9rem 1.35rem 0;
  border-left: 1px solid rgba(7, 25, 54, 0.08);
  padding-left: 2rem;
}

.management-intro h2 {
  max-width: 420px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.22;
}

.management-intro .section-kicker {
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -0.72rem;
  left: 50%;
  margin: 0;
  padding: 0 0.85rem;
  border-radius: 10px;
  color: white;
  background: linear-gradient(145deg, #051f3a, #314265);
  transform: translateX(-50%);
  font-size: 21px;
}

.management-intro p {
  margin: 0.85rem 0 0;
  max-width: 445px;
  font-size: 16px;
  line-height: 1.65;
}

.management-item,
.management-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 118px;
  padding: 1.35rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.management-item > i,
.management-card > i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 2.35rem;
  line-height: 1;
}

.management-item span,
.management-card span {
  color: var(--green-2);
  font-size: 23px;
  font-weight: 900;
}

.management-item h3,
.management-card h3 {
  display: inline;
  margin: 0 0 0 0.7rem;
  color: var(--navy);
  font-size: 23px;
  font-weight: 700;
}

.management-item p,
.management-card p {
  margin: 0.55rem 0 0;
  font-size: 16px;
  line-height: 26px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(330px, 1.25fr) 1px auto minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  overflow: hidden;
  margin-top: 2rem;
  border-radius: var(--radius);
  background: radial-gradient(circle at 88% 30%, rgba(126, 191, 56, 0.16), transparent 24%), linear-gradient(135deg, #0a3d25 0%, #122748 52%, #061936 100%);
  box-shadow: var(--shadow);
}

.cta-band img {
  width: 100%;
  object-fit: cover;
}

.cta-band__text {
  padding-block: 1.4rem;
}

.cta-band__text span {
  display: block;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
}

.cta-band__text p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

.cta-band__divider {
  width: 1px;
  height: 132px;
  background: rgba(255, 255, 255, 0.22);
}

.cta-band__icon {
  color: rgba(126, 191, 56, 0.72);
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 1;
}

.cta-band__summary {
  display: grid;
  gap: 1.15rem;
  justify-items: start;
}

.cta-band h2 {
  max-width: 300px;
  color: #ffffff;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.btn-accent {
  min-width: 224px;
  min-height: 3.6rem;
  margin-right: 0;
  padding-inline: 1.45rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0e313a, #243f6f);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(143, 197, 61, 0.22);
}

.site-footer {
  padding-top: 2.1rem;
  color: #ffffff;
  background:
          radial-gradient(circle at 10% 0%, rgba(143, 197, 61, 0.15), transparent 24%),
          linear-gradient(135deg, #071936 0%, #06233d 100%);
}

.footer-brand {
  color: #ffffff;
}

.footer-brand:hover {
  color: #ffffff;
}

.site-footer p {
  max-width: 290px;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--navy);
  background: 6BAB2B;
  border-radius: 5px;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a,
.site-footer address span {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: 6BAB2B;
}

.site-footer address {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  font-style: normal;
}

.site-footer address a,
.site-footer address span {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.6rem;
  align-items: flex-start;
}

.site-footer address i {
  color: 6BAB2B;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.inner-hero {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.78)),
          url("assets/hero-farm.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.inner-hero__content {
  max-width: 760px;
}

.inner-hero .section-kicker {
  margin-bottom: 1rem;
}

.inner-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.inner-hero p {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.page-section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: rgba(255, 253, 247, 0.78);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.page-panel,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 48px rgba(7, 25, 54, 0.08);
}

.page-panel {
  padding: clamp(1.4rem, 3vw, 2.3rem);
}

.page-panel h2,
.info-panel h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
}

.page-panel p {
  color: var(--navy);
  font-weight: 500;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
}

.feature-list i {
  color: var(--green);
}

.info-panel {
  padding: 1.4rem;
}

.info-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-panel a,
.info-panel span {
  display: grid;
  grid-template-columns: 1.55rem 1fr;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.info-panel i {
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 9rem;
  padding-block: 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(6, 68, 43, 0.12);
}

.contact-page {
  background: #fffdf7;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  align-items: center;
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.9) 34%, rgba(255, 253, 247, 0.18) 62%, rgba(255, 253, 247, 0) 100%),
          url("assets/hero-background.png") right center / cover no-repeat;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 3.4rem 0;
}

.contact-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-hero h1 span {
  display: block;
  color: var(--green);
}

.contact-hero__content > p {
  margin: 1.45rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.contact-hero__features {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-hero__features > div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-hero__features span {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #d6d76a;
  background: var(--green);
  border-radius: 50%;
}

.contact-hero__features strong {
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 900;
}

.contact-hero__features p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-hero__mail {
  position: absolute;
  top: 22%;
  left: 60%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(4rem, 8vw, 7rem);
  text-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.18);
}

.contact-main {
  padding: clamp(2.5rem, 5vw, 4rem) 0 3rem;
}

.contact-heading {
  margin-bottom: 1.7rem;
}

.contact-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info-box {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 130px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.contact-info-box > span {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #ebece8;
  background: #1A5387;
  border-radius: 50%;
  font-size: 1.35rem;
}

.contact-info-box h3 {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
}

.contact-info-box a,
.contact-info-box p {
  display: block;
  margin: 0.45rem 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-info-box a + a {
  color: var(--muted);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.contact-form-card,
.contact-help-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 52px rgba(7, 25, 54, 0.06);
}

.contact-form-card h2,
.contact-help-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.contact-form-card > p,
.contact-help-card > p {
  max-width: 590px;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}

.contact-form-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
}

.contact-form-card label {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form-card textarea {
  min-height: 8.8rem;
  padding-block: 0.9rem;
  resize: vertical;
}

.contact-form-card > label {
  margin-top: 1rem;
}

.contact-form-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.contact-help-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 232, 0.74));
}

.contact-help-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-help-card li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-help-card li i {
  color: var(--green);
}

.contact-help-card__image {
  overflow: hidden;
  margin-top: 1.7rem;
  border-radius: var(--radius);
  background: var(--green);
}

.contact-help-card__image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.contact-help-card__image div {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  color: #ffffff;
}

.contact-help-card__image i {
  color: #d6d76a;
  font-size: 2rem;
}

.contact-help-card__image strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin-top: 1.25rem;
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: var(--radius);
  background:
          linear-gradient(27deg, transparent 48%, rgba(129, 158, 185, 0.42) 49%, rgba(129, 158, 185, 0.42) 51%, transparent 52%),
          linear-gradient(155deg, transparent 45%, rgba(129, 158, 185, 0.28) 46%, rgba(129, 158, 185, 0.28) 48%, transparent 49%),
          repeating-linear-gradient(0deg, transparent 0 46px, rgba(146, 170, 190, 0.25) 47px 49px),
          repeating-linear-gradient(90deg, transparent 0 62px, rgba(146, 170, 190, 0.22) 63px 65px),
          #edf2ed;
}

.contact-map__card {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: min(280px, calc(100% - 2rem));
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(7, 25, 54, 0.12);
}

.contact-map__card strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.contact-map__card span,
.contact-map__card a {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-map__card a {
  color: #3d8cff;
}

.contact-map__pin {
  position: absolute;
  top: 48%;
  left: 51%;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #d2392f;
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-map__pin i {
  font-size: 2rem;
}

.about-page {
  background: #fffdf7;
}

.about-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 545px;
  border-bottom: 1px solid var(--line);
}

.about-hero-page__image {
  overflow: hidden;
}

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

.about-hero-page__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
          linear-gradient(90deg, rgba(255, 253, 247, 0.78), #fffdf7 28%),
          #fffdf7;
}

.about-watermark {
  position: absolute;
  top: -0.3rem;
  right: 4%;
  color: rgba(7, 25, 54, 0.035);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-hero-page h1 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-hero-page h1 span {
  display: block;
  color: var(--green);
}

.about-hero-page p {
  position: relative;
  max-width: 610px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  /*font-weight: 700;
   */
  line-height: 1.8;
}

.about-hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.about-hero-stats div {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.8rem;
  align-items: center;
}

.about-hero-stats i {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  color: #8fc53d;
  background: var(--navy);
  border-radius: 50%;
  font-size: 1.5rem;
}

.about-hero-stats strong,
.about-hero-stats span {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.about-hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.about-overview {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.about-overview__media {
  margin: 0;
}

.about-overview__media img {
  width: 100%;
  border-radius: var(--radius);
}

.about-overview__copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.about-overview__copy p {
  max-width: 610px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.about-team-section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  color: #ffffff;
  background:
          radial-gradient(circle at 18% 100%, rgba(143, 197, 61, 0.16), transparent 26%),
          linear-gradient(135deg, #06162d 0%, #06223d 100%);
}

.about-team-section > .site-container > h2 {
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 800;
  text-align: center;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-person-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 1fr;
  gap: 1.5rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.about-person-card__number {
  position: absolute;
  top: 1rem;
  left: -0.6rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #ffffff;
  background: #6fb242;
  border-radius: 6px;
  font-weight: 900;
}

.about-person-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.about-person-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
}

.about-person-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-person-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.65;
}

.about-person-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.about-person-card li {
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: var(--muted);
  background: #f0f2f1;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 2.5rem;
  border: 1px solid rgba(143, 197, 61, 0.24);
  border-radius: var(--radius);
  background:
          radial-gradient(circle at 50% 100%, rgba(143, 197, 61, 0.18), transparent 38%),
          rgba(2, 18, 36, 0.78);
}

.about-stat-band div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 145px;
  padding: 1.7rem;
}

.about-stat-band i {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  border: 1px solid rgba(143, 197, 61, 0.45);
  border-radius: 16px;
  font-size: 1.6rem;
}

.about-stat-band strong {
  display: block;
  color: #8fc53d;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.about-stat-band span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.45;
}

.about-presence {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.about-presence h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
}

.about-presence h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 1rem;
  background: var(--green);
}

.about-presence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-presence-grid div {
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.about-presence-grid div:last-child {
  border-right: 0;
}

.about-presence-grid i {
  color: var(--green);
  font-size: 3rem;
}

.about-presence-grid h3 {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.about-presence-grid p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
}

.about-page-cta {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  background:
          linear-gradient(90deg, rgba(5, 23, 46, 0.98), rgba(5, 23, 46, 0.78)),
          url("assets/hero-background.png") right center / cover no-repeat;
}

.about-page-cta h2 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.25;
}

.about-page-cta .btn {
  margin-top: 1.6rem;
}

.service-detail-page {
  background: #fffdf7;
}

.service-detail-section {
  padding: 1.5rem 0 3rem;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-breadcrumb a {
  color: var(--navy);
}

.service-breadcrumb span {
  color: var(--green);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-sidebar {
  display: grid;
  gap: 1.4rem;
  position: sticky;
  top: 92px;
}

.service-menu-box {
  display: grid;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.service-menu-box h2 {
  margin: 0.4rem 0 0.9rem;
  padding-inline: 0.6rem;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-menu-box a {
  display: grid;
  grid-template-columns: 1.8rem 1fr 1.2rem;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.3rem;
  padding: 0 0.7rem;
  border-bottom: 1px solid rgba(7, 25, 54, 0.08);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 500;
}

.service-menu-box a:last-child {
  border-bottom: 0;
}

.service-menu-box a > i {
  color: var(--green);
  font-size: 1.3rem;
}

.service-menu-box a.is-active {
  border-radius: 8px;
  color: var(--green);
  background: #eef1dd;
}

.service-menu-box a span {
  justify-self: end;
}

.service-quote-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  color: #ffffff;
  background:
          radial-gradient(circle at 16% 20%, rgba(143, 197, 61, 0.18), transparent 28%),
          linear-gradient(135deg, #06162d, #06233d);
}

.service-quote-box > i {
  color: #f4f9ed;
  font-size: 2.7rem;
}

.service-quote-box h3 {
  margin: 0.8rem 0 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.service-quote-box p {
  margin: 1rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.65;
}

.service-detail-content {
  min-width: 0;
}

.service-detail-hero {
  width: 100%;
  height: clamp(220px, 24vw, 315px);
  object-fit: cover;
  border-radius: var(--radius);
}

.service-detail-content > .section-kicker {
  margin-top: 2rem;
}

.service-detail-content h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.service-lead {
  max-width: 750px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.service-benefits div {
  padding: 1.1rem;
  border-right: 1px solid rgba(7, 25, 54, 0.08);
}

.service-benefits div:last-child {
  border-right: 0;
}

.service-benefits i {
  color: var(--green);
  font-size: 2.4rem;
}

.service-benefits h3 {
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.service-benefits p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.service-description-box {
  margin-top: 2.4rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.service-description-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.8fr);
  gap: 2rem;
}

.service-description-box h2,
.service-process h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.service-description-box p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
}

.service-value-box {
  align-self: start;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #f1f0e5;
}

.service-value-box h3 {
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.service-value-box ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-value-box li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-value-box i {
  color: var(--green);
}

.service-components {
  margin-top: 2rem;
}

.service-component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-component-grid div {
  min-height: 130px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.service-component-grid i {
  color: var(--green);
  font-size: 2rem;
}

.service-component-grid h3 {
  margin: 0.7rem 0 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}

.service-component-grid p {
  margin-top: 0.55rem;
  font-size: 16px;
}

.service-process {
  margin-top: 2rem;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.2rem;
}

.service-process-grid div {
  position: relative;
}

.service-process-grid span {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.service-process-grid img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-process-grid h3 {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.service-process-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.service-detail-cta {
  overflow: hidden;
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  color: #ffffff;
  background:
          linear-gradient(90deg, rgba(5, 23, 46, 0.98), rgba(5, 23, 46, 0.82)),
          url("assets/service-ventilation-hero.png") right center / cover no-repeat;
}

.service-detail-cta h2 {
  max-width: 610px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.service-detail-cta p {
  max-width: 520px;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.service-detail-cta .btn {
  margin-top: 1.1rem;
}

.distributor-page {
  background: #ffffff;
}

.distributor-hero {
  overflow: hidden;
  min-height: 690px;
  background: #ffffff;
}

.distributor-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.85rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.distributor-breadcrumb a {
  color: rgba(7, 25, 54, 0.72);
}

.distributor-breadcrumb i {
  color: rgba(7, 25, 54, 0.35);
  font-size: 0.68rem;
}

.distributor-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.35fr);
  min-height: 618px;
  margin-top: 0.3rem;
  align-items: stretch;
}

.distributor-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: clamp(4rem, 8vw, 7.2rem) 0 4.4rem;
}

.distributor-hero__content h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 4.8vw, 4.45rem);
  font-weight: 900;
  line-height: 1.03;
}

.distributor-title-line {
  display: block;
  width: 56px;
  height: 3px;
  margin: 1.6rem 0 2rem;
  background: var(--green);
}

.distributor-hero__content > p {
  margin: 0;
  max-width: 440px;
  color: #21334b;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.85;
}

.distributor-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  margin-top: clamp(3.3rem, 7vw, 5.3rem);
}

.distributor-hero__features article {
  min-width: 0;
  padding-right: 1.35rem;
  border-right: 1px solid rgba(7, 25, 54, 0.16);
}

.distributor-hero__features article:last-child {
  border-right: 0;
}

.distributor-hero__features i {
  display: block;
  margin-bottom: 1rem;
  color: #28613d;
  font-size: 2.85rem;
  line-height: 1;
}

.distributor-hero__features h2 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.distributor-hero__features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.distributor-hero__visual {
  position: absolute;
  inset: 0 calc((var(--container) - 100vw) / 2) 0 34%;
  overflow: hidden;
  border-bottom-left-radius: 48% 24%;
  pointer-events: none;
}

.distributor-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(46%, 520px);
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255, 255, 255, 0.36) 72%, transparent 100%);
}

.distributor-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.62), transparent 68%);
}

.distributor-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.distributor-brands {
  padding: clamp(4rem, 7vw, 6.1rem) 0 3.7rem;
  background: #ffffff;
}

.distributor-brand-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1fr);
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}

.distributor-brand-heading span {
  display: block;
  margin-bottom: 1.05rem;
  color: #397332;
  font-size: 0.95rem;
  font-weight: 850;
}

.distributor-brand-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.distributor-brand-heading p {
  margin: 1.9rem 0 0;
  color: #263951;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.85;
}

.distributor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.2rem);
  margin-top: 4.3rem;
}

.distributor-card {
  overflow: hidden;
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 25, 54, 0.08);
}

.distributor-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 2rem;
  text-align: center;
}

.distributor-logo strong {
  color: #4b5960;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.distributor-logo small {
  display: block;
  margin-top: 0.2rem;
  color: #6d7175;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distributor-logo--dacs strong::after {
  content: "+";
  color: #d4574a;
  margin-left: 0.1rem;
}

.distributor-logo--lubing strong,
.distributor-card__round-logo--lubing strong {
  color: #1680c2;
  letter-spacing: -0.03em;
}

.distributor-card__media {
  position: relative;
  min-height: 250px;
  background: #dde3de;
}

.distributor-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 25, 54, 0.08) 100%);
}

.distributor-card__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.distributor-card__round-logo {
  position: absolute;
  left: 50%;
  bottom: -54px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  padding: 1rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 25, 54, 0.14);
  text-align: center;
  transform: translateX(-50%);
}

.distributor-card__round-logo strong {
  color: #4b5960;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.distributor-card__round-logo small {
  display: block;
  color: #6f7578;
  font-size: 0.37rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distributor-card__round-logo:not(.distributor-card__round-logo--lubing) strong::after {
  content: "+";
  color: #d4574a;
  margin-left: 0.05rem;
}

.distributor-card__body {
  background: linear-gradient(180deg, #f8f9f7, #f0f1ed);
  padding: 1.8rem clamp(1.5rem, 4vw, 3.9rem) 2.1rem;
  text-align: center;
}

.distributor-card__body h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.distributor-card__line {
  display: block;
  width: 44px;
  height: 3px;
  margin: 1rem auto 1.65rem;
  background: #397332;
}

.distributor-card__body p {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.75;
}

.distributor-card__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.1rem;
}

.distributor-card__features span {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  line-height: 1.45;
}

.distributor-card__features i {
  color: #397332;
  font-size: 1.55rem;
}

.distributor-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: min(100%, 330px);
  min-height: 48px;
  margin-top: 2.2rem;
  border: 1px solid rgba(7, 25, 54, 0.65);
  border-radius: 4px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
          background 180ms ease,
          color 180ms ease;
}

.distributor-card__button:hover {
  background: var(--navy);
  color: #ffffff;
}

.distributor-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  margin-top: 4.2rem;
  padding: clamp(2.1rem, 4vw, 3.25rem) clamp(1.6rem, 5vw, 4.2rem);
  border-radius: var(--radius);
  color: #ffffff;
  background:
          radial-gradient(circle at 85% 35%, rgba(121, 178, 55, 0.18), transparent 34%),
          linear-gradient(100deg, #08203f 0%, #063b2c 100%);
  box-shadow: 0 24px 70px rgba(7, 25, 54, 0.13);
}

.distributor-cta__copy h2 {
  max-width: 470px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.18;
}

.distributor-cta__copy p {
  max-width: 450px;
  margin: 1.25rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.7;
}

.distributor-cta__map {
  min-height: 245px;
  opacity: 0.92;
}

.distributor-cta__map img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.references-page {
  background: #ffffff;
}

.references-hero {
  min-height: 360px;
  padding: 4.6rem 0 3rem;
  background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 27%, rgba(255, 255, 255, 0.48) 48%, rgba(255, 255, 255, 0.08) 72%),
          url("assets/references-hero-bg.png") right center / cover no-repeat;
}

.references-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.references-breadcrumb a {
  color: rgba(7, 25, 54, 0.72);
}

.references-breadcrumb i {
  color: rgba(7, 25, 54, 0.35);
  font-size: 0.72rem;
}

.references-hero__content {
  max-width: 560px;
  margin-top: 1.9rem;
}

.references-hero h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.9rem, 5.1vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.references-hero p {
  max-width: 520px;
  margin: 1.7rem 0 0;
  color: #25364c;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 650;
  line-height: 1.65;
}

.references-partners {
  padding: clamp(3rem, 5vw, 4.4rem) 0 3.4rem;
  background:
          radial-gradient(circle at 50% 0%, rgba(6, 68, 43, 0.05), transparent 26%),
          #ffffff;
}

.references-heading {
  text-align: center;
}

.references-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
}

.references-heading span {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0.75rem auto 0.9rem;
  background: #7fc242;
}

.references-heading p {
  margin: 0;
  color: #25364c;
  font-size: 1rem;
  font-weight: 650;
}

.reference-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.45rem;
}

.reference-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 116px;
  padding: 1rem;
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 25, 54, 0.07);
}

.reference-logo-card i {
  flex: 0 0 auto;
  font-size: 2.15rem;
  line-height: 1;
}

.reference-logo-card div {
  display: grid;
  line-height: 1;
}

.reference-logo-card strong {
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.reference-logo-card small {
  margin-top: 0.35rem;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reference-logo-card--green {
  color: #178236;
}

.reference-logo-card--orange {
  color: #f08a20;
}

.reference-logo-card--blue {
  color: #1460b7;
}

.reference-logo-card--olive {
  color: #6ba72e;
}

.references-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(220px, 0.85fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: center;
  margin-top: 2.25rem;
  padding: clamp(1.45rem, 2.2vw, 2rem) clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background:
          linear-gradient(90deg, rgba(233, 245, 236, 0.94), rgba(244, 250, 245, 0.98));
  box-shadow: 0 22px 60px rgba(7, 25, 54, 0.06);
}

.references-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  column-gap: 0.95rem;
  align-items: center;
}

.references-stat span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  color: #519d35;
  background: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
}

.references-stat strong {
  grid-area: number;
  color: var(--green);
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
}

.references-stat p {
  grid-area: label;
  margin: 0.35rem 0 0;
  color: #1c2d3f;
  font-size: 0.94rem;
  font-weight: 650;
}

.references-stat-cta {
  padding-left: clamp(1.2rem, 2vw, 2rem);
  border-left: 1px solid rgba(7, 25, 54, 0.12);
}

.references-stat-cta p {
  max-width: 230px;
  margin: 0 0 1rem;
  color: #25364c;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.references-stat-cta .btn {
  min-width: 150px;
  min-height: 42px;
  justify-content: center;
}

.quote-page {
  background:
          linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
}

.quote-hero {
  min-height: 274px;
  padding: 2.4rem 0 2.9rem;
  background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.24) 58%, rgba(255, 255, 255, 0) 100%),
          url("assets/quote-hero-bg.png") right center / cover no-repeat;
}

.quote-hero__content {
  max-width: 375px;
}

.quote-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #4b9b36;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-kicker i {
  font-size: 1rem;
}

.quote-hero h1 {
  margin: 1.1rem 0 0;
  color: #0e3a23;
  font-size: clamp(2.05rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-title-line {
  display: block;
  width: 34px;
  height: 2px;
  margin: 0.75rem 0 0.95rem;
  background: #70b643;
}

.quote-hero p {
  max-width: 330px;
  margin: 0;
  color: #2e4054;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.55;
}

.quote-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.2rem);
  margin-top: 2.2rem;
}

.quote-hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #142b22;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
}

.quote-hero__features i {
  display: grid;
  place-items: center;
  width: 1.95rem;
  height: 1.95rem;
  color: #195b36;
  border: 1px solid rgba(25, 91, 54, 0.26);
  border-radius: 50%;
  font-size: 1.05rem;
}

.quote-form-section {
  margin-top: -1.35rem;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(2rem, 4.4vw, 3.3rem);
  max-width: 1215px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(7, 25, 54, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 80px rgba(7, 25, 54, 0.11);
}

.quote-form {
  padding-right: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(7, 25, 54, 0.12);
}

.quote-section-title h2,
.quote-process h2 {
  margin: 0;
  color: #173928;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.quote-section-title span {
  display: block;
  width: 33px;
  height: 2px;
  margin: 0.55rem 0 0.85rem;
  background: #70b643;
}

.quote-section-title p {
  margin: 0 0 1.45rem;
  color: #516071;
  font-size: 0.88rem;
  font-weight: 650;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #17283a;
  font-size: 0.82rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(7, 25, 54, 0.14);
  border-radius: 7px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition:
          border-color 180ms ease,
          box-shadow 180ms ease;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(6, 68, 43, 0.45);
  box-shadow: 0 0 0 4px rgba(112, 182, 67, 0.12);
}

.quote-consent {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.65rem !important;
  margin: 0.35rem 0 1.2rem !important;
  color: #516071 !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  line-height: 1.4;
}

.quote-consent input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.08rem;
  accent-color: var(--green);
}

.quote-submit {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 7px;
  font-size: 1rem;
}

.quote-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  color: #7a8794;
  font-size: 0.76rem;
  font-weight: 700;
}

.quote-secure i {
  color: #3f8a3e;
}

.quote-process {
  padding-top: 0.35rem;
}

.quote-process-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.75rem 0 2rem;
  padding: 0;
  list-style: none;
}

.quote-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  align-items: center;
}

.quote-process-list li::after {
  content: "";
  position: absolute;
  top: 4.15rem;
  bottom: -1.2rem;
  left: 2.1rem;
  border-left: 1px dashed rgba(18, 82, 48, 0.24);
}

.quote-process-list li:last-child::after {
  display: none;
}

.quote-process-list span {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  color: #152e4a;
  background: #def4fb;
  font-size: 2rem;
}

.quote-process-list strong {
  display: block;
  color: #173928;
  font-size: 0.95rem;
  font-weight: 900;
}

.quote-process-list p {
  max-width: 250px;
  margin: 0.35rem 0 0;
  color: #516071;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.quote-why {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(6, 68, 43, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, #eef7ef, #f9fcf8);
}

.quote-why::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -0.4rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.12;
  background: radial-gradient(ellipse at center, #152e4a 0 16%, transparent 17% 100%);
}

.quote-why h3 {
  margin: 0 0 1rem;
  color: #152e4a;
  font-size: 1.1rem;
  font-weight: 900;
}

.quote-why ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-why li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #283b4f;
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-why i {
  color: #4e9c3b;
  font-size: 0.9rem;
}

.catalog-page {
  min-height: 100vh;
  background:
          radial-gradient(circle at 50% 0%, rgba(6, 68, 43, 0.04), transparent 30%),
          #ffffff;
}

.catalog-section {
  padding: clamp(1.4rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
}

.catalog-container {
  max-width: 2734px;
  padding-inline: clamp(1.25rem, 2.35vw, 2.8rem);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2.5rem);
}

.catalog-card {
  display: flex;
  min-width: 0;
  min-height: clamp(379px, 6vw, 663px);
  flex-direction: column;
  padding: clamp(1.25rem, 1.45vw, 1.7rem);
  border: 1px solid rgba(7, 25, 54, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(7, 25, 54, 0.08);
}

.catalog-card > img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.catalog-card h2 {
  margin: clamp(1.5rem, 1.8vw, 2rem) 0 0;
  color: #152e4a;
  font-size: clamp(1.3rem, 1.75vw, 2rem);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.catalog-card p {
  margin: clamp(1.2rem, 1.55vw, 1.75rem) 0 0;
  color: #4f5962;
  font-size: clamp(0.94rem, 1.12vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.catalog-download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  margin-top: auto;
  padding-top: clamp(1.2rem, 1.6vw, 1.8rem);
  border-top: 1px solid rgba(7, 25, 54, 0.1);
}

.catalog-file-icon {
  display: grid;
  place-items: center;
  width: clamp(3rem, 3.2vw, 3.65rem);
  height: clamp(3rem, 3.2vw, 3.65rem);
  border-radius: 10px;
  color: #152e4a;
  background: #eff5f7;
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
}

.catalog-file-info {
  display: grid;
  color: #26313c;
  line-height: 1.15;
}

.catalog-file-info strong {
  font-size: clamp(0.92rem, 1.05vw, 1.15rem);
  font-weight: 900;
}

.catalog-file-info small {
  margin-top: 0.35rem;
  color: #56616d;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  font-weight: 750;
}

.catalog-download a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #152e4a;
  font-size: clamp(1rem, 1.2vw, 1.32rem);
  font-weight: 900;
  white-space: nowrap;
}

.catalog-download a i {
  font-size: 1.2em;
}

.news-page {
  background: #ffffff;
}

.news-section {
  padding: clamp(2.2rem, 4vw, 2.7rem) 0 clamp(3rem, 6vw, 5rem);
}

.news-container {
  max-width: 2050px;
  padding-inline: clamp(1.25rem, 5.6vw, 8.8rem);
}

.news-item {
  display: grid;
  grid-template-columns: minmax(360px, 672px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding-bottom: clamp(1.2rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(7, 25, 54, 0.12);
}

.news-item + .news-item {
  padding-top: clamp(1.1rem, 2vw, 1.45rem);
}

.news-item__image {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #e9eee6;
}

.news-item__image img {
  width: 100%;
  aspect-ratio: 672 / 364;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-item__image:hover img {
  transform: scale(1.025);
}

.news-item__content {
  max-width: 1230px;
}

.news-item time {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #4d5965;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  font-weight: 800;
}

.news-item time i {
  color: #2e6d42;
  font-size: 1.2em;
}

.news-item h2 {
  margin: 1.25rem 0 0;
  color: #193e27;
  font-size: clamp(1.65rem, 2.25vw, 2.6rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.news-item h2 a:hover {
  color: #152D4A;
}

.news-item p {
  max-width: 1180px;
  margin: 1.25rem 0 0;
  color: #3c4651;
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  font-weight: 650;
  line-height: 1.55;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
  margin-top: 1.7rem;
  color: #2f713c;
  font-size: clamp(1.08rem, 1.25vw, 1.45rem);
  font-weight: 900;
}

.news-link i {
  font-size: 1.05em;
  transition: transform 180ms ease;
}

.news-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199.98px) {
  .hero-visual {
    margin-right: -1.25rem;
  }

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

  .product-intro,
  .product-inquiry {
    grid-column: span 2;
  }

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

  .management-intro {
    grid-column: 1 / -1;
    padding: 0 0 0.5rem;
  }

  .distributor-hero__grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
  }

  .distributor-hero__visual {
    left: 38%;
  }

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

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

  .references-stat-cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(7, 25, 54, 0.12);
    border-left: 0;
  }

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

  .quote-form {
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 25, 54, 0.12);
  }

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

  .catalog-card {
    min-height: 520px;
  }

  .news-item {
    grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 74px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 0.8rem 0 !important;
  }

  .nav-link::after {
    right: auto;
    left: 0;
    width: 2.5rem;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0 18rem;
    background-position: 58% bottom;
  }

  .hero-section::before {
    inset: 0 0 26%;
    width: auto;
    background:
            linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.92) 60%, rgba(255, 253, 247, 0) 100%),
            linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.55));
  }

  .hero-section--landscape {
    height: clamp(600px, 78vw, 720px);
    padding: 0;
    background-position: center top;
  }

  .hero-reference-strip {
    padding-block: 0.7rem;
  }

  .hero-reference-logo {
    min-width: 148px;
    min-height: 54px;
  }

  .hero-section--landscape::before {
    inset: 0 0 36%;
    width: auto;
    background:
            linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.92) 58%, rgba(255, 253, 247, 0.18) 100%),
            linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.3));
  }

  .hero-landscape-grid {
    min-height: 0;
  }

  .hero-farm-wrap {
    justify-content: center;
    margin-top: 1.4rem;
  }

  .hero-farm-layer {
    display: block;
    width: min(100%, 760px);
    margin-right: 0;
  }

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

  .hero-section--landscape .hero-copy {
    max-width: min(720px, 92vw);
    padding-top: 4rem;
  }

  .hero-section--landscape .hero-copy::before {
    font-size: clamp(7rem, 24vw, 14rem);
  }

  .hero-section--landscape .hero-eyebrow {
    margin-left: 0;
  }

  .hero-visual {
    margin: 0;
  }

  .hero-visual img {
    min-height: 360px;
    border-radius: var(--radius);
    mask-image: none;
  }

  .floating-label {
    max-width: 170px;
    padding: 0.75rem 0.8rem;
    font-size: 0.72rem;
  }

  .workflow-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1rem;
  }

  .workflow-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-header__link {
    margin-bottom: 0;
  }

  .workflow-line::before {
    display: none;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0 1.25rem;
  }

  .product-card {
    min-height: 360px;
  }

  .cta-band img {
    height: 190px;
  }

  .cta-band__text,
  .cta-band__summary,
  .cta-band__icon,
  .btn-accent {
    margin-inline: 1.25rem;
  }

  .cta-band__text {
    padding-block: 0.6rem;
  }

  .cta-band__divider {
    width: auto;
    height: 1px;
    margin-inline: 1.25rem;
  }

  .cta-band__icon {
    font-size: 3rem;
  }

  .cta-band h2 {
    max-width: none;
  }

  .btn-accent {
    width: calc(100% - 2.5rem);
    margin-right: 1.25rem;
  }

  .cta-band__summary .btn-accent {
    width: 100%;
    margin-inline: 0;
  }

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

  .contact-hero {
    min-height: auto;
    background-position: 64% center;
  }

  .contact-hero__mail {
    opacity: 0.35;
    left: auto;
    right: 1.5rem;
  }

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

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

  .about-hero-page,
  .about-team-grid,
  .about-stat-band,
  .about-presence-grid,
  .service-detail-grid,
  .service-description-grid,
  .distributor-hero__grid,
  .distributor-brand-heading,
  .distributor-cta {
    grid-template-columns: 1fr;
  }

  .distributor-hero {
    min-height: auto;
  }

  .distributor-hero__grid {
    min-height: auto;
  }

  .distributor-hero__content {
    max-width: 620px;
    padding-bottom: 2rem;
  }

  .distributor-hero__visual {
    position: relative;
    inset: auto;
    min-height: 430px;
    margin-inline: -2.25rem;
    border-bottom-left-radius: 0;
  }

  .distributor-hero__visual::before {
    width: 40%;
  }

  .distributor-card-grid {
    gap: 1.5rem;
  }

  .distributor-card__body {
    padding-inline: 1.35rem;
  }

  .references-hero {
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.32) 100%),
            url("assets/references-hero-bg.png") center bottom / cover no-repeat;
  }

  .quote-hero {
    min-height: 440px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.2) 100%),
            url("assets/quote-hero-bg.png") center bottom / cover no-repeat;
  }

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

  .service-sidebar {
    position: static;
  }

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

  .about-hero-page__image img {
    max-height: 430px;
  }

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

  .about-presence-grid div {
    padding: 0 0 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-presence-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .site-container {
    padding-inline: 1rem;
  }

  .brand,
  .footer-brand {
    font-size: 1.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .hero-visual img {
    min-height: 310px;
  }

  .floating-label {
    position: static;
    display: flex;
    max-width: none;
    margin-top: 0.65rem;
  }

  .about-media {
    padding-bottom: 0;
  }

  .about-media figcaption {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 0.8rem;
  }

  .about-media figcaption span {
    min-height: 78px;
  }

  .workflow-line,
  .management-grid {
    grid-template-columns: 1fr;
  }

  .workflow-header h2 {
    font-size: clamp(2.1rem, 11vw, 1rem);
  }

  .product-layout,
  .product-inquiry__form {
    grid-template-columns: 1fr;
  }

  .product-intro,
  .product-inquiry {
    grid-column: auto;
  }

  .product-card {
    min-height: 340px;
  }

  .product-inquiry__form {
    border-radius: 18px;
  }

  .product-inquiry__form label:nth-child(2) {
    border-top: 1px solid rgba(86, 49, 39, 0.12);
    border-left: 0;
  }

  .management-item,
  .management-card {
    min-height: auto;
  }

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

  .contact-hero {
    background:
            linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.92) 62%, rgba(255, 253, 247, 0.38) 100%),
            url("assets/hero-background.png") 63% bottom / cover no-repeat;
  }

  .contact-hero__content {
    padding: 2.6rem 0 8rem;
  }

  .contact-info-grid,
  .contact-form-card__grid,
  .distributor-hero__features,
  .distributor-card-grid,
  .distributor-card__features {
    grid-template-columns: 1fr;
  }

  .distributor-hero__content {
    padding-top: 3.3rem;
  }

  .distributor-hero__features {
    gap: 1.25rem;
    margin-top: 2.2rem;
  }

  .distributor-hero__features article {
    padding: 0 0 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 25, 54, 0.12);
  }

  .distributor-hero__features article:last-child {
    border-bottom: 0;
  }

  .distributor-hero__visual {
    min-height: 330px;
    margin-inline: -1rem;
  }

  .distributor-brands {
    padding-top: 3.4rem;
  }

  .distributor-card-grid {
    margin-top: 2.6rem;
  }

  .distributor-card__features span {
    min-height: 56px;
  }

  .distributor-cta__map,
  .distributor-cta__map img {
    min-height: 180px;
  }

  .references-hero {
    min-height: 350px;
    padding-top: 3rem;
  }

  .reference-logo-grid,
  .references-stats {
    grid-template-columns: 1fr;
  }

  .reference-logo-card {
    justify-content: flex-start;
    min-height: 92px;
  }

  .references-stat-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .references-stat-cta p {
    max-width: none;
  }

  .quote-form-section {
    margin-top: -2rem;
  }

  .quote-panel {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .quote-process-list li {
    grid-template-columns: 3.5rem 1fr;
  }

  .quote-process-list span {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.65rem;
  }

  .quote-process-list li::after {
    left: 1.75rem;
  }

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

  .catalog-card {
    min-height: 500px;
  }

  .news-container {
    padding-inline: 1.25rem;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .news-item__content {
    max-width: none;
  }

  .contact-info-box {
    min-height: auto;
  }

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

  .service-benefits,
  .service-component-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 25, 54, 0.08);
  }

  .service-benefits div:last-child {
    border-bottom: 0;
  }

  .about-person-card img {
    max-height: 320px;
  }

  .about-stat-band div {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 2rem 0;
  }

  .language-btn,
  .btn-primary-soft,
  .btn-outline-deep,
  .btn-accent {
    width: 100%;
  }

  .hero-section {
    padding-bottom: 15rem;
  }

  .hero-section--landscape {
    height: auto;
    min-height: 720px;
    padding: 0 0 6.5rem;
    background-position: 58% top;
  }

  .hero-reference-strip {
    padding-block: 0.58rem;
  }

  .hero-reference-strip__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-reference-strip__track {
    animation-duration: 28s;
  }

  .hero-reference-logo {
    min-width: 132px;
    min-height: 48px;
    gap: 0.55rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
  }

  .hero-reference-logo i {
    width: 1.72rem;
    height: 1.72rem;
    font-size: 0.85rem;
  }

  .hero-farm-layer {
    width: min(100%, 620px);
  }

  .hero-section--landscape .hero-copy {
    padding-top: 3.25rem;
  }

  .hero-section--landscape .hero-copy h1 {
    font-size: clamp(2.55rem, 1vw, 3.45rem);
  }

  .hero-section--landscape .hero-copy h1::before {
    top: 1.07em;
  }

  .hero-section--landscape .hero-copy p,
  .hero-section--landscape .hero-actions {
    padding-left: 1.4rem;
  }

  .hero-section--landscape .btn-primary-soft {
    width: auto;
  }

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

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

  .news-section {
    padding-top: 1.25rem;
  }

  .news-item {
    padding-bottom: 1.8rem;
  }

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

  .service-card h3 {
    min-height: auto;
  }

  .workflow-step {
    justify-items: start;
    text-align: left;
  }

  .workflow-step p {
    max-width: none;
  }

  .management-item,
  .management-card {
    flex-direction: column;
  }
}
