:root {
  --primary: #b9d64a;
  --primary-strong: #9dbd2d;
  --secondary: #6a9274;
  --secondary-dark: #3f654c;
  --ink: #1f2b22;
  --muted: #66736b;
  --line: #dde6d5;
  --soft: #f5f8ef;
  --white: #ffffff;
  --gold: #ffc338;
  --shadow: 0 18px 45px rgba(31, 43, 34, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 230, 213, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 230px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: var(--radius);
  color: #435244;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--soft);
  color: var(--secondary-dark);
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: var(--radius);
  background: var(--secondary-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--secondary-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  min-height: calc(100vh - 82px);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(42px, 6vw, 84px) clamp(18px, 4vw, 58px);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
  color: #203023;
}

h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  line-height: 1.16;
  color: #25372a;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #26382a;
}

.hero p,
.page-hero p,
.section-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--secondary-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(63, 101, 76, 0.2);
}

.btn.secondary {
  color: var(--secondary-dark);
  background: var(--soft);
  border-color: var(--line);
}

.btn.light {
  background: var(--white);
  color: var(--secondary-dark);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--secondary-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcf7;
  color: #526253;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 16 / 9;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 28px);
}

.section.muted {
  max-width: none;
  padding-left: clamp(18px, 4vw, 58px);
  padding-right: clamp(18px, 4vw, 58px);
  background: var(--soft);
}

.section.muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.image-panel {
  min-height: 370px;
}

.image-panel.tall {
  min-height: 520px;
}

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

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

.service-card,
.process-item,
.value-grid article,
.contact-card,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.service-card {
  min-height: 235px;
}

.service-icon,
.service-list span {
  display: inline-flex;
  margin-bottom: 18px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: #26330d;
  font-weight: 900;
}

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

.process-section {
  padding-top: clamp(62px, 8vw, 96px);
}

.process-item strong {
  display: block;
  margin-bottom: 18px;
  color: var(--primary-strong);
  font-size: 1.45rem;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-weight: 650;
}

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

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid p {
  font-size: 0.98rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--secondary-dark);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  color: #26382a;
}

.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 4vw, 58px) clamp(54px, 6vw, 84px);
  padding: clamp(32px, 5vw, 54px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--secondary-dark), #6a9274);
  color: var(--white);
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--white);
}

.contact-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 28px;
  padding: 46px clamp(18px, 4vw, 58px);
  color: #e7efe4;
  background: #26382a;
}

.site-footer img {
  width: 210px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #dbe7d4;
}

.powered {
  margin-top: 18px !important;
  color: #f6ffd9 !important;
}

.powered a {
  display: inline;
  color: var(--primary);
  font-weight: 800;
}

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    url("../images/generated-hero-image.png") center / cover;
}

.page-hero > div {
  max-width: 760px;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.72)),
    url("../images/generated-services-image.png") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.7)),
    url("../images/generated-global-distribution-image.png") center / cover;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  font-size: 1.35rem;
  color: var(--secondary-dark);
}

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

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

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

.service-list article {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.number-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.number-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.number-list span {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card > p {
  color: var(--muted);
}

.contact-method {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-method span {
  color: var(--secondary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a {
  font-weight: 800;
  color: #26382a;
}

.map-panel {
  min-height: 245px;
  margin-top: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(185, 214, 74, 0.92), rgba(106, 146, 116, 0.86)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 18px);
  color: var(--white);
}

.map-panel span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.map-panel strong {
  font-size: 1.45rem;
}

.map-panel p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .service-grid,
  .testimonial-grid,
  .process-grid,
  .value-grid,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero,
  .section,
  .section.muted,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .service-grid,
  .testimonial-grid,
  .process-grid,
  .value-grid,
  .service-list,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .image-panel.tall {
    min-height: 300px;
  }

  .contact-band {
    margin-left: 16px;
    margin-right: 16px;
    padding: 26px 20px;
  }

  .site-footer {
    padding: 38px 16px;
  }
}
/* @vn-deploy:1778702341355 */
