:root {
  --black: #101010;
  --ink: #191919;
  --charcoal: #252525;
  --gray: #666666;
  --line: #dedbd4;
  --soft: #f6f4ef;
  --white: #ffffff;
  --gold: #c8962e;
  --gold-dark: #8e661c;
  --gold-soft: #efe1bd;
  --steel: #6b747b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
}

main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(246, 244, 239, 0.74) 58%, rgba(246, 244, 239, 0.9) 100%),
    url("assets/site-main-background.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px 42px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.96);
  border-bottom: 1px solid rgba(200, 150, 46, 0.34);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 1px solid rgba(200, 150, 46, 0.45);
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #cfc7b9;
  font-size: 11px;
}

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

.main-nav a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  color: #eeeae1;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a:hover,
.nav-item:hover > button,
.nav-item > button:focus-visible {
  color: var(--gold-soft);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 238px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  justify-content: flex-start;
  min-height: 38px;
  color: var(--ink);
}

.dropdown a:hover {
  background: var(--soft);
  color: var(--gold-dark);
}

.header-actions,
.hero-actions,
.doc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--gold-soft);
  font-size: 14px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn-gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #d9aa43;
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(8, 8, 8, 0.48) 44%, rgba(8, 8, 8, 0.14) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr);
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.16;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.22;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #e2ded5;
  font-size: 18px;
}

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

.trust-row span {
  padding: 8px 12px;
  color: #efe8d8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 150, 46, 0.28);
  border-radius: 4px;
  font-size: 14px;
}

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

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head p:not(.eyebrow),
.documents-section p,
.factory-copy p,
.inquiry-copy p {
  color: var(--gray);
  font-size: 17px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 46px;
  align-items: start;
}

.intro-copy {
  padding-right: 24px;
}

.intro-copy p:not(.eyebrow) {
  color: var(--gray);
  font-size: 17px;
}

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

.intro-points article {
  min-height: 156px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.intro-points article:last-child {
  grid-column: 1 / -1;
}

.intro-points p {
  margin-bottom: 0;
  color: var(--gray);
}

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

.product-card,
.advantage-grid article,
.case-card {
  min-height: 246px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.product-card .material-chip,
.product-card h3,
.product-card p,
.product-card .card-actions {
  margin-right: 24px;
  margin-left: 24px;
}

.product-card .material-chip {
  margin-top: 22px;
}

.product-card--text-only {
  padding-top: 24px;
}

.product-card--text-only .material-chip {
  margin-top: 0;
}

.product-card p,
.advantage-grid p,
.case-card p {
  color: var(--gray);
}

.material-chip {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 5px 9px;
  color: var(--gold-dark);
  background: var(--soft);
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.growth-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 150, 46, 0.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(200, 150, 46, 0.18), transparent 28%),
    #121212;
}

.growth-section .section-head p:not(.eyebrow) {
  color: #d8d0c0;
}

.growth-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.growth-timeline::before {
  display: none;
}

.growth-timeline article {
  position: relative;
  min-height: 230px;
  padding: 72px 20px 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(200, 150, 46, 0.34);
  border-radius: 6px;
}

.growth-timeline article::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 4px solid #121212;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(200, 150, 46, 0.8);
}

.growth-timeline span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.growth-timeline h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 20px;
}

.growth-timeline p {
  margin-bottom: 0;
  color: #d8d0c0;
}

.growth-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.growth-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0;
  background: #0e0e0e;
  border: 1px solid rgba(200, 150, 46, 0.3);
  border-radius: 6px;
}

.growth-gallery img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.growth-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.72);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.card-actions a,
.case-card a {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 14px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--black);
}

.dark-band .section-head p:not(.eyebrow) {
  color: #d8d2c8;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.solution-grid div {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #f6efe2;
  background: #202020;
  border: 1px solid rgba(200, 150, 46, 0.36);
  border-radius: 6px;
  font-weight: 800;
}

.cases-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.case-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-card img,
.case-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.14), rgba(16, 16, 16, 0.88));
}

