.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 72px;
  padding: 0 var(--page-edge);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #101419;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(16, 20, 25, .08);
  font-family: "Inter", Arial, sans-serif;
  backdrop-filter: blur(14px);
}

.site-nav *,
.mobile-menu *,
.shared-footer * {
  box-sizing: border-box;
}

body.page-home .site-nav {
  position: sticky;
  top: 0;
  height: 72px;
  padding: 0 var(--page-edge);
  color: #101419;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(16, 20, 25, 0.08);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-logo-mark {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--brand-blue);
}

.nav-links,
.nav-right,
.nav-mobile-right {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--brand-blue);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-right {
  gap: 18px;
}

.nav-lang {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
}

.nav-lang svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nav-contact-link,
.btn-contact-mobile {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-blue);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-contact-link:hover,
.nav-contact-link:focus-visible,
.btn-contact-mobile:hover,
.btn-contact-mobile:focus-visible {
  color: #fff;
  border-color: var(--brand-blue-hover);
  background: var(--brand-blue-hover);
}

.nav-mobile-right {
  display: none;
  gap: 12px;
}

.nav-tablet-contact {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  padding: 18px 32px 28px;
  flex-direction: column;
  gap: 4px;
  color: #101419;
  background: #fff;
  box-shadow: 0 18px 30px rgba(16, 20, 25, .12);
  font-family: "Inter", Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu > a[aria-current="page"] {
  color: var(--brand-blue);
  font-weight: 600;
}

.mobile-menu-cta {
  padding-top: 10px;
}

.mobile-menu-cta a {
  width: 100%;
  min-height: 44px;
}

.shared-footer {
  box-sizing: border-box;
  width: 100%;
  padding: 0 max(24px, calc((100% - 1280px) / 2));
  overflow: hidden;
  color: rgba(255, 255, 255, .7);
  background: #0c1218;
  font-family: "Inter", Arial, sans-serif;
  line-height: normal;
}

.shared-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 0 40px;
}

.shared-footer__main {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.shared-footer__brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.shared-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.shared-footer__mark {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--brand-blue);
}

.shared-footer__brand p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.6;
}

.shared-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.shared-footer__social a {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  place-items: center;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.shared-footer__social a:hover,
.shared-footer__social a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .2);
}

.shared-footer__menus {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.shared-footer__column {
  min-width: 0;
}

.shared-footer__column h2 {
  margin: 0 0 16px;
  font: inherit;
}

.shared-footer__toggle {
  display: flex;
  width: 100%;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  pointer-events: none;
}

.shared-footer__chevron {
  display: none;
}

.shared-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.shared-footer__links a {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  transition: color .15s ease;
}

.shared-footer__links a:hover,
.shared-footer__links a:focus-visible {
  color: #fff;
}

.shared-footer__bottom {
  display: flex;
  width: 100%;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.shared-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.shared-footer__bottom a,
.shared-footer__cookie-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color .15s ease;
}

.shared-footer__bottom a:hover,
.shared-footer__bottom a:focus-visible,
.shared-footer__cookie-button:hover,
.shared-footer__cookie-button:focus-visible {
  color: rgba(255, 255, 255, .82);
}

.cookie-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: #101419;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.cookie-dialog::backdrop {
  background: rgba(12, 18, 24, .72);
}

.cookie-dialog__body {
  display: grid;
  padding: 28px;
  gap: 18px;
}

.cookie-dialog__body h2,
.cookie-dialog__body p {
  margin: 0;
}

.cookie-dialog__body p {
  color: #4d5662;
  line-height: 1.6;
}

.cookie-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-dialog__actions button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-blue);
  border-radius: 4px;
  color: var(--brand-blue);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-dialog__actions button[data-cookie-accept] {
  color: #fff;
  background: var(--brand-blue);
}

