:root {
  --ink: #10236f;
  --muted: #65718c;
  --line: #dfe5ef;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --brand: #102a86;
  --brand-dark: #07195b;
  --accent: #c7a24f;
  --accent-dark: #9b7730;
  --gold-soft: #f7efd9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", "Noto Sans", "Noto Sans CJK SC", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  letter-spacing: 0.005em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 34, 124, 0.12);
  box-shadow: 0 8px 24px rgba(16, 34, 124, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-weight: 700;
  font-size: 19px;
}

.brand img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
  padding: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--accent);
}

.language-menu {
  position: relative;
}

.language-menu summary {
  min-width: 116px;
  padding: 7px 12px;
  border: 1px solid rgba(16, 34, 124, 0.2);
  border-radius: 4px;
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: " ▾";
  color: var(--accent-dark);
}

.language-menu[open] summary::after {
  content: " ▴";
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 34, 124, 0.16);
}

.language-options a {
  display: block;
  width: 100%;
  padding: 9px 14px;
  white-space: nowrap;
  text-align: left;
}

.language-options a:hover,
.language-options a[aria-current="true"] {
  background: var(--gold-soft);
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  color: white;
  text-align: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 83, 0.92), rgba(16, 34, 124, 0.7)),
    linear-gradient(135deg, rgba(205, 164, 79, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  animation: heroSlide 16s infinite;
}

.hero-slide {
  flex: 0 0 33.3333%;
  background-position: center;
  background-size: cover;
}

.hero-slide-one {
  background-image: url("../image/article-hongkong-trade.jpeg");
}

.hero-slide-two {
  background-image: url("../image/cement-plant-a.jpeg");
}

.hero-slide-three {
  background-image: url("../image/tcc-green-factory-aerial.jpeg");
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 14px;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", "Noto Serif", "Noto Serif CJK SC", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-dark);
}

.button:focus-visible,
.nav a:focus-visible,
.language-menu summary:focus-visible,
.report-figure a:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
}

.button.secondary:hover {
  background: var(--gold-soft);
  color: var(--brand-dark);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto;
  padding: 24px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.15;
}

.section-title h1,
.section-title h2 {
  color: var(--brand);
}

.section-title h1::after,
.section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--accent);
}

.section-title p {
  color: var(--muted);
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    url("../image/cement-plant-b.jpeg") center center / cover no-repeat;
  color: #fff;
}

.page-hero .section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding: 86px 0;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .eyebrow {
  color: var(--accent);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accent-panel {
  border-top: 4px solid var(--accent);
}

.image-panel {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.image-panel img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack .image-panel img {
  min-height: 210px;
}

.tcc-slider {
  position: relative;
  min-height: 420px;
  overflow: visible;
  border-radius: 6px;
  perspective: 1100px;
}

.tcc-slider img {
  position: absolute;
  top: 28px;
  left: 12%;
  width: 76%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(0) scale(0.72);
  box-shadow: 0 18px 42px rgba(7, 25, 91, 0.2);
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease;
}

.tcc-slider img.tcc-report-slide {
  padding: 12px;
  background: #07558a;
  object-fit: contain;
}

.material-slider {
  position: relative;
  min-height: 470px;
  overflow: visible;
  border-radius: 6px;
  perspective: 1100px;
}

.material-slider img {
  position: absolute;
  top: 28px;
  left: 10%;
  width: 80%;
  height: 390px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(0) scale(0.72);
  box-shadow: 0 18px 42px rgba(7, 25, 91, 0.2);
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease;
}

.coverflow img.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) translateZ(80px) scale(1);
  filter: brightness(1);
}

.coverflow img.is-previous {
  z-index: 2;
  opacity: 0.58;
  transform: translateX(-34%) rotateY(28deg) scale(0.78);
  filter: brightness(0.7);
}

.coverflow img.is-next {
  z-index: 2;
  opacity: 0.58;
  transform: translateX(34%) rotateY(-28deg) scale(0.78);
  filter: brightness(0.7);
}

.coverflow-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(7, 25, 91, 0.82);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(7, 25, 91, 0.2);
}

.coverflow-control:hover {
  background: var(--accent-dark);
}

.coverflow-previous {
  left: 2px;
}

.coverflow-next {
  right: 2px;
}

.coverflow-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  z-index: 6;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.coverflow-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b6bed0;
  cursor: pointer;
}

.coverflow-dot.is-active {
  background: var(--accent);
}

.sgs-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sgs-report {
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 34, 124, 0.1);
  object-fit: contain;
}

.feature-photo img {
  min-height: 300px;
  padding: 0;
  object-fit: cover;
}

.soft-band {
  background: transparent;
}

