:root {
  --green: #157347;
  --green-bright: #07985c;
  --green-dark: #0f4f35;
  --green-soft: #e9f5ee;
  --ink: #1d2521;
  --muted: #5e6b65;
  --line: #dce5df;
  --paper: #ffffff;
  --warm: #f7f3ea;
  --gold: #c79036;
  --shadow: 0 18px 45px rgba(23, 45, 33, 0.14);
  --shadow-strong: 0 22px 55px rgba(14, 67, 43, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #f8faf7;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

button,
input {
  font: inherit;
}

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

.topbar {
  background:
    radial-gradient(circle at 18% 0, rgba(22, 155, 96, 0.32), transparent 28%),
    linear-gradient(90deg, #0c5135, #063d29);
  color: #eef9f1;
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner {
  min-height: 36px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.link-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(15, 79, 53, 0.1);
  backdrop-filter: blur(14px);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  min-height: 94px;
}

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

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(145deg, #0aa35f, #0c6b45);
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(16, 111, 70, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 12px 14px;
  border-radius: 0;
  color: #26332c;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--green);
  background: transparent;
}

.nav-links a::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: white;
  background: #17261d;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  opacity: 0.62;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 28, 17, 0.9) 0%, rgba(9, 28, 17, 0.72) 42%, rgba(9, 28, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 28, 17, 0.55), rgba(9, 28, 17, 0.1));
}

.hero-polished .hero-overlay {
  background:
    radial-gradient(circle at 8% 22%, rgba(13, 139, 82, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(2, 45, 27, 0.96) 0%, rgba(4, 55, 33, 0.82) 42%, rgba(3, 33, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(2, 33, 20, 0.54), rgba(3, 32, 20, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #edf6ef;
  font-size: 21px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 16px 30px rgba(12, 126, 76, 0.32);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn.ghost {
  color: var(--green-dark);
  border-color: var(--green);
  background: white;
}

.hero-stats {
  display: grid;
  width: min(940px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 62px 0 0;
}

.hero-stats div {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.hero-stats dt {
  grid-column: 2;
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.stat-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.section {
  padding: 88px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 106px;
  color: white;
  background:
    radial-gradient(circle at 12% 14%, rgba(8, 159, 94, 0.46), transparent 34%),
    linear-gradient(90deg, rgba(13, 58, 38, 0.94), rgba(21, 115, 71, 0.76)),
    url("../images/qingyuan-chicken.jpg") center / cover;
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -40px;
  width: 320px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e5f4eb;
  font-size: 20px;
}

.page-hero + .section {
  position: relative;
}

.page-hero + .section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 115, 71, 0.22), transparent);
  content: "";
}

.section-cta {
  display: flex;
  margin-top: 32px;
}

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

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

.home-links a,
.detail-grid div,
.license-grid div,
.process-grid div {
  min-height: 150px;
  border: 1px solid rgba(15, 79, 53, 0.14);
  border-radius: 10px;
  padding: 24px;
  background: white;
  box-shadow: 0 16px 40px rgba(34, 64, 48, 0.08);
}

.home-links strong,
.detail-grid strong,
.license-grid strong,
.process-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 900;
}

.home-links span,
.detail-grid p,
.license-grid span,
.process-grid p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
}

.license-grid span {
  margin: 0 0 8px;
  font-size: 14px;
}

.license-grid div,
.detail-grid div,
.process-grid div,
.client-item,
.advantage-grid div {
  position: relative;
  overflow: hidden;
}

.license-grid div::before,
.detail-grid div::before,
.process-grid div::before,
.client-item::before,
.advantage-grid div::before {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #0aa35f, #0d754b);
  box-shadow: 0 12px 26px rgba(13, 117, 75, 0.2);
  content: "✓";
  font-weight: 900;
}

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

.page-contact {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.company-story {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(21, 115, 71, 0.1);
  border-radius: 10px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(34, 64, 48, 0.08);
  color: var(--muted);
  font-size: 17px;
}

.story-copy p {
  margin: 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fffb 0%, #f4faf6 100%);
}

.philosophy-section::after {
  position: absolute;
  right: 6%;
  bottom: -24px;
  width: 420px;
  height: 120px;
  border: 1px solid rgba(21, 115, 71, 0.08);
  border-width: 0 0 1px 0;
  background:
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 0 70px / 24px 48px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 48px 44px / 24px 74px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 96px 24px / 24px 94px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 144px 58px / 24px 60px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 192px 18px / 24px 100px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 240px 52px / 24px 66px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 288px 34px / 24px 84px no-repeat,
    linear-gradient(to top, rgba(21, 115, 71, 0.08), rgba(21, 115, 71, 0.08)) 336px 68px / 24px 50px no-repeat;
  content: "";
  pointer-events: none;
}

.philosophy-layout {
  position: relative;
  z-index: 1;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.service-icons div {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.service-icons span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.service-icons strong {
  font-size: 16px;
}

.refined-copy {
  padding-top: 40px;
}

.text-panel {
  color: var(--muted);
  font-size: 17px;
}

.text-panel p:first-child {
  margin-top: 0;
}

.products,
.advantages {
  background: white;
}

.products {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.product-showcase {
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.product-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(34, 64, 48, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.product-card:focus {
  border-color: rgba(21, 115, 71, 0.42);
  box-shadow: 0 18px 42px rgba(34, 64, 48, 0.14);
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.product-card div {
  min-width: 0;
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

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

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.card-link::after {
  content: " →";
}

.product-detail {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: start;
}

.product-detail-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-strong);
}

.product-detail-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.product-detail-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(21, 115, 71, 0.13);
  border-radius: 10px;
  padding: 32px;
  background: white;
  box-shadow: 0 18px 42px rgba(34, 64, 48, 0.08);
}

.product-detail-panel h2 {
  font-size: 32px;
}

.product-detail-panel h3 {
  margin: 6px 0 -6px;
  color: var(--green-dark);
  font-size: 20px;
}

.product-detail-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.product-detail-panel li + li {
  margin-top: 8px;
}

.clients {
  background: linear-gradient(180deg, #f7fbf8 0%, #f3f7f0 100%);
}

.quick-section {
  padding-top: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.quick-links a {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: center;
  min-height: 112px;
  border-color: rgba(21, 115, 71, 0.12);
  box-shadow: 0 14px 34px rgba(34, 64, 48, 0.08);
}

.quick-links strong {
  grid-column: 2;
  grid-row: 1;
  color: var(--ink);
}

.quick-links span:not(.quick-icon) {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.quick-icon {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #0aa35f, #0d754b);
  box-shadow: 0 12px 26px rgba(13, 117, 75, 0.22);
}

.quick-links .quick-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  align-self: center;
  justify-self: start;
  margin: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.quick-links .quick-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 14px auto 0;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

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

.client-item,
.advantage-grid div {
  min-height: 150px;
  border: 1px solid rgba(15, 79, 53, 0.14);
  border-radius: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(34, 64, 48, 0.08);
}

.client-item span,
.advantage-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.client-item p,
.advantage-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.contact {
  color: white;
  background:
    radial-gradient(circle at 8% 16%, rgba(9, 163, 97, 0.46), transparent 32%),
    linear-gradient(90deg, rgba(15, 79, 53, 0.96), rgba(21, 115, 71, 0.84)),
    url("../images/black-brown-goose.jpg") center / cover;
}

.contact .section-kicker {
  color: #f4cf86;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}

.contact-copy {
  max-width: 600px;
  color: #e1f1e8;
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 18px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
  font-style: normal;
  backdrop-filter: blur(14px);
}

.contact-card div {
  display: grid;
  gap: 4px;
}

.contact-card span {
  color: #d7eadf;
  font-size: 14px;
}

.contact-card a,
.contact-card b {
  color: white;
  font-size: 19px;
}

.qr-image {
  width: 132px;
  height: 132px;
  border: 8px solid white;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.qr-image.large {
  width: 180px;
  height: 180px;
  margin: 12px auto 18px;
}

.footer {
  color: #c8d7cf;
  background: #101b15;
}

.footer-inner {
  min-height: 74px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 10, 0.68);
}

.modal-panel {
  position: relative;
  width: min(360px, 100%);
  border-radius: 8px;
  padding: 28px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-width: 112px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 79, 53, 0.26);
}

@media (max-width: 960px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-inner {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 14px;
  }

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

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

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

  .hero-media img:nth-child(n + 2) {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(9, 28, 17, 0.86), rgba(9, 28, 17, 0.62));
  }

  .split,
  .story-layout,
  .contact-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .client-grid,
  .home-links,
  .detail-grid,
  .license-grid,
  .process-grid,
  .page-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    max-width: 148px;
    white-space: normal;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    min-height: 640px;
    padding: 60px 0 88px;
  }

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

  .hero h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .page-hero h1,
  .section h2 {
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.16;
  }

  .section h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .section-heading p:last-child,
  .product-card p,
  .text-panel {
    overflow-wrap: anywhere;
  }

  .section-heading p:last-child,
  .text-panel {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-stats,
  .product-grid,
  .client-grid,
  .home-links,
  .detail-grid,
  .license-grid,
  .process-grid,
  .page-product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .quick-links a {
    grid-template-columns: 46px 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .product-card {
    display: block;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 4 / 3.1;
  }

  .product-card div {
    padding: 16px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 76px;
  }

  .mobile-call {
    display: inline-flex;
  }
}