@media (max-width: 1199px) {
  .site-nav {
    padding-right: 32px;
    padding-left: 32px;
  }

  body.page-home .site-nav {
    padding-right: 0;
    padding-left: 0;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-mobile-right,
  .hamburger {
    display: flex;
  }

  .nav-tablet-contact {
    display: inline-flex;
  }

  .shared-footer {
    padding-right: 32px;
    padding-left: 32px;
  }

  .shared-footer__inner {
    padding: 56px 0 32px;
  }

  .shared-footer__main {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .shared-footer__brand {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    gap: 32px;
    align-items: center;
  }

  .shared-footer__brand p {
    max-width: 460px;
  }

  .shared-footer__social {
    justify-self: end;
  }

  .shared-footer__menus {
    gap: 24px;
  }
}

@media (max-width: 899px) {
  .shared-footer__brand {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 24px;
  }

  .shared-footer__brand p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .shared-footer__social {
    grid-column: 2;
    grid-row: 1;
  }

  .shared-footer__menus {
    gap: 20px;
  }
}

@media (max-width: 639px) {
  .site-nav {
    height: 64px;
    padding-right: 16px;
    padding-left: 16px;
  }

  body.page-home .site-nav {
    height: 64px;
    padding-right: 0;
    padding-left: 0;
  }

  .nav-tablet-contact {
    display: none;
  }

  .mobile-menu {
    top: 64px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .shared-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .shared-footer__inner {
    padding: 40px 0 24px;
  }

  .shared-footer__main {
    gap: 24px;
  }

  .shared-footer__brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .shared-footer__brand p {
    max-width: 340px;
  }

  .shared-footer__social a {
    width: 44px;
    height: 44px;
  }

  .shared-footer__menus {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .shared-footer__column {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .shared-footer__column h2 {
    margin: 0;
  }

  .shared-footer__toggle {
    min-height: 50px;
    pointer-events: auto;
    cursor: pointer;
  }

  .shared-footer__chevron {
    display: block;
    width: 9px;
    height: 9px;
    margin-right: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .shared-footer__toggle[aria-expanded="true"] .shared-footer__chevron {
    transform: rotate(225deg);
  }

  .shared-footer__links {
    gap: 0;
    padding-bottom: 12px;
  }

  .shared-footer__links[hidden] {
    display: none;
  }

  .shared-footer__links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .shared-footer__bottom {
    margin-top: 24px;
    padding-top: 20px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }

  .shared-footer__bottom nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }

  .shared-footer__bottom a,
  .shared-footer__cookie-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (hover: none) {
  a:active,
  button:active,
  .spotlight:active {
    transform: scale(.97);
  }
}

/* ---- 回到顶部悬浮按钮（全站共享，位于联系按钮上方）---- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 900;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(16, 20, 25, .1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #101419;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 4px 16px rgba(16, 20, 25, .18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease,
    background-color 200ms ease,
    color 200ms ease;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

@media (max-width: 639px) {
  .back-to-top {
    right: 16px;
    bottom: 80px;
    width: 40px;
    height: 40px;
  }
}

/* ===== 全站统一底部 CTA（由 site-shell.js 统一渲染） ===== */
.contact-section {  box-sizing: border-box;
  
  position: relative;
  display: flex;
  width: 100%;
  padding: 80px var(--page-gutter) 48px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: var(--footer);
}
.contact-section {
    padding: 72px 32px 48px;
  }
.contact-section {
    padding: 56px 16px 40px;
  }
.cta-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  background-color: #151b23;
  background-image: url("../assets/images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  transition: border-color 500ms ease;
}
.cta-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(12, 16, 22, 0.72);
}
.cta-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(600px circle at 50% 50%, rgba(22, 119, 255, 0.06), transparent 70%);
  transition: opacity 500ms ease;
}
.cta-card:hover {
  border-color: rgba(22, 119, 255, 0.2);
}
.cta-card:hover::after {
  opacity: 1;
}
.cta-card > * {
  position: relative;
  z-index: 2;
}
.cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
}
.cta-card p {
  max-width: 576px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.cta-card .button {
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.4);
}
.cta-card .button:hover {
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.55);
}
.cta-card {
    padding: 32px;
    gap: 24px;
    border-radius: 16px;
  }
.cta-card h2 {
    font-size: 24px;
  }
.cta-card p {
    font-size: 15px;
  }
.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.56px;
}
.section .eyebrow {
  color: var(--blue-text);
}
.hero-copy .eyebrow {
    font-size: 12px;
  }
.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  padding: 12px 24px;
  overflow: hidden;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 140ms var(--ease-out);
}
.button:active {
  transform: scale(0.97);
}
.button-primary {
  background: var(--blue);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-hover);
}
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font-weight: 500;
}
.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.button-shimmer::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-120%) skewX(-20deg);
}
.button-shimmer:hover::after,
.button-shimmer:active::after {
  animation: button-shimmer 650ms ease forwards;
}
.hero-copy .button {
  margin-top: 12px;
  padding-right: 28px;
  padding-left: 28px;
  letter-spacing: 0.5px;
}
.cta-card .button {
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.4);
}
.cta-card .button:hover {
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.55);
}
.hero-copy .button {
    min-height: 42px;
    margin-top: 4px;
    padding: 11px 24px;
    font-size: 13px;
  }