.case-card span,
.case-card h3,
.case-card p,
.case-card a {
  position: relative;
  z-index: 1;
}

.case-card span {
  color: var(--gold-soft);
  font-weight: 800;
}

.case-card p {
  color: #ebe6dc;
}

.case-card a {
  color: var(--gold-soft);
}

.construction-video-head {
  max-width: 760px;
  margin-top: 42px;
  margin-bottom: 20px;
}

.construction-video-head h3 {
  color: var(--ink);
  font-size: 26px;
}

.construction-video-head p:not(.eyebrow) {
  color: var(--gray);
}

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

.construction-video-card {
  min-height: 360px;
}

.construction-video-card video {
  opacity: 0.62;
}

.subtitle-crop-card video {
  inset: 0;
  height: 100%;
  object-position: center top;
}

.subtitle-hide-card video {
  inset: 0;
  height: 100%;
  object-position: center top;
}

.case-play {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  min-height: 38px;
  margin: 4px 0 10px;
  padding: 0 13px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.case-video-card.is-playing .case-play {
  background: var(--white);
  border-color: var(--white);
}

.case-intro-section {
  padding-top: 82px;
}

.case-intro-grid {
  display: grid;
  gap: 18px;
}

.case-intro-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: stretch;
  min-height: 300px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.case-intro-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.case-intro-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 12px 12px 0;
}

.case-intro-card span {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-intro-card p {
  color: var(--gray);
}

.case-intro-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.case-intro-card li {
  padding: 10px 12px;
  color: var(--charcoal);
  background: var(--soft);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.factory-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.factory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.factory-tags span {
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--charcoal);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.stats-grid div {
  min-height: 146px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid div:nth-child(3n) {
  border-right: 0;
}

.stats-grid div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.stats-grid strong {
  display: block;
  color: var(--gold-dark);
  font-size: 34px;
  line-height: 1.1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--gray);
}

.documents-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 54px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: #f1eee7;
}

.doc-panel {
  display: grid;
  gap: 16px;
}

.doc-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.doc-list {
  display: grid;
  gap: 12px;
}

.doc-list span {
  padding: 16px 18px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  font-weight: 800;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: 48px;
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 110px;
}

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

.inquiry-copy li {
  padding: 11px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
}

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

label {
  display: grid;
  gap: 8px;
  color: #f0e9dc;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: #202020;
  color: var(--white);
  padding: 12px 13px;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 46, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
}

.site-footer {
  color: #e9e3d8;
  background: var(--black);
  border-top: 1px solid rgba(200, 150, 46, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
  font-size: 18px;
}

.footer-grid p {
  color: #c9c1b4;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 8px;
  color: #c9c1b4;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #bdb5a8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.84);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(200, 150, 46, 0.64);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.image-lightbox p {
  margin: 14px 0 0;
  color: var(--gold-soft);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a,
  .nav-item > button {
    width: 100%;
    justify-content: flex-start;
  }

  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    box-shadow: none;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

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

  .growth-timeline::before {
    display: none;
  }

  .solution-grid,
  .case-grid,
  .construction-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-intro-card {
    grid-template-columns: 1fr;
  }

  .case-intro-card > div {
    padding: 0;
  }

  .factory-section,
  .intro-section,
  .documents-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .hero-grid,
  .section,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .hero-grid {
    padding: 64px 0 50px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

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

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

  .product-grid,
  .advantage-grid,
  .intro-points,
  .growth-timeline,
  .growth-gallery,
  .solution-grid,
  .case-grid,
  .construction-video-grid,
  .stats-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-right: 0;
  }

  .intro-points article:last-child {
    grid-column: auto;
  }

  .section,
  .dark-band,
  .cases-section,
  .documents-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .stats-grid div,
  .stats-grid div:nth-child(3n),
  .stats-grid div:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .inquiry-form {
    padding: 20px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    border-top: 1px solid rgba(200, 150, 46, 0.4);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-cta a:last-child {
    color: var(--black);
    background: var(--gold);
    border-right: 0;
  }
}
