:root {
  --home-ink: #0b0e11;
  --home-paper: #f3f4f2;
  --home-white: #fff;
  --home-blue: #175ee6;
  --home-lime: #d9ff3f;
  --home-line: rgba(11, 14, 17, 0.2);
}

html {
  scroll-padding-top: 72px;
}

.final-home {
  overflow-x: clip;
  background: var(--home-paper);
  color: var(--home-ink);
}

.final-home main {
  display: block;
}

.page-loader {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  background: #090d10;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.page-loader img {
  width: 112px;
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.page-loader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.page-loader::after {
  width: 44px;
  height: 1px;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  animation: loader-line 1.8s ease-in-out infinite;
}

@keyframes loader-breathe {
  0%, 100% { opacity: 0.68; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loader-line {
  0%, 100% { opacity: 0.35; transform: scaleX(0.55); }
  50% { opacity: 0.8; transform: scaleX(1); }
}

.final-home.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.final-home .site-header {
  position: fixed;
  top: 0;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  background: rgba(8, 11, 14, 0.78);
  transition: background 180ms ease, transform 180ms ease;
}

.final-home .site-header.is-solid {
  background: rgba(8, 11, 14, 0.96);
}

.final-home .brand span {
  font-size: 20px;
}

.final-home .header-logo {
  width: 116px;
  display: block;
  flex: 0 0 auto;
  transition: opacity 180ms ease;
}

.final-home .header-logo:hover,
.final-home .header-logo:focus-visible {
  opacity: 0.7;
}

.final-home .header-logo img {
  width: 100%;
  height: auto;
}

.final-home .header-language-button {
  min-height: 40px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.final-home .header-language-button:hover,
.final-home .header-language-button:focus-visible {
  color: #fff;
  opacity: 0.72;
  outline: none;
}

.final-home .header-nav-button {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.final-home .header-nav-button span {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.final-home .header-nav-button:hover,
.final-home .header-nav-button:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.final-home .desktop-nav {
  gap: 28px;
}

.top-product-menu {
  height: 72px;
  display: flex;
  align-items: center;
}

.top-product-trigger {
  height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.top-product-trigger > span {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.top-product-menu.is-open .top-product-trigger > span {
  margin-top: 3px;
  transform: rotate(225deg);
}

.top-product-trigger::after {
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: #4d82ea;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.top-product-menu.is-open .top-product-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-product-trigger {
  position: relative;
}

.top-product-panel {
  position: fixed;
  z-index: 990;
  top: 72px;
  right: 0;
  left: 0;
  visibility: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 11, 14, 0.985);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: visibility 220ms ease, opacity 220ms ease, transform 280ms ease;
}

.top-product-menu.is-open .top-product-panel,
.top-product-menu:hover .top-product-panel,
.top-product-menu:focus-within .top-product-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.top-product-panel-inner {
  padding: 30px 0 38px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
}

.top-product-panel header p {
  margin: 0;
  color: #7797d4;
  font-family: var(--font-label);
  font-size: 9px;
}

.top-product-panel header h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.top-product-panel header > span {
  margin-top: 15px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.top-product-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.final-home .desktop-nav .top-product-links a {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  opacity: 1;
  transition: background 180ms ease, color 180ms ease;
}

.top-product-links a:hover,
.top-product-links a:focus-visible {
  background: #fff;
  color: #0b0e11;
  outline: none;
}

.top-product-links a > span {
  color: #7894cb;
  font-family: var(--font-label);
  font-size: 10px;
}

.top-product-links strong {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
}

.top-product-links small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  line-height: 1.55;
}

.top-product-links a:hover small,
.top-product-links a:focus-visible small {
  color: #65707a;
}

.final-home .desktop-nav .top-product-links .top-product-all {
  background: #175ee6;
}

.final-home .desktop-nav .top-product-links .top-product-all:hover,
.final-home .desktop-nav .top-product-links .top-product-all:focus-visible {
  background: #fff;
  color: #0b0e11;
}

.final-home .header-cta {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Keep the header actions visually separated from the primary navigation. */
.final-home .header-actions {
  padding-left: 18px;
}

.final-home .menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.scene-progress {
  z-index: 800;
}

.scene-progress a {
  width: 70px;
}

.home-section {
  position: relative;
}

.section-label {
  margin: 0;
  color: #5e6670;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.62);
}

.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #080b0e;
  color: var(--home-white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
}

.hero-overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 8, 11, 0.82) 0%, rgba(5, 8, 11, 0.58) 48%, rgba(5, 8, 11, 0.08) 82%), linear-gradient(0deg, rgba(5, 8, 11, 0.55), transparent 45%);
}

.hero-content {
  padding-top: 124px;
  padding-bottom: 92px;
}

.hero-content h1 {
  max-width: 1080px;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.07;
}

.hero-lead {
  max-width: 1120px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
}

.hero-lead span {
  display: block;
}

.hero-lead-keep {
  white-space: nowrap;
}

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

.button {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.button-light {
  border-color: var(--home-white);
  background: var(--home-white);
  color: var(--home-ink);
}

.button-outline {
  color: var(--home-white);
}

.button-dark {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: var(--home-white);
}

.hero-next {
  position: absolute;
  right: 30px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.hero-next i {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: relative;
}

.hero-next i::after {
  position: absolute;
  top: 11px;
  left: 15px;
  width: 5px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.product-directory {
  padding: 112px 0 120px;
  background: #f6f6f3;
}

.directory-heading {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-content: start;
  gap: 28px 80px;
}

.directory-heading > .section-label {
  grid-column: 1 / -1;
}

.directory-heading h2 {
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.08;
}

.directory-heading-meta {
  grid-column: 2;
}

.directory-heading h2 span {
  display: block;
  white-space: nowrap;
}

.directory-heading-meta {
  align-self: end;
  padding-bottom: 12px;
  color: #737a80;
  font-size: 13px;
}

.directory-heading-meta span {
  font-size: 10px;
  font-weight: 700;
}

.directory-heading-meta p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.directory-heading-meta a {
  margin-top: 24px;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid currentColor;
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
}

.product-rows {
  border-top: 1px solid var(--home-line);
}

.product-row {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(190px, 0.64fr) minmax(270px, 0.72fr) minmax(380px, 1.2fr);
  align-items: stretch;
  border-bottom: 1px solid var(--home-line);
  background: transparent;
  transition: background 220ms ease, color 220ms ease;
}

.product-row:nth-child(2) {
  background: rgba(11, 14, 17, 0.025);
}

.product-row:hover,
.product-row:focus-visible {
  background: var(--home-ink);
  color: var(--home-white);
  outline: none;
}

.product-summary {
  padding: 32px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-summary p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.product-summary span {
  color: #7b838a;
  font-size: 10px;
}

.product-row figure {
  min-height: 290px;
  margin: 0;
  overflow: hidden;
}

.product-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 220ms ease, transform 500ms ease;
}

.product-row:hover figure img,
.product-row:focus-visible figure img {
  filter: saturate(1);
  transform: scale(1.025);
}

.product-name {
  padding: 30px 0 30px 38px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
}

.product-name span {
  align-self: start;
  padding-top: 12px;
  color: #747b81;
  font-size: 13px;
}

.product-name h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.08;
  white-space: nowrap;
}

.product-name b {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.product-row:hover .product-name b,
.product-row:focus-visible .product-name b {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
}

.industry-directory {
  padding: 112px 0 120px;
  background: #f3f4f2;
}

.industry-directory-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px 50px;
  align-items: start;
}

.industry-directory-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1.12;
}

.industry-directory-heading > p:last-child {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: #737a80;
  font-size: 13px;
  line-height: 1.8;
}

.home-industry-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-industry-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.home-industry-card:hover,
.home-industry-card:focus-visible {
  background: var(--home-ink);
  color: var(--home-white);
  outline: none;
}

.home-industry-card > span {
  color: #6c7890;
  font-family: var(--font-label);
  font-size: 10px;
}

.home-industry-card h3 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
}

.home-industry-card dl {
  margin: auto 0 0;
}

.home-industry-card dl > div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(11, 14, 17, 0.15);
}

.home-industry-card:hover dl > div,
.home-industry-card:focus-visible dl > div {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.home-industry-card dt {
  color: #6c7890;
  font-size: 10px;
  font-weight: 700;
}

.home-industry-card dd {
  margin: 0;
  color: #5f676f;
  font-size: 12px;
  line-height: 1.6;
}

.home-industry-card:hover dd,
.home-industry-card:focus-visible dd {
  color: rgba(255, 255, 255, 0.68);
}

.industry-directory-link {
  margin: 28px 0 0 auto;
  width: max-content;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid currentColor;
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
}

.cases-section {
  padding: 112px 0 94px;
  overflow: hidden;
  background: var(--home-ink);
  color: var(--home-white);
}

.cases-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
}

.cases-heading h2 {
  max-width: 1020px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1.12;
}

.case-track {
  margin-top: 58px;
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 298px;
  gap: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.case-card {
  min-height: 510px;
  display: grid;
  grid-template-rows: 198px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #13171b;
}

.case-card[hidden] {
  display: none;
}

.case-card > img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  filter: saturate(0.76);
}

.case-card-copy {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.case-card-copy span {
  color: #90a7d9;
  font-size: 10px;
}

.case-card-copy h3 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
}

.case-card-copy p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.case-card-copy small {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.6;
}

.case-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.case-foot a {
  color: var(--home-white);
  font-size: 13px;
}

.contact-section {
  padding-top: 116px;
  background: #eef0ec;
}

.contact-heading {
  display: block;
}

.contact-heading .section-label {
  margin: 0;
}

.contact-heading h2 {
  max-width: 980px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.12;
}

.contact-panel {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr 0.85fr;
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
  background: var(--home-white);
}

.contact-panel > * {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.contact-brand {
  display: flex;
  flex-direction: column;
}

.contact-brand img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.contact-brand strong {
  margin-top: auto;
  font-size: 16px;
}

.contact-brand span {
  margin-top: 8px;
  color: #737a80;
  font-size: 12px;
}

.contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.contact-qr img {
  width: 130px;
  height: 130px;
}

.contact-qr span,
.contact-panel address span {
  color: #737a80;
  font-size: 10px;
  font-style: normal;
}

.contact-panel address {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-style: normal;
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail-address {
  margin-top: auto;
}

.contact-panel address a,
.contact-panel address .contact-value {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 22px;
}

.contact-panel address .contact-email {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-panel address p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--home-blue);
  color: var(--home-white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  transition: background-color 180ms ease;
}

.about-link b {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.about-link:hover {
  background: #084b9c;
}

.about-link:hover b {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-section footer {
  margin-top: 70px;
  background: #0b0e11;
  color: var(--home-white);
}

.contact-section footer > div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

/* ── 首页页脚 · Palantir 风格 ── */
.contact-section footer .palantir-footer {
  position: relative;
  min-height: 0;
  padding: 96px 0 34px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  justify-content: space-between;
  font-size: 13px;
}

.contact-section footer .palantir-footer .pf-brand img {
  width: 156px;
  margin-bottom: 20px;
}

.contact-section footer .palantir-footer .pf-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
  color: var(--home-white);
}

.contact-section footer .palantir-footer .pf-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.75;
}

.contact-section footer .palantir-footer .pf-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-section footer .palantir-footer .pf-col h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact-section footer .palantir-footer .pf-col a,
.contact-section footer .palantir-footer .pf-col span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.contact-section footer .palantir-footer .pf-col a:hover {
  color: var(--home-white);
}

.contact-section footer .palantir-footer .pf-bottom {
  grid-column: 1 / -1;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.contact-section footer .palantir-footer .pf-bottom a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .contact-section footer .palantir-footer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 44px 30px;
  }
  .contact-section footer .palantir-footer .pf-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contact-section footer .palantir-footer {
    padding-top: 68px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-section footer .palantir-footer .pf-bottom {
    margin-top: 40px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* 主页保留完整栏目内容，仅复用新闻页的扁平分栏页脚外观。 */
.contact-overview .home-unified-footer {
  min-height: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0e11;
}

.contact-section footer .home-palantir-footer {
  width: min(100% - 72px, 1480px);
  padding: 82px 0 34px;
  grid-template-columns: 1.35fr repeat(6, minmax(0, 1fr));
  gap: 48px 28px;
}

.home-palantir-footer .home-footer-socials {
  margin-top: 24px;
}

.home-palantir-footer .home-footer-appointment {
  margin-top: 22px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.home-palantir-footer .home-footer-appointment:hover,
.home-palantir-footer .pf-bottom a:hover {
  color: #fff;
}

.home-palantir-footer .home-footer-contact {
  font-style: normal;
}

.home-palantir-footer .home-footer-contact a,
.home-palantir-footer .home-footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.home-palantir-footer .home-footer-contact i {
  margin-top: 2px;
  color: #7899db;
  font-size: 16px;
}

.home-palantir-footer .home-footer-contact img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .contact-section footer .home-palantir-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-section footer .home-palantir-footer .home-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contact-section footer .home-palantir-footer {
    width: min(100% - 36px, 680px);
    padding: 52px 0 30px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section footer .home-palantir-footer .home-footer-brand {
    grid-column: auto;
  }

  .home-palantir-footer .pf-col {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 1100px) {
  .hero-content h1 { font-size: 60px; }
  .hero-lead-keep { white-space: normal; overflow-wrap: anywhere; }
  .directory-heading h2 { font-size: 54px; }
  .directory-heading h2 span { white-space: normal; overflow-wrap: anywhere; }
  .industry-directory-heading h2 { font-size: 46px; }
  .home-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-row { grid-template-columns: 0.58fr 0.72fr 1fr; }
  .product-name h3 { font-size: 40px; white-space: normal; overflow-wrap: anywhere; }
  .cases-heading h2, .contact-heading h2 { font-size: 46px; }
  .case-track { grid-auto-columns: calc((100vw - 128px) / 3); }
  .contact-panel { grid-template-columns: 1fr 0.75fr 1fr; }
  .about-link { grid-column: 1 / -1; min-height: 100px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 36px, 1240px); }
  html { scroll-padding-top: 62px; }
  .final-home .site-header { height: 62px; padding: 0 18px; grid-template-columns: 1fr auto; }
  .final-home .brand span { display: inline; font-size: 15px; }
  .final-home .header-actions { gap: 9px; }
  .final-home .header-logo { width: 88px; }
  .final-home .header-language-button { font-size: 10px; }
  .final-home .header-nav-button,
  .final-home .header-search-button { width: 34px; height: 34px; }
  .final-home .header-cta { display: none; }
  .final-home .menu-button { display: block; }
  .final-home .desktop-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0d10;
  }
  .final-home .site-header.nav-open .desktop-nav { display: flex; }
  .final-home .desktop-nav a { padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.16); }
  .top-product-menu { height: auto; display: block; }
  .top-product-trigger { width: 100%; height: 50px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.16); }
  .top-product-trigger::after { display: none; }
  .top-product-panel { max-height: 0; position: static; visibility: visible; overflow: hidden; border: 0; box-shadow: none; opacity: 1; pointer-events: none; transform: none; transition: max-height 280ms ease; }
  .top-product-menu.is-open .top-product-panel { max-height: 620px; pointer-events: auto; }
  .top-product-panel-inner { width: 100%; padding: 14px 0 18px; display: block; }
  .top-product-panel header { display: none; }
  .top-product-links { grid-template-columns: 1fr; }
  .final-home .desktop-nav .top-product-links a { min-height: 86px; padding: 14px; }
  .top-product-links strong { margin-top: 10px; font-size: 17px; }
  .top-product-links small { margin-top: 4px; }
  .scene-progress { display: none; }
  .hero-section { min-height: 92svh; }
  .hero-content { padding-top: 108px; padding-bottom: 84px; }
  .hero-content h1 { margin-top: 18px; font-size: 42px; line-height: 1.13; }
  .hero-lead { margin-top: 24px; font-size: 14px; line-height: 1.75; }
  .hero-lead-keep { white-space: normal; }
  .hero-actions { margin-top: 26px; }
  .hero-next { display: none; }
  .product-directory, .industry-directory, .cases-section { padding: 78px 0; }
  .directory-heading { min-height: 350px; display: block; }
  .directory-heading h2 { margin-top: 24px; font-size: 24px; line-height: 1.2; }
  .directory-heading h2 span { white-space: normal; overflow-wrap: anywhere; }
  .directory-heading-meta { margin-top: 42px; }
  .product-row { min-height: 0; grid-template-columns: 1fr; }
  .product-summary { min-height: 150px; padding: 24px 0; }
  .product-row figure { min-height: 0; aspect-ratio: 16 / 10; }
  .product-name { min-height: 150px; padding: 24px 0; grid-template-columns: 36px 1fr 42px; }
  .product-name h3 { font-size: 37px; }
  .product-name h3 { white-space: normal; }
  .industry-directory-heading { grid-template-columns: 1fr; gap: 22px; }
  .industry-directory-heading h2 { font-size: 38px; }
  .industry-directory-heading > p:last-child { grid-column: auto; }
  .home-industry-grid { margin-top: 46px; grid-template-columns: 1fr; }
  .home-industry-card { min-height: 330px; padding: 24px; }
  .cases-heading { display: block; }
  .cases-heading h2 { margin-top: 24px; font-size: 38px; line-height: 1.18; }
  .case-track { width: 100%; margin-inline: 0; padding-inline: 18px; grid-auto-columns: 84vw; gap: 12px; }
  .case-card { min-height: 500px; }
  .case-foot span { display: none; }
  .case-foot { justify-content: flex-end; }
  .contact-section { padding-top: 80px; }
  .contact-heading { display: block; }
  .contact-heading h2 { margin-top: 24px; font-size: 40px; line-height: 1.17; }
  .contact-panel { margin-top: 58px; grid-template-columns: 1fr; }
  .contact-panel > * { min-height: 210px; }
  .about-link { grid-column: auto; min-height: 96px; }
  .contact-section footer { margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-loader, .product-row, .product-row figure img { transition: none; }
}

/* ══ 首页 · 信任与实力（数字一览 + 客户评价） ══ */
.proof-section {
  padding: 112px 0 120px;
  background: #f6f6f3;
}

.proof-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 50px;
  align-items: end;
}

.proof-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1.12;
}

.proof-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  color: #737a80;
  font-size: 12px;
}

.proof-heading > div:last-child b {
  font-weight: 600;
  color: #3a4149;
}

.stats-band {
  margin-top: 56px;
  background: #fff;
}

.stats-band .stats-band-list {
  border-color: rgba(21, 24, 27, 0.16);
}

.stats-band .stats-item {
  border-color: rgba(21, 24, 27, 0.16);
}

.testimonial-wrap {
  margin-top: 96px;
}

.testimonial-sub {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(21, 24, 27, 0.18);
  padding-bottom: 18px;
}

.testimonial-sub h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
}

.testimonial-sub span {
  color: #737a80;
  font-size: 12px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(21, 24, 27, 0.18);
}

.testimonial-card {
  min-height: 330px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-right: 1px solid rgba(21, 24, 27, 0.18);
  border-bottom: 1px solid rgba(21, 24, 27, 0.18);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #2c333b;
}

.testimonial-card cite {
  font-style: normal;
}

.testimonial-card cite strong {
  display: block;
  font-size: 13px;
  color: #15181b;
}

.testimonial-card cite span {
  display: block;
  margin-top: 5px;
  color: #737a80;
  font-size: 11px;
  line-height: 1.6;
}

.testimonial-disclaimer {
  margin-top: 22px;
  color: #8a929b;
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .proof-heading { grid-template-columns: 1fr; gap: 22px; }
  .proof-heading h2 { font-size: 42px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
}

@media (max-width: 760px) {
  .proof-section { padding: 78px 0 88px; }
  .proof-heading h2 { font-size: 34px; }
  .testimonial-wrap { margin-top: 64px; }
  .testimonial-sub { flex-direction: column; gap: 8px; }
}

/* ══ 首页结尾三屏 · 按参考稿还原 ══ */
.proof-shell,
.testimonial-shell,
.cooperation-shell {
  width: min(1348px, calc(100% - 166px));
}

.proof-section {
  min-height: 100svh;
  padding: 170px 0 110px;
  overflow: hidden;
  isolation: isolate;
  background: #f8f9f7;
}

.proof-building-art {
  position: absolute;
  z-index: -1;
  top: 155px;
  right: 95px;
  color: #315b92;
  font-size: clamp(240px, 23vw, 355px);
  line-height: 1;
  opacity: 0.075;
}

.proof-heading {
  display: block;
}

.proof-heading .section-label {
  color: #42536f;
  font-size: 13px;
  font-weight: 600;
}

.proof-heading h2 {
  max-width: 1040px;
  margin: 34px 0 0;
  color: #080b0d;
  font-family: var(--font-display);
  font-size: clamp(48px, 4vw, 66px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.proof-heading > p:last-child {
  margin: 32px 0 0;
  color: #68727c;
  font-size: 17px;
  line-height: 1.7;
}

.strength-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d3d8dd;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.68);
}

.strength-card {
  min-height: 312px;
  padding: 42px 31px 30px;
  border-right: 1px solid #d3d8dd;
}

.strength-card:last-child {
  border-right: 0;
}

.strength-card-top {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.strength-card-top > i {
  flex: 0 0 auto;
  color: #285caa;
  font-size: 69px;
  font-weight: 300;
}

.strength-card-top strong {
  color: #070b0f;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.7vw, 45px);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.strength-card h3 {
  margin: 22px 0 0;
  color: #080b0e;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.strength-accent {
  width: 28px;
  height: 3px;
  margin-top: 20px;
  display: block;
  background: #1f5cae;
}

.strength-card > p {
  margin: 24px 0 0;
  color: #737c85;
  font-size: 13px;
  line-height: 1.7;
}

.testimonial-section {
  min-height: 100svh;
  padding: 122px 0 108px;
  background: #fbfbfa;
  color: #101317;
}

.testimonial-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.testimonial-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.testimonial-heading p {
  margin: 0;
  color: #7b8085;
  font-size: 13px;
}

.feedback-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feedback-card {
  min-height: 466px;
  padding: 38px 23px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cdd1d5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.feedback-card > header {
  min-height: 164px;
  margin: -38px -23px 0;
  padding: 38px 23px 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #cdd1d5;
  border-radius: 7px 7px 0 0;
  background: #ebeDEA;
}

.feedback-icon-group {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  color: #285b9f;
}

.feedback-icon-group i:first-child {
  font-size: 78px;
}

.feedback-icon-group i:last-child {
  position: absolute;
  right: 3px;
  bottom: 13px;
  padding: 3px;
  background: #fbfbfa;
  font-size: 36px;
}

.feedback-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}

.feedback-card header p {
  margin: 12px 0 0;
  color: #737b83;
  font-size: 13px;
}

.feedback-card blockquote {
  position: relative;
  margin: 48px 16px 0 36px;
  color: #22272c;
  font-size: 17px;
  line-height: 2.05;
}

.feedback-card blockquote::before,
.feedback-card blockquote::after {
  position: absolute;
  color: #91acd2;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.feedback-card blockquote::before {
  top: -17px;
  left: -33px;
  content: "“";
}

.feedback-card blockquote::after {
  right: -2px;
  bottom: -18px;
  content: "”";
}

.feedback-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-tags span {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  background: #f0f5fb;
  color: #3266ab;
  font-size: 11px;
  white-space: nowrap;
}

.feedback-tags i {
  font-size: 16px;
}

.feedback-note {
  margin: 42px 0 0;
  color: #7e858b;
  font-size: 12px;
}

.contact-section.contact-overview {
  min-height: 100svh;
  padding: 0;
  background: #ebeDEA;
  color: #101317;
}

.cooperation-shell {
  padding-top: 42px;
}

.cooperation-heading .section-label {
  color: #10c8f4;
  font-size: 12px;
}

.cooperation-heading h2 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.18;
  color: #101317;
}

.cooperation-heading > p:last-child {
  margin: 24px 0 0;
  color: #5f6870;
  font-size: 15px;
}

.cooperation-flow {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 116px 1fr 116px 1fr 116px 1fr;
  align-items: center;
}

.cooperation-flow article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cooperation-flow article > i {
  color: #00d3ff;
  font-size: 74px;
}

.cooperation-flow article > span {
  min-width: 36px;
  height: 36px;
  margin-top: 15px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #1268ec;
  font-size: 14px;
  font-weight: 700;
}

.cooperation-flow h3 {
  margin: 17px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #101317;
}

.cooperation-flow p {
  margin: 12px 0 0;
  color: #68717a;
  font-size: 14px;
  line-height: 1.7;
}

.flow-connector {
  height: 1px;
  position: relative;
  margin-top: -55px;
  border-top: 2px dotted #9aa3ab;
}

.flow-connector i {
  position: absolute;
  top: -10px;
  right: -2px;
  padding-left: 5px;
  background: #ebeDEA;
  color: #096ef1;
  font-size: 19px;
}

.contact-overview .overview-footer {
  min-height: 830px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #03080c;
  color: #fff;
}

.contact-overview .overview-footer > .overview-footer-grid {
  width: min(1815px, calc(100% - 72px));
  min-height: 0;
  padding: 160px 0 108px;
  display: grid;
  grid-template-columns: 1.55fr 0.86fr 1.12fr 0.7fr 1fr 1.1fr 1.22fr;
  gap: 0;
  align-items: start;
  font-size: 16px;
}

@media (min-width: 1101px) {
  .contact-overview .overview-footer > .overview-footer-grid {
    width: min(1815px, calc(100% - 72px));
    margin-inline: auto;
  }
}

.overview-brand,
.overview-footer-grid > nav,
.overview-footer-grid > address {
  min-height: 378px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.overview-brand {
  padding-left: 0;
}

.overview-footer-grid > address {
  padding-right: 0;
  border-right: 0;
  font-style: normal;
}

.overview-brand > img {
  width: 136px;
  filter: brightness(1.2);
}

.overview-brand > strong {
  margin-top: 29px;
  display: block;
  font-size: 18px;
  white-space: nowrap;
}

.overview-brand > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.overview-contact-icons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.overview-contact-icons > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  white-space: nowrap;
}

.overview-social-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.overview-social-mark i {
  font-size: 23px;
}

.overview-social-item em {
  font-style: normal;
  white-space: nowrap;
}

.overview-appointment {
  width: 100%;
  max-width: 270px;
  min-height: 76px;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 21px;
}

.overview-footer-grid h3 {
  margin: 0 0 33px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.overview-footer-grid > address h3 {
  font-size: 22px;
}

.overview-footer-grid nav,
.overview-footer-grid address {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.overview-footer-grid nav a,
.overview-footer-grid nav .overview-link-pending,
.overview-footer-grid address a,
.overview-footer-grid address span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.overview-footer-grid nav a,
.overview-footer-grid nav .overview-link-pending {
  font-size: 15px;
  white-space: nowrap;
}

.overview-footer-grid nav .overview-link-pending {
  cursor: default;
}

.overview-footer-grid .overview-company-nav,
.overview-footer-grid .overview-legal-nav {
  gap: 23px;
}

.overview-footer-grid address a,
.overview-footer-grid address span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  white-space: nowrap;
}

.overview-footer-grid address i {
  color: #059be9;
  font-size: 28px;
}

.overview-footer-grid address img {
  width: 126px;
  height: 126px;
  margin-left: 42px;
  object-fit: cover;
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .contact-overview .overview-footer > .overview-footer-grid {
    grid-template-columns: 0.82fr 1.12fr 0.68fr 1.02fr 1.1fr 1.16fr;
    gap: 0;
    padding: 110px 0 72px;
  }
  .overview-brand { grid-column: 1 / -1; }
  .overview-brand,
  .overview-footer-grid > nav,
  .overview-footer-grid > address { padding-inline: 10px; }
  .overview-brand { padding-left: 0; }
  .overview-footer-grid > address { padding-right: 0; }
  .overview-footer-grid nav a,
  .overview-footer-grid nav .overview-link-pending { font-size: 17px; }
  .overview-footer-grid address a,
  .overview-footer-grid address span { gap: 6px; font-size: 14px; }
  .overview-contact-icons { gap: 8px; }
  .overview-contact-icons > span { gap: 6px; font-size: 13px; }
  .overview-social-mark { width: 40px; height: 40px; font-size: 16px; }
  .overview-social-mark i { font-size: 20px; }
  .overview-footer-bottom { margin-top: 36px; }
}

.overview-footer-bottom {
  grid-column: 1 / -1;
  margin-top: 104px;
  padding-top: 38px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
}

.overview-footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
  .proof-shell,
  .testimonial-shell,
  .cooperation-shell { width: min(100% - 96px, 920px); }
  .strength-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strength-card:nth-child(2) { border-right: 0; }
  .strength-card:nth-child(-n + 2) { border-bottom: 1px solid #d3d8dd; }
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-card { min-height: 430px; }
  .cooperation-flow { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .flow-connector { display: none; }
  .contact-overview .overview-footer > .overview-footer-grid {
    padding: 80px 0 56px;
    grid-template-columns: 0.82fr 1.12fr 0.68fr 1.02fr 1.1fr 1.16fr;
    gap: 0;
  }
  .overview-brand { grid-column: 1 / -1; }
  .overview-footer-grid > nav,
  .overview-footer-grid > address { padding-inline: 10px; }
  .overview-footer-grid nav a,
  .overview-footer-grid nav .overview-link-pending { font-size: 16px; }
  .overview-footer-grid h3 { font-size: 20px; }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .overview-brand {
    min-height: 0;
    padding: 0 0 50px;
    display: grid;
    grid-template-columns: 136px minmax(280px, 1fr) 270px;
    grid-template-rows: auto auto;
    column-gap: 28px;
    row-gap: 12px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .overview-brand > img { grid-column: 1; grid-row: 1 / 3; }
  .overview-brand > strong { grid-column: 2; grid-row: 1; margin-top: 0; }
  .overview-brand > p { grid-column: 2; grid-row: 2; margin-top: 0; }
  .overview-brand > .overview-contact-icons { grid-column: 3; grid-row: 1; margin-top: 0; }
  .overview-brand > .overview-appointment {
    grid-column: 3;
    grid-row: 2;
    min-height: 58px;
    margin-top: 0;
  }
  .overview-footer-grid > nav,
  .overview-footer-grid > address { margin-top: 56px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .contact-overview .overview-footer > .overview-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 0;
  }
}

@media (max-width: 760px) {
  .proof-shell,
  .testimonial-shell,
  .cooperation-shell { width: min(100% - 36px, 680px); }
  .proof-section,
  .testimonial-section { padding: 100px 0 76px; }
  .proof-building-art { top: 90px; right: -60px; font-size: 260px; }
  .proof-heading h2 { margin-top: 24px; font-size: 38px; }
  .proof-heading > p:last-child { margin-top: 20px; font-size: 14px; }
  .strength-grid { margin-top: 46px; grid-template-columns: 1fr; }
  .strength-card,
  .strength-card:nth-child(2) { min-height: 250px; border-right: 0; border-bottom: 1px solid #d3d8dd; }
  .strength-card:last-child { border-bottom: 0; }
  .testimonial-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .testimonial-heading h2 { font-size: 30px; }
  .feedback-card > header { grid-template-columns: 96px 1fr; }
  .feedback-card blockquote { margin-right: 0; font-size: 15px; }
  .cooperation-shell { padding-top: 96px; }
  .cooperation-heading h2 { font-size: 34px; }
  .cooperation-flow { grid-template-columns: repeat(2, 1fr); }
  .contact-overview .overview-footer { min-height: 0; }
  .contact-overview .overview-footer > .overview-footer-grid { width: min(100% - 36px, 680px); padding: 52px 0 36px; grid-template-columns: 1fr; }
  .overview-brand { grid-column: auto; }
  .overview-brand,
  .overview-footer-grid > nav,
  .overview-footer-grid > address { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .overview-footer-bottom { flex-direction: column; gap: 10px; }
}