.button-primary,
.hero-copy .button-primary {
  min-height: 44px;
}
.button-primary {
  background: var(--blue);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-hover);
}
.button-primary,
.hero-copy .button-primary {
  min-height: 44px;
}
.button-shimmer::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-120%) skewX(-20deg);
}
.button-shimmer:hover::after,
.button-shimmer:active::after {
  animation: button-shimmer 650ms ease forwards;
}
.section-cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    500px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 255, 255, 0.14),
    transparent 60%
  );
  transition: background 150ms ease;
}
.cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
}
.cta-card h2 {
    font-size: 24px;
  }
.cta-card p {
  max-width: 576px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.cta-card p {
    font-size: 15px;
  }
.cta-card .button {
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.4);
}
.cta-card .button:hover {
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.55);
}
@keyframes button-shimmer {
  from {
    transform: translateX(-120%) skewX(-20deg);
  }
  to {
    transform: translateX(220%) skewX(-20deg);
  }
}


/* ===== 全站统一底部 CTA（site-shell.js 渲染，视觉与首页一致） ===== */
.contact-section {
  position: relative;
  display: flex;
  width: 100%;
  padding: 80px max(24px, calc((100% - 1280px) / 2)) 48px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #10141a;
}
.contact-section .cta-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  background-color: #151b23;
  background-image: url('/assets/images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  transition: border-color 500ms ease;
}
.contact-section .cta-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(12, 16, 22, 0.72);
}
.contact-section .cta-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(600px circle at 50% 50%, rgba(22, 119, 255, 0.06), transparent 70%);
  transition: opacity 500ms ease;
}
.contact-section .cta-card:hover {
  border-color: rgba(22, 119, 255, 0.2);
}
.contact-section .cta-card:hover::after { opacity: 1; }
.contact-section .cta-card > * { position: relative; z-index: 2; }
.contact-section .cta-card h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
}
.contact-section .cta-card p {
  max-width: 576px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.contact-section .eyebrow {
  color: #1677ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.56px;
}
.contact-section .button {
  text-decoration: none !important;
  position: relative;
  display: inline-flex;
  height: 46px !important;
  min-height: 46px;
  line-height: 46px;
  padding: 0 24px !important;
  overflow: hidden;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: #1677ff;
  box-shadow: 0 4px 20px rgba(22, 119, 255, 0.4);
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 140ms ease;
}
.contact-section .button:hover {
  text-decoration: none !important;
  background: #0e5fd8;
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.55);
}
.contact-section .button:active { transform: scale(0.97); }
.contact-section .button-shimmer::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-120%) skewX(-20deg);
}
.contact-section .button-shimmer:hover::after {
  animation: button-shimmer 650ms ease forwards;
}
@media (max-width: 1024px) {
  .contact-section { padding: 56px 32px 48px; }
  .contact-section .cta-card { padding: 32px; gap: 24px; border-radius: 16px; }
  .contact-section .cta-card h2 { font-size: 24px; }
  .contact-section .cta-card p { font-size: 15px; }
}
@media (max-width: 639px) {
  .contact-section { padding: 40px 16px 40px; }
}
@keyframes button-shimmer {
  from { transform: translateX(-120%) skewX(-20deg); }
  to { transform: translateX(220%) skewX(-20deg); }
}

/* 全站社媒 SVG 图标 */
.shared-footer__social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
  margin: 0 auto;
}
.shared-footer__social a svg path { fill: currentColor; }