.feature-band {
  background: linear-gradient(180deg, #eef2fb, #f8fafc);
}

.feature-band .section {
  margin-bottom: 0;
}

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

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

.card {
  min-height: 210px;
  padding: 26px;
  border: 0;
  border-top: 4px solid var(--accent);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(16, 34, 124, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(16, 34, 124, 0.14);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 21px;
}

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

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-card h3,
.media-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.media-card h3 {
  margin-top: 22px;
}

.media-card p {
  padding-bottom: 24px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(16, 34, 124, 0.14);
  border-radius: 4px;
  background: #fff;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.partner-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.partner-logos img {
  width: 100%;
  min-height: 150px;
  object-fit: contain;
  padding: 24px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 34, 124, 0.08);
}

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

.timeline article {
  position: relative;
  padding: 26px;
  border-radius: 6px;
  background: #fff;
  border-top: 4px solid var(--accent);
  box-shadow: 0 12px 28px rgba(16, 34, 124, 0.08);
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.timeline h3 {
  margin-bottom: 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
}

.contact-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-detail-field[hidden] {
  display: none;
}

.phone-fields {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(180px, 1fr);
  gap: 10px;
}

.phone-fields label {
  font-size: 13px;
  color: var(--muted);
}

.wechat-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.wechat-card img {
  width: 132px;
  height: 132px;
  border-radius: 4px;
  object-fit: contain;
}

.wechat-card h3 {
  margin-bottom: 6px;
}

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

.business-page {
  background: #fff;
}

.business-page .eyebrow {
  color: #765719;
}

.business-page .page-hero .eyebrow,
.business-page .inquiry-cta .eyebrow {
  color: #e2c675;
}

.business-page .button {
  background: #80601f;
}

.business-page .button:hover {
  background: #654814;
}

.business-page .button.secondary {
  background: #fff;
  color: var(--brand-dark);
}

.business-hero .section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.business-hero .lead {
  max-width: 790px;
}

.hero-trust {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.business-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.business-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.business-heading h2,
.verification-copy h2,
.network-layout h2,
.inquiry-cta h2 {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.14;
}

.business-heading > p:last-child,
.verification-copy > p,
.network-layout > div > p,
.inquiry-cta p {
  max-width: 720px;
  color: #4f5c78;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 34, 124, 0.07);
}

.product-card h3 {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 25px;
}

.product-card > p {
  min-height: 130px;
  color: #4f5c78;
}

.product-details {
  margin: auto 0 0;
  border-top: 1px solid var(--line);
}

.product-details div {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.product-details dt {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.product-details dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-note {
  max-width: 840px;
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: #4f5c78;
  font-size: 14px;
}

.business-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.procurement-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.procurement-process li {
  min-width: 0;
  padding: 24px 20px 20px;
  border-top: 3px solid var(--accent);
  background: #fff;
}

.procurement-process li + li {
  border-left: 1px solid var(--line);
}

.process-number {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.procurement-process h3 {
  min-height: 54px;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 19px;
  line-height: 1.25;
}

.procurement-process p {
  margin: 0;
  color: #4f5c78;
  font-size: 14px;
}

.verification-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.representative-results {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.result-label {
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.representative-results h3 {
  margin-bottom: 18px;
  color: var(--brand-dark);
}

.representative-results dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.representative-results dl div {
  padding: 12px;
  background: #fff;
}

.representative-results dt {
  color: var(--muted);
  font-size: 13px;
}

.representative-results dd {
  margin: 2px 0 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.report-figure {
  margin: 0;
}

.report-figure a {
  display: block;
  border-radius: 6px;
}

.report-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 34, 124, 0.1);
}

.report-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.network-checklist {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 34, 124, 0.07);
}

.network-checklist h3 {
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.network-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #4f5c78;
}

.network-checklist li::marker {
  color: var(--accent-dark);
}

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

.benefit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.benefit-grid h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 20px;
}

.benefit-grid p {
  margin: 0;
  color: #4f5c78;
  font-size: 14px;
}

.inquiry-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 88px;
  padding: 44px;
  border-radius: 6px;
  background: var(--brand-dark);
  color: #fff;
}

.inquiry-cta h2 {
  color: #fff;
}

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

.inquiry-cta .button-row {
  justify-content: flex-end;
}

.site-footer {
  background: var(--brand);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroSlide {
  0%,
  26% {
    transform: translateX(0);
  }

  34%,
  60% {
    transform: translateX(-33.3333%);
  }

  68%,
  94% {
    transform: translateX(-66.6666%);
  }

  100% {
    transform: translateX(0);
  }
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 780px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .language-options {
    right: auto;
    left: 0;
  }

  .hero {
    background: var(--brand-dark);
  }

  .hero-inner {
    min-height: 560px;
  }

  .split,
  .grid,
  .grid.four,
  .stats,
  .timeline,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .sgs-gallery {
    grid-template-columns: 1fr;
  }

  .tcc-slider {
    min-height: 340px;
  }

  .material-slider {
    min-height: 380px;
  }

  .tcc-slider img,
  .material-slider img {
    top: 22px;
    left: 10%;
    width: 80%;
    height: 285px;
  }

  .material-slider img {
    height: 325px;
  }

  .coverflow img.is-previous {
    transform: translateX(-24%) rotateY(22deg) scale(0.76);
  }

  .coverflow img.is-next {
    transform: translateX(24%) rotateY(-22deg) scale(0.76);
  }

  .phone-fields {
    grid-template-columns: 1fr;
  }

  .wechat-card {
    grid-template-columns: 104px 1fr;
  }

  .wechat-card img {
    width: 104px;
    height: 104px;
  }

  .section {
    padding: 52px 0;
  }

  .business-hero .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .business-section {
    margin-top: 46px;
    margin-bottom: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .product-grid,
  .procurement-process,
  .verification-section,
  .network-layout,
  .benefit-grid,
  .inquiry-cta {
    grid-template-columns: 1fr;
  }

  .product-card > p,
  .procurement-process h3 {
    min-height: 0;
  }

  .procurement-process {
    gap: 14px;
  }

  .procurement-process li + li {
    border-left: 0;
  }

  .verification-section,
  .network-layout {
    gap: 34px;
  }

  .representative-results dl {
    grid-template-columns: 1fr;
  }

  .inquiry-cta {
    gap: 28px;
    margin-bottom: 58px;
    padding: 30px 24px;
  }

  .inquiry-cta .button-row {
    justify-content: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .coverflow img {
    transition: none;
  }

  .reveal,
  .card {
    transition: none;
  }
}
