@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --green: #83bd4b;
  --green-dark: #4d7d25;
  --green-pale: #eef6e6;
  --charcoal: #332f30;
  --ink: #252425;
  --muted: #686a65;
  --cream: #f8f6f0;
  --amber: #d79b35;
  --white: #ffffff;
  --line: #e2e5dd;
  --shadow: 0 20px 50px rgba(39, 55, 30, 0.1);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--green);
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.15;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  color: var(--muted);
  font-size: 1.07rem;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-muted {
  background: var(--cream);
}

.section-green {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 10% 20%, rgba(131, 189, 75, 0.32), transparent 32%),
    linear-gradient(135deg, #263322, #172018);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head > div:first-child {
  max-width: 690px;
}

.section-head p {
  max-width: 510px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #172111;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(89, 135, 42, 0.25);
}

.btn-primary:hover {
  background: #94cd5a;
}

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

.btn-outline {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  border-color: #d9ddd3;
}

.btn-outline:hover {
  border-color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--charcoal);
  font-size: 0.78rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  display: flex;
  gap: 22px;
}

.topbar a:hover {
  color: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(227, 230, 220, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-nav > a:not(.btn) {
  position: relative;
  padding: 25px 0;
  color: #484847;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
  transition: 0.2s;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f1f3ec;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #f7f8f3 0%, rgba(247, 248, 243, 0.96) 35%, rgba(247, 248, 243, 0.4) 62%, rgba(247, 248, 243, 0.06) 100%),
    url("../images/generated-hero-image.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  content: "";
  border: 45px solid rgba(131, 189, 75, 0.26);
  transform: rotate(30deg);
}

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

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

.hero .lead {
  max-width: 585px;
  margin-bottom: 30px;
  color: #545850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #494c46;
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-dot {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #315411;
  background: #dceeca;
  border-radius: 50%;
  font-size: 0.72rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.image-frame {
  position: relative;
}

.image-frame > img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 105px;
  height: 105px;
  content: "";
  border: 8px solid var(--green);
  border-radius: 14px;
  opacity: 0.42;
}

.image-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 215px;
  padding: 20px;
  color: var(--white);
  background: var(--charcoal);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.image-note strong {
  display: block;
  font-size: 1.05rem;
}

.image-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin: 26px 0 31px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #4d504b;
  font-size: 0.88rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  content: "✓";
  color: #315411;
  background: #dceeca;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: 0.25s ease;
}

.service-card:hover {
  border-color: rgba(131, 189, 75, 0.7);
  box-shadow: 0 16px 35px rgba(44, 63, 34, 0.09);
  transform: translateY(-5px);
}

.service-no {
  display: block;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-card p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-showcase {
  min-height: 530px;
  display: flex;
  align-items: end;
  padding: 45px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(20, 27, 18, 0.92), rgba(20, 27, 18, 0.06) 72%),
    url("../images/generated-services-image.png") center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-showcase-content {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.77);
}

.product-showcase h2 {
  color: var(--white);
}

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

.process-step {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  margin-bottom: 24px;
  place-items: center;
  color: #213216;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

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

.quote-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.quote-card::before {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  content: "“";
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.7;
}

.quote-card > p {
  color: #555852;
  font-size: 0.91rem;
}

.quote-person {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-person strong,
.quote-person span {
  display: block;
}

.quote-person span {
  color: var(--muted);
  font-size: 0.77rem;
}

.faq-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 0;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 50%;
  transition: transform 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 45px 21px 0;
  color: var(--muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 60px;
  color: rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(90deg, rgba(29, 38, 26, 0.98), rgba(29, 38, 26, 0.72)),
    url("../images/generated-logistics-image.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 250px;
  height: 250px;
  content: "";
  border: 42px solid rgba(131, 189, 75, 0.28);
  transform: rotate(28deg);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-panel h2 {
  color: var(--white);
}

.page-hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background: var(--cream);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, rgba(131, 189, 75, 0.14), rgba(131, 189, 75, 0));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  gap: 9px;
  margin-top: 30px;
  color: #74766f;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 700;
}

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

.value-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.value-icon {
  width: 45px;
  height: 45px;
  display: grid;
  margin-bottom: 22px;
  place-items: center;
  color: #2c4d13;
  background: var(--green-pale);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.number-item {
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.number-item strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
}

.number-item span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.79rem;
}

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

.service-detail {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.service-detail .service-no {
  width: 48px;
  height: 48px;
  display: grid;
  margin: 0;
  place-items: center;
  background: var(--green-pale);
  border-radius: 12px;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.logistics-banner {
  min-height: 470px;
  display: flex;
  align-items: end;
  padding: 44px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(0deg, rgba(20, 27, 18, 0.94), transparent 76%),
    url("../images/generated-logistics-image.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.logistics-banner h2 {
  max-width: 620px;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #315411;
  background: #dceeca;
  border-radius: 10px;
  font-weight: 800;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.74rem;
}

.contact-card strong {
  font-size: 0.9rem;
}

.contact-form {
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #474a44;
  font-size: 0.79rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf9;
  border: 1px solid #dfe3da;
  border-radius: 8px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(131, 189, 75, 0.16);
}

.form-group textarea {
  min-height: 126px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 10px 12px;
  color: #315411;
  background: var(--green-pale);
  border-radius: 8px;
  font-size: 0.82rem;
}

.form-status.show {
  display: block;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.8);
}

.site-footer {
  padding-top: 68px;
  color: rgba(255, 255, 255, 0.66);
  background: #242122;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 280px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  max-width: 390px;
  font-size: 0.84rem;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-contact p {
  margin-bottom: 11px;
  font-size: 0.81rem;
}

.footer-bottom {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #203314;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(32, 46, 23, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .brand img {
    width: 235px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 22px 30px 30px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav > a:not(.btn) {
    padding: 14px 0;
  }

  .site-nav > a:not(.btn)::after {
    bottom: 9px;
  }

  .site-nav .btn {
    margin-top: 12px;
  }

  .hero {
    min-height: 630px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #f7f8f3 0%, rgba(247, 248, 243, 0.93) 58%, rgba(247, 248, 243, 0.48) 100%),
      url("../images/generated-hero-image.png") center / cover no-repeat;
  }

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

  .image-frame {
    max-width: 720px;
  }

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

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 205px;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 660px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, #f7f8f3 0%, rgba(247, 248, 243, 0.95) 58%, rgba(247, 248, 243, 0.18) 100%),
      url("../images/generated-hero-image.png") 64% center / cover no-repeat;
  }

  .hero-content {
    padding: 220px 0 82px;
  }

  .hero-proof {
    gap: 13px;
  }

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

  .trust-strip {
    margin-top: -25px;
  }

  .trust-grid,
  .service-grid,
  .value-grid,
  .quote-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-head {
    display: block;
  }

  .section-head .btn,
  .section-head .text-link {
    margin-top: 15px;
  }

  .image-frame > img {
    min-height: 390px;
  }

  .image-note {
    right: 14px;
    bottom: 14px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase,
  .logistics-banner {
    min-height: 480px;
    padding: 28px;
  }

  .cta-panel {
    padding: 40px 27px;
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .footer-brand img {
    width: 235px;
  }

  .footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* @vn-deploy:1784886023842 */
