﻿:root {
  --color-bg: #02070d;
  --color-panel: rgba(0, 112, 255, 0.42);
  --color-panel-strong: rgba(0, 115, 255, 0.82);
  --color-blue: #006fff;
  --color-cyan: #39d8ff;
  --color-text: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.72);
  --color-soft: rgba(255, 255, 255, 0.52);
  --header-height: 4.7rem;
  --page-x: clamp(1.5rem, 8.4vw, 10rem);
  --switch-duration: 5.6s;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--color-text);
  font-family: "Noto Sans SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.footer-column a,
.contact-line {
  transition: color 200ms ease, transform 200ms ease, opacity 200ms ease, filter 200ms ease;
}

.hover-lift {
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-0.16rem);
  filter: drop-shadow(0 0 0.75rem rgba(44, 188, 255, 0.36));
}

.home-fullpage,
.home-fullpage>.swiper-wrapper,
.page-section {
  width: 100%;
  height: 100vh;
}

.home-fullpage {
  overflow: hidden;
  perspective: 1200px;
}

.home-fullpage>.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.18, 0.86, 0.24, 1) !important;
}

.page-section {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background: #02070d;
  backface-visibility: hidden;
  transform-origin: center;
}

.home-fullpage .page-section {
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.18, 0.86, 0.24, 1);
}

.home-fullpage .page-section:not(.swiper-slide-active) {
  opacity: 0.34;
}

.section-bg,
.solution-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.78;
  transform: scale(1.045);
  transition: opacity 980ms var(--ease-out), transform 1180ms var(--ease-out);
}

.page-section.is-active .section-bg,
.page-section.is-active .swiper-slide-active .solution-bg {
  opacity: 1;
  transform: scale(1);
}

/* .section-bg::after, */
.solution-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(0, 118, 255, 0.08), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100% - calc(var(--page-x) * 2), 100rem);
  height: 100%;
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-text {
  max-width: 45rem;
  margin: 2.1875rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 24px;
  text-wrap: pretty;
}

.primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.8rem;
  min-height: 2.35rem;
  margin-top: 1.8rem;
  padding: 0 1.45rem;
  border-radius: 999rem;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background: linear-gradient(92deg, #005cff, #0098ff);
  box-shadow: 0 0 1.15rem rgba(0, 111, 255, 0.46);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), filter 260ms var(--ease-out);
}

.primary-pill::before {
  content: '';
  border-radius: 999rem;
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 5px 0 rgba(255, 255, 255, 0.46);
}

.primary-pill:hover {
  box-shadow: 0 0 1.75rem rgba(0, 164, 255, 0.72);
}

.detail-pill {
  position: relative;
  isolation: isolate;
  width: 116px;
  min-width: 116px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  background: linear-gradient(90deg, #1634f4 18%, #3375f6 82%);
  box-shadow: none;
}

.detail-pill::before {
  content: none;
}

.detail-pill::after {
  content: none;
}

.detail-pill:hover {
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .detail-pill.hover-lift:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.12) saturate(1.08) drop-shadow(0 0 6px rgba(51, 117, 246, 0.52));
  }

  .strength-more.detail-pill.hover-lift:hover {
    transform: translate(-50%, -2px) !important;
  }
}

.detail-pill:active {
  filter: brightness(0.96) saturate(0.98);
}

.detail-pill:focus-visible {
  outline: 2px solid rgba(91, 205, 255, 0.95);
  outline-offset: 4px;
  filter: brightness(1.1) saturate(1.06);
}

.detail-pill:focus-visible {
  outline: 2px solid rgba(91, 205, 255, 0.95);
  outline-offset: 4px;
}

.hero-section .section-bg,
.about-section video.section-bg,
.strength-section video.section-bg {
  display: block;
  width: 100%;
  height: 100%;
  /*background-image: url("../image/sunlight-home/backgrounds/bg-01-hero-cover-1920x980.jpg");
  background-position: center top;*/
  object-fit: cover;
  object-position: right bottom;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 24rem;
}

.hero-kicker {
  margin: 0 0 0.45rem;
  font-size: clamp(0.86rem, 1vw, 1.08rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.25rem, 3.1875vw, 61.2px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.45rem, 2.5vw, 48px);
  line-height: 72px;
  font-weight: 400;
}

.hero-map {
  position: absolute;
  right: clamp(2.2rem, 5vw, 2.2rem);
  bottom: clamp(2rem, 5vh, 4.3rem);
  z-index: 2;
  width: clamp(5.2rem, 7vw, 8.25rem);
  /* border: 0.1rem solid rgba(0, 140, 255, 0.42); */
  opacity: 0.72;
}

.products-section {
  background: #010409;
}

.product-grid-bg {
  background:
    radial-gradient(circle at 32% 52%, rgba(0, 177, 255, 0.2), rgba(0, 0, 0, 0) 32%),
    linear-gradient(rgba(0, 116, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 255, 0.16) 1px, transparent 1px),
    #010409;
  background-size: auto, 5.5rem 5.5rem, 5.5rem 5.5rem, auto;
  background-position: center, center, center, center;
}

.product-grid-bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
}

.feature-swiper,
.feature-swiper>.swiper-wrapper,
.feature-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.product-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40vw;
  align-items: center;
  gap: 4rem;
  padding: var(--header-height) 0 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-inner-right {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 10rem 0 5rem;
}

.product-inner-car {
  background-image: url("../image/sunlight-home/images/product-car-main-placed.png");
}

.product-inner-moto {
  background-image: url("../image/sunlight-home/images/product-moto-main-placed.png");
}


.product-visual {
  position: relative;
  align-self: stretch;
  min-height: 36rem;
}

.product-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -33%);
  width: 80%;
  aspect-ratio: 858 / 362;
}

.product-inner-moto .product-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -45%);
  width: 65%;
  aspect-ratio: 686 / 521;
}

.vehicle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.chip-card {
  width: 30rem;
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-40%) !important;
  z-index: 2;
  min-width: 18.5rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(66, 187, 255, 0.48);
  border-radius: 0.5rem;
  background: rgba(0, 96, 180, 0.78);
  box-shadow: 0 0 1.6rem rgba(0, 143, 255, 0.28);
}

.chip-card strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 400;
}

.chip-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 4.5rem;
}

.chip-list img {
  width: 5.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.product-example-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.hotspot {
  display: block;
  position: absolute;
  cursor: pointer;
  left: var(--x);
  top: var(--y);
  width: .55rem;
  height: .55rem;
  margin: -0.275rem 0 0 -0.275rem;
  transform-origin: center center;
  border-radius: 50%;
  z-index: 10;
}

.hotspot::before {
  position: absolute;
  inset: 0;
  content: '';
  border-radius: 50%;
  background: rgba(215, 255, 0, 1);
  box-shadow: 0 0 1rem 0.75em rgba(224, 255, 0, 0.25);
  animation: pulse-dot 1.8s ease-out infinite;
}

.hotspot:hover::after,
.hotspot.is-active::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  z-index: 5;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  box-shadow:
    0 0 1.5px 6px rgba(224, 255, 0, 0.25),
    0 0 1.5px 12px rgba(224, 255, 0, 0.25);
}


.product-panels {
  display: grid;
  gap: 1.85rem;
  /*margin-top: 4.5vh;*/
}

.image-panel {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 148, 255, 0.7);
  border-radius: 0.6rem;
  background: rgba(0, 17, 34, 0.9);
  box-shadow: inset 0 0 0 1px rgba(38, 206, 255, 0.12);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 548 / 233;
  object-fit: cover;
  transition: transform 560ms var(--ease-out), filter 560ms var(--ease-out);
}

.image-panel:hover img {
  transform: scale(1.04);
  filter: saturate(1.15) brightness(1.08);
}

.switch-wrap {
  position: absolute;
  right: 0;
  bottom: clamp(2.4rem, 5vh, 4.6rem);
  left: 0;
  z-index: 8;
  height: auto;
  pointer-events: none;
}

.switch-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(13rem, 1fr));
  gap: clamp(2.2rem, 4vw, 5rem);
  width: min(58rem, 70vw);
  pointer-events: auto;
}

.switch-dot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.switch-dot:hover,
.switch-dot.is-active {
  color: #ffffff;
  transform: translateY(-0.12rem);
}

.switch-num {
  font-size: 18px;
  font-weight: 400;
}

.switch-text {
  font-size: 22px;
  font-weight: 400;
}

.switch-line {
  position: relative;
  display: block;
  width: 100%;
  height: 0.08rem;
  /* overflow: hidden; */
  background: rgba(255, 255, 255, 0.76);
}

.switch-line i {
  display: block;
  width: 0;
  margin-top: -0.04rem;
  height: 200%;
  background: #ffffff;
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.76);
}

.switch-progress.is-running .switch-dot.is-active .switch-line i {
  animation: progress-fill var(--switch-duration) linear forwards;
}

.products-section .switch-wrap {
  width: 62.5vw;
  margin: 0;
  padding: 0 8.45vw;
  bottom: 6.8vh;
}

.products-section .switch-progress {
  width: 100%;
}

.solutions-section {
  background: #02070d;
}

.solution-slide {
  position: relative;
}

.solution-interior .solution-bg {
  background-image: url("../image/sunlight-home/backgrounds/bg-03-solutions-cover-1920x980.jpg");
  background-position: center;
}

.solution-exterior .solution-bg {
  background-image: url("../image/sunlight-home/backgrounds/bg-03-exterior.jpg");
  background-position: center;
}

.solution-bg::after {
  background: linear-gradient(90deg, rgba(0, 16, 40, 0.42), rgba(0, 43, 91, 0.08) 45%, rgba(0, 0, 0, 0.12));
}

.solution-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 4.7rem;
}

.solution-title {
  width: min(70rem, 70vw);
  margin-bottom: 2.2rem;
  text-align: center;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(12rem, 1fr));
  gap: clamp(1.15rem, 1.8vw, 2rem);
  width: min(70rem, 70vw);
}

.solution-card {
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  min-height: 26.1rem;
  overflow: hidden;
  border: 1px solid rgba(58, 188, 255, 0.42);
  border-radius: 0.55rem;
  background: rgba(0, 113, 205, 0.66);
  color: #fff;
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.solution-card>div {
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  background: linear-gradient(90deg, #0233ff, #0071ff);
  box-shadow: inset 0 0 2rem rgba(255, 255, 255, 0.34);
}

.solution-card img {
  width: calc(100% - 1.9rem);
  margin: 0.9rem auto 0;
  aspect-ratio: 350 / 195;
  object-fit: cover;
}

.solution-card strong {
  margin: 1.1rem 1.35rem 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.solution-card span {
  margin: 8px 1.35rem 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 24px;
}

.solution-switch .switch-progress {
  width: min(92rem, 84vw);
}

.solution-switch {
  bottom: 2.2vh;
}

.about-section .section-bg {
  background-image: url("../image/sunlight-home/backgrounds/bg-04-about-cover-1920x980.jpg");
}

.about-section .section-bg::after {
  background: linear-gradient(90deg, rgba(0, 13, 35, 0.18), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.1));
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(56.9375rem, 56.9375rem) minmax(33.125rem, 33.125rem);
  align-items: center;
  gap: 10.625rem;
  padding-top: var(--header-height);
}

.about-inner .primary-pill {
  margin-top: 2.9rem;
}

.metric-cloud {
  position: relative;
  width: 56.875rem;
  height: 43.25rem;
}

.metric-card {
  position: absolute;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 14.8125rem;
  min-height: 17.625rem;
  /* padding: 1.9rem 1rem 1.3rem; */
  border: 1px solid rgba(70, 192, 255, 1);
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 71, 135, 0.75) 0%, rgba(0, 0, 0, 0) 70%);
  box-shadow: inset 0 0 5px 2px rgba(255, 255, 255, 0.16);
}

.metric-card img {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.1rem;
  object-fit: contain;
}

.metric-card strong {
  font-size: 1.625rem;
  line-height: 1.3;
}

.metric-card span {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
}

.metric-founded {
  top: 0;
  left: 12.1875rem;
  z-index: 2;
  background: linear-gradient(rgba(8, 71, 135, 0.75) 0%, rgba(0, 0, 0, 0) 180%);
}

.metric-production {
  top: 15rem;
  left: 0;
}

.metric-business {
  top: 8.75rem;
  left: 25.625rem;
}

.metric-team {
  top: 13.125rem;
  left: 41.875rem;
}

.metric-layout {
  top: 25.625rem;
  left: 18.125rem;
}

.about-copy {
  /* padding-top: 5.3rem; */
}

/*.about-copy .section-text {
  max-width: none;
  white-space: nowrap;
}*/

@media (min-width: 981px) and (max-width: 1700px) {
  .about-inner {
    grid-template-columns: minmax(0, 56.9375rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .about-copy {
    min-width: 0;
  }

  .about-copy .section-text {
    max-width: 33rem;
    white-space: normal;
  }

  .about-copy .section-text br {
    display: none;
  }
}

.strength-section .section-bg {
  background-image: url("../image/sunlight-home/backgrounds/bg-05-strength-cover-1920x980.jpg");
}

.strength-section .section-bg::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 37, 88, 0.22), rgba(0, 0, 0, 0.28));
}

.strength-inner {
  display: grid;
  grid-template-columns: minmax(26rem, 52rem) minmax(28rem, 1fr);
  align-items: center;
  gap: clamp(1.6rem, 32px, 2rem);
  padding-top: var(--header-height);
  padding-bottom: 6rem;
}

.news-swiper {
  position: relative;
  width: 100%;
  height: min(40rem, 58vh);
  min-height: 32rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.news-content-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-content-swiper .swiper-wrapper {
  transition-timing-function: var(--ease-out);
}

.news-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
}

.news-media {
  position: relative;
  flex: 0 0 clamp(22rem, 45vh, 29.8rem);
  min-height: 0;
  overflow: hidden;
  padding: 1.35rem 1.6rem 0;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms var(--ease-out), filter 760ms var(--ease-out);
}

.news-slide:hover .news-media img,
.news-swiper:hover .swiper-slide-active .news-media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.news-progress {
  position: absolute;
  top: calc(clamp(18rem, 34vh, 25.8rem) - 2.25rem);
  right: 2.7rem;
  bottom: 1rem;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.news-line {
  display: block;
  width: clamp(1.6rem, 26px, 3rem);
  height: 0.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-line span {
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: #0053c4;
  transition: background 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.news-line span::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #3dcbfd;
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.72);
}

.news-line:hover span,
.news-line.is-active span {
  background: #0053c4;
}

.news-progress.is-running .news-line.is-active span::after {
  animation: progress-fill 3.6s linear forwards;
}

.factory-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(66, 188, 255, 0.62);
  border-radius: 0.5rem;
  background: rgba(0, 69, 126, 0.62);
  box-shadow: 0 0 2rem rgba(0, 135, 255, 0.22);
}

.factory-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem 1rem;
  align-content: center;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.35rem 1.6rem 1.55rem;
  background: rgba(0, 63, 122, 0.46);
}

.factory-copy strong {
  font-size: 22px;
  font-weight: 700;
}

.factory-copy time {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.factory-copy span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 24px;
}

.strength-list {
  display: grid;
  gap: clamp(1.35rem, 50px, 3.2rem);
  align-content: center;
}

.strength-item {
  position: relative;
  display: grid;
  gap: 0.72rem;
  min-height: clamp(7rem, 148px, 9.9rem);
  align-content: center;
  padding: clamp(1.55rem, 2vw, 2rem) clamp(1.45rem, 2.15vw, 2.35rem) clamp(1.2rem, 1.75vw, 1.7rem);
  border: 1px solid rgba(77, 188, 255, 0.48);
  border-radius: 1rem;
  background: rgba(11, 137, 254, 0.2);
  color: #fff;
  transition: ease-in-out 0.2s !important;
}

.strength-item:hover {
  border-color: rgba(121, 218, 255, 0.84);
  background: linear-gradient(180deg, rgba(0, 58, 166, 0.96), rgba(0, 111, 235, 0.86));
  box-shadow: inset 0 0 1.7rem rgba(0, 118, 255, 0.42);
}

.item-tag {
  position: absolute;
  top: -22px;
  left: 10px;
  display: inline-flex;
  /*width: 8.3125rem;*/
  min-height: 2.75rem;
  align-items: center;
  padding: 0 1.1875rem;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 18px;
  background: #0b67b4;
  box-shadow: inset 0px 0px 5px rgba(50, 50, 50, 0.75),
    0px 0px 0 rgba(255, 255, 255, 0.7);
}

.strength-item strong {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.strength-item span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.8rem, 0.86vw, 0.96rem);
  line-height: 1.72;
}

.strength-more {
  position: absolute;
  bottom: 12.75vh;
  left: 50%;
  transform: translateX(-50%) !important;
}

.strength-more:hover {
  transform: translate(-50%, -0.16rem);
}

.footer-section .section-bg {
  background-image: url("../image/sunlight-home/backgrounds/bg-06-footer-cover-1920x980.jpg");
  background-position: center;
}

.footer-section .section-bg::after {
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.2) 76%); */
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(36rem, 52rem) 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: var(--header-height);
}

.footer-main {
  display: grid;
  /* gap: 2.9rem; */
  align-content: center;
  position: absolute;
  bottom: 6.3vh;
}

.footer-logo {
  width: clamp(9rem, 12vw, 13.4rem);
  margin-bottom: 4.5rem;
}

.footer-columns {
  display: flex;
  /*grid-template-columns: repeat(6, minmax(4.8rem, 1fr));*/
  gap: 1.2rem;
  margin-bottom: 4.5rem;
}

.footer-column {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-column strong,
.footer-column .footer-column-title {
  margin-bottom: 0.45rem;
  font-weight: normal;
  color: #fff;
  font-size: 18px;
  line-height: normal;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 30px;
}

.footer-column a:hover,
.contact-line:hover {
  color: #ffffff;
}

.contact-line.is-reveal-settled:hover,
.contact-line.is-reveal-settled:focus-visible {
  transform: translateX(4px);
}

.footer-section .contact-line.is-reveal-settled {
  transition-property: color, transform, opacity, filter;
  transition-duration: 200ms;
  transition-timing-function: ease;
  transition-delay: 0ms;
}

.contact-list {
  display: grid;
  gap: 1.45rem;
  margin: 0;
  margin-bottom: 5.2rem;
  font-style: normal;
  -webkit-user-select: text;
  user-select: text;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 30px;
}

.contact-line img {
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.85rem;
  object-fit: contain;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 30px;
}

.footer-visual {
  min-height: 36rem;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  60% {
    transform: scale(1.5);
    opacity: 0.75;
  }

  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

@keyframes progress-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  :root {
    --page-x: clamp(1.4rem, 5vw, 4rem);
  }

  .product-inner,
  .strength-inner,
  .about-inner,
  .footer-inner {
    gap: 2.4rem;
  }

  /*.product-inner {
    grid-template-columns: minmax(0, 1fr) 22rem;
  }*/

  .solution-cards {
    width: min(72rem, 78vw);
  }
}

/* 摩托车页使用上下两行布局：产品卡片在上，车辆舞台填充剩余空间。 */
@media (min-width: 981px) {
  .product-inner-moto .product-visual {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-self: start;
    align-items: stretch;
    row-gap: clamp(1.5rem, 4vh, 3rem);
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    min-height: 0;
    padding: clamp(2rem, 5vh, 5rem) 0 clamp(3.5rem, 8vh, 6rem);
  }

  .product-inner-moto .chip-card {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    width: min(30rem, 70%);
    transform: none !important;
  }

  .product-inner-moto .product-stage {
    position: relative;
    top: auto;
    left: auto;
    align-self: stretch;
    justify-self: center;
    width: auto;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 686 / 521;
    transform: none;
  }
}

/* 窄而高的桌面窗口改为宽度约束，避免车辆舞台横向溢出。 */
@media (min-width: 981px) and (max-aspect-ratio: 4 / 3) {
  .product-inner-moto .product-stage {
    align-self: center;
    width: 76%;
    height: auto;
  }
}

/* 低高度桌面端适当收紧卡片，把更多剩余空间留给摩托车。 */
@media (min-width: 981px) and (max-height: 880px) {
  .product-inner-moto .chip-card {
    padding: 0.9rem 1.25rem;
  }

  .product-inner-moto .chip-card strong {
    margin-bottom: 0.65rem;
    font-size: 16px;
  }

  .product-inner-moto .chip-list img {
    width: 4rem;
    height: 3.25rem;
  }

  .product-inner-moto .chip-list {
    height: 4rem;
  }
}


/* 桌面端由文字内容确定底部高度，图片弹性填充剩余空间，避免长标题互相挤压。 */
@media (min-width: 981px) {
  .news-media {
    flex: 1 1 auto;
  }

  .factory-copy {
    flex: 0 0 auto;
    align-content: start;
    padding: 1.8rem 1.35rem 1rem;
  }

  .news-swiper.is-copy-height-synced .factory-copy {
    flex-basis: var(--news-copy-height);
  }

  .news-swiper.is-progress-anchored .news-progress {
    top: calc(var(--news-progress-top) + 0.35rem);
    bottom: auto;
  }
}

/* 极低高度桌面端保持整屏结构，同时为固定字号内容预留安全空间。 */
@media (min-width: 981px) and (max-height: 600px) {
  .about-section .metric-cloud {
    transform: scale(0.9);
    transform-origin: left center;
  }
}
/* 极低高度桌面端第二屏解决方案行高适配。 */
@media (min-width: 981px) and (max-height: 600px) {
  .solution-card span {
    line-height: 20px;
  }
  .solution-card strong{
    font-size:20px;
  }
}

/* 成功案例在短屏下拉伸右栏，并为左侧按钮预留独立空间。 */
@media (min-width: 981px) and (max-height: 650px) {
  .strength-inner {
    padding-top: 80px;
    padding-bottom: 1rem;
  }

  .news-swiper {
    height: min(31rem, 68vh);
    min-height: 0;
  }

  .strength-list {
    align-self: stretch;
    align-content: space-between;
    gap: 0;
    padding: 2rem 0 1rem;
  }

  .strength-item {
    min-height: 0;
    padding-top: 1rem;
    padding-bottom: 0.85rem;
  }

  .strength-more {
    bottom: 1rem;
  }
}

/* Footer 固定字号较多，需要在稍高的短屏区间提前收紧，避免侵入 Header。 */
@media (min-width: 981px) and (max-height: 680px) {
  .footer-inner {
    align-items: start;
    padding-top: 0;
  }

  .footer-main {
    top: calc(80px + 1rem);
    /*bottom: auto;*/
  }

  .footer-columns {
    margin-bottom: 1.5rem;
  }

  .footer-column {
    gap: 0.3rem;
  }

  .footer-column strong,
  .footer-column .footer-column-title {
    margin-bottom: 0.25rem;
    font-size: 20px;
    line-height: 1.35;
  }

  .footer-column a {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-list {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .contact-line {
    font-size: 16px;
    line-height: 24px;
  }

  .footer-note {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 980px) {

  html,
  body {
    overflow: auto;
    overflow-x: hidden;
  }

  .home-fullpage {
    height: auto;
    overflow: visible;
    perspective: none;
  }

  .home-fullpage,
  .home-fullpage>.swiper-wrapper,
  .page-section,
  .feature-swiper,
  .feature-swiper>.swiper-wrapper,
  .feature-swiper .swiper-slide {
    height: auto;
  }

  .home-fullpage>.swiper-wrapper {
    display: block;
    height: max-content;
    transform: none !important;
  }

  .page-section {
    height: max-content !important;
    min-height: auto;
    overflow: hidden;
  }

  .home-fullpage .page-section,
  .home-fullpage .page-section:not(.swiper-slide-active) {
    opacity: 1 !important;
    transform: none !important;
  }

  .section-inner {
    width: min(100% - 2rem, 48rem);
    height: auto;
    min-height: 0;
  }

  .hero-map {
    display: none;
  }

  .news-content-swiper {
    height: auto;
  }

  .contact-line {
    width: 100%;
  }

  .contact-line span {
    overflow-wrap: anywhere;
  }

  .footer-visual {
    display: none;
  }

  /* 首页移动端以 750px 设计稿为基准，保持现有 980px 断点。 */
  :root {
    --mobile-page-x: clamp(1.25rem, 2.67vw, 1.75rem);
    font-size: 16px !important;
  }

  body {
    background: #000;
  }

  .home-fullpage,
  .home-fullpage>.swiper-wrapper {
    width: 100%;
  }

  .section-bg,
  .solution-bg {
    transform: none;
  }

  .page-section.is-active .section-bg,
  .page-section.is-active .swiper-slide-active .solution-bg {
    transform: none;
  }

  .home-fullpage [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .home-fullpage .chip-card[data-aos] {
    transform: translateX(-50%) !important;
  }

  .section-inner {
    width: calc(100% - (var(--mobile-page-x) * 2));
    max-width: none;
  }

  .hero-section {
    height: 78.27vw !important;
    min-height: 31rem;
  }

  .hero-section .section-bg {
    background-position: 55% center;
    background-size: cover;
    object-position: right bottom;
  }

  .hero-inner {
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 100%;
    padding: 0 2.67vw 7.73vw 8.53vw;
  }

  .hero-kicker {
    width: clamp(4.9rem, 13.87vw, 7.5rem);
    margin-bottom: 0.45rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6.4vw, 3.5rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    margin-top: 0.35rem;
    font-size: clamp(1rem, 3.47vw, 1.8rem);
    line-height: 1.42;
  }

  .primary-pill {
    min-width: clamp(7.2rem, 15.47vw, 9rem);
    min-height: clamp(2.35rem, 5.47vw, 3rem);
    margin-top: clamp(0.9rem, 3.2vw, 1.6rem);
    /*padding: 0 1.2rem;*/
    font-size: clamp(0.88rem, 2.4vw, 1.05rem);
  }

  .products-section {
    height: 114.27vw !important;
    min-height: 45rem;
  }

  .products-section .feature-swiper,
  .products-section .feature-swiper>.swiper-wrapper,
  .products-section .feature-swiper .product-slide {
    height: 100%;
  }

  .product-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
  }

  .product-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .chip-card {
    position: absolute;
    top: 6.93vw;
    left: 50%;
    z-index: 12;
    width: 62.67vw;
    max-width: 38rem;
    min-width: 0;
    padding: clamp(0.72rem, 2.67vw, 1.35rem) clamp(0.9rem, 3.2vw, 1.6rem);
    transform: translateX(-50%) !important;
  }

  .chip-card strong {
    margin-bottom: clamp(0.55rem, 1.87vw, 1rem);
    font-size: clamp(0.9rem, 2.4vw, 1.2rem);
  }

  .chip-list {
    gap: clamp(1.4rem, 5vw, 3.5rem);
    justify-content: space-around;
    height: clamp(2.35rem, 7.47vw, 4rem);
  }

  .chip-list img {
    width: clamp(3rem, 10.67vw, 5.4rem);
    height: clamp(2.35rem, 7.47vw, 4rem);
  }

  .product-stage,
  .product-inner-moto .product-stage {
    position: absolute;
    display: block;
    left: 50%;
    top: 35.2vw;
    width: 68.67vw;
    max-width: 42rem;
    min-height: 0;
    overflow: visible;
    transform: translateX(-50%);
  }

  .product-stage {
    aspect-ratio: 858 / 362;
  }

  .product-inner-moto .product-stage {
    top: 27.2vw;
    width: 55vw;
    max-width: 34rem;
    aspect-ratio: 686 / 521;
  }

  .vehicle-image,
  .vehicle-moto {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: none;
  }

  .hotspot {
    --hotspot-size: clamp(0.25rem, 0.8vw, 0.5rem);
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    margin: calc(var(--hotspot-size) * -0.5) 0 0 calc(var(--hotspot-size) * -0.5);
  }

  .hotspot::before {
    box-shadow:
      0 0 calc(var(--hotspot-size) * 1.25) calc(var(--hotspot-size) * 0.55) rgba(224, 255, 0, 0.25);
  }

  .hotspot:hover::after,
  .hotspot.is-active::after {
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    box-shadow:
      0 0 1px calc(var(--hotspot-size) * 0.8) rgba(224, 255, 0, 0.25),
      0 0 1px calc(var(--hotspot-size) * 1.6) rgba(224, 255, 0, 0.25);
  }

  .product-inner-right {
    position: absolute;
    top: 74.27vw;
    right: var(--mobile-page-x);
    left: var(--mobile-page-x);
    display: block;
    height: auto;
    padding: 0;
    background: transparent;
  }

  .product-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6vw;
    width: 100%;
  }

  .image-panel {
    border-radius: 0.25rem;
  }

  .image-panel img {
    aspect-ratio: 228 / 149;
  }

  .products-section .switch-wrap {
    position: absolute;
    right: var(--mobile-page-x);
    bottom: 6.4vw;
    left: var(--mobile-page-x);
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .switch-progress,
  .solution-switch .switch-progress,
  .products-section .switch-progress {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8vw;
  }

  .switch-dot {
    gap: 0.35rem;
  }

  .switch-num {
    font-size: clamp(0.86rem, 2.4vw, 1.15rem);
  }

  .switch-text {
    font-size: clamp(0.88rem, 2.67vw, 1.25rem);
  }

  .solutions-section {
    height: 135.2vw !important;
    min-height: 54rem;
  }

  .solutions-section .feature-swiper,
  .solutions-section .feature-swiper>.swiper-wrapper,
  .solutions-section .feature-swiper .solution-slide {
    height: 100%;
  }

  .solution-bg {
    background-position: center;
    background-size: cover;
  }

  .solution-inner {
    align-items: stretch;
    justify-content: flex-start;
    width: calc(100% - (var(--mobile-page-x) * 2));
    min-height: 100%;
    padding: 6.93vw 0 22vw;
  }

  .solution-title {
    width: 100%;
    margin-bottom: 4.8vw;
    font-size: clamp(1.8rem, 5.33vw, 3rem);
    text-align: center;
  }

  .solution-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.2vw;
    width: 100%;
  }

  .solution-card {
    display: grid;
    grid-template-columns: 47% 53%;
    min-height: 0;
    aspect-ratio: 710 / 216;
    border-radius: 0.5rem;
  }

  .solution-card img {
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    margin: 0.4rem;
    aspect-ratio: auto;
  }

  .solution-card>div {
    justify-content: center;
    min-width: 0;
  }

  .solution-card strong {
    margin: 0 1rem;
    font-size: clamp(0.95rem, 3.2vw, 1.5rem);
  }

  .solution-card span {
    margin: 0.45rem 1rem 0;
    font-size: clamp(0.72rem, 2.4vw, 1rem);
    line-height: 1.45;
  }

  .solution-switch {
    position: absolute;
    right: var(--mobile-page-x);
    bottom: 6.4vw;
    left: var(--mobile-page-x);
    width: auto;
    margin: 0;
  }

  .about-section {
    height: 131.47vw !important;
    min-height: 52rem;
  }

  .about-section .section-bg {
    background-position: center;
    background-size: cover;
  }

  .about-inner {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 0;
  }

  .metric-cloud {
    position: relative;
    width: 100%;
    height: 79.2vw;
    min-height: 31rem;
  }

  .metric-card,
  .metric-founded,
  .metric-production,
  .metric-business,
  .metric-team,
  .metric-layout {
    position: absolute;
    width: 24.67vw;
    min-height: 29.33vw;
    padding: 0.75rem 0.35rem;
    border-radius: 0.6rem;
  }

  .metric-card img {
    width: clamp(1.5rem, 5.33vw, 2.6rem);
    height: clamp(1.5rem, 5.33vw, 2.6rem);
    margin-bottom: 0.45rem;
  }

  .metric-card strong {
    font-size: clamp(0.82rem, 2.93vw, 1.25rem);
  }

  .metric-card span {
    margin-top: 0.3rem;
    font-size: clamp(0.62rem, 2.13vw, 0.92rem);
    line-height: 1.4;
  }

  .metric-founded {
    top: 12.8vw;
    left: 23.2vw;
  }

  .metric-production {
    top: 32.8vw;
    left: 2.67vw;
  }

  .metric-business {
    top: 20vw;
    left: 45.73vw;
  }

  .metric-team {
    top: 30.53vw;
    left: 72.67vw;
  }

  .metric-layout {
    top: 50vw;
    left: 33.47vw;
  }

  .about-copy {
    width: calc(100% - (var(--mobile-page-x) * 2));
    margin: 4vw auto 0;
  }

  .about-copy .section-title {
    font-size: clamp(1.8rem, 5.33vw, 3rem);
  }

  .about-copy .section-text {
    margin-top: 1.4vw;
    font-size: clamp(0.74rem, 2.4vw, 1.05rem);
    line-height: 1.7;
    white-space: normal;
  }

  .about-copy .section-text br {
    display: none;
  }

  .about-inner .primary-pill {
    margin-top: 3.2vw;
  }

  .strength-section {
    height: 161.07vw !important;
    min-height: 62rem;
  }

  .strength-section .section-bg {
    background-position: center;
    background-size: cover;
  }

  .strength-inner {
    display: block;
    width: calc(100% - (var(--mobile-page-x) * 2));
    min-height: 100%;
    padding: 6.4vw 0 5.33vw;
  }

  .news-swiper {
    width: 100%;
    height: 54vw;
    min-height: 23.5rem;
    border-radius: 0.55rem;
  }

  .news-media {
    flex-basis: 32vw;
    padding: 2.67vw 2.67vw 0;
  }

  .factory-copy {
    align-content: start;
    gap: 0.25rem 0.8rem;
    padding: 2.13vw 2.67vw 3.47vw;
  }

  .factory-copy strong {
    font-size: clamp(0.95rem, 3.2vw, 1.4rem);
  }

  .factory-copy time {
    font-size: clamp(0.7rem, 2.13vw, 0.92rem);
  }

  .factory-copy span {
    font-size: clamp(0.72rem, 2.4vw, 1rem);
    line-height: 1.5;
  }

  .news-progress {
    top: 29.2vw;
    right: 5.33vw;
    bottom: auto;
  }

  .strength-list {
    gap: 4.8vw;
    margin-top: 6vw;
  }

  .strength-item {
    min-height: 20.8vw;
    gap: 0.35rem;
    padding: 4.8vw 4vw 3.2vw;
    border-radius: 0.7rem;
  }

  .item-tag {
    top: -3.2vw;
    left: 1.6vw;
    width: auto;
    min-width: 17.87vw;
    min-height: 6.4vw;
    padding: 0 2.67vw;
    border-radius: 0.4rem;
    font-size: clamp(0.72rem, 2.4vw, 1rem);
  }

  .strength-item strong {
    font-size: clamp(0.95rem, 3.2vw, 1.4rem);
  }

  .strength-item span:last-child {
    font-size: clamp(0.7rem, 2.4vw, 1rem);
    line-height: 1.55;
  }

  .strength-more {
    display: none;
  }

  .footer-section {
    height: 109.6vw !important;
    min-height: 43rem;
  }

  .footer-section .section-bg {
    background-position: center bottom;
    background-size: cover;
  }

  .footer-inner {
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 0;
  }

  .footer-main {
    position: static;
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 8vw var(--mobile-page-x) 4vw;
  }

  .footer-logo {
    width: 24.27vw;
    margin: 0 0 5.33vw;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1rem, 4vw, 2rem);
    row-gap: clamp(1.25rem, 3.2vw, 2rem);
    margin-bottom: 6.4vw;
  }

  .footer-column {
    gap: 0.35rem;
  }

  .footer-column strong,
  .footer-column .footer-column-title {
    margin-bottom: 0.35rem;
    font-size: clamp(0.62rem, 2.4vw, 1rem);
    white-space: nowrap;
  }

  .footer-column a {
    font-size: clamp(0.55rem, 2.13vw, 0.86rem);
    line-height: 1.35;
  }

  .contact-list {
    gap: 2.67vw;
    margin-bottom: 7vw;
  }

  .contact-line {
    font-size: clamp(0.72rem, 2.67vw, 1rem);
    line-height: 1.5;
  }

  .contact-line img {
    width: clamp(1.2rem, 3.73vw, 1.65rem);
    height: clamp(1.2rem, 3.73vw, 1.65rem);
    margin-right: 0.6rem;
  }

  .footer-note {
    font-size: clamp(0.62rem, 2.13vw, 0.86rem);
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 0;
  }

  .hero-inner {
    width: 100%;
    padding-right: 2.67vw;
    padding-left: 8.53vw;
  }

  .hero-title {
    font-size: 8.53vw;
    line-height: 1.08;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 3.47vw;
    white-space: nowrap;
  }

  .hero-inner .primary-pill {
    min-width: 15.47vw;
    min-height: 5.47vw;
    padding: 0 3.2vw;
    font-size: 2.4vw;
  }

  .products-section,
  .solutions-section,
  .about-section,
  .strength-section,
  .footer-section {
    min-height: 0;
  }

  .footer-section {
    height: auto !important;
    min-height: max(34rem, 109.6vw);
  }

  .strength-section {
    height: auto !important;
  }

  .metric-cloud {
    min-height: 0;
  }

  .news-swiper {
    height: auto;
    min-height: 0;
  }

  .product-inner-moto .product-stage {
    width: 58vw;
  }

  .chip-card {
    width: 62.67vw;
    padding: 2.67vw 3.2vw;
  }

  .product-stage,
  .product-inner-moto .product-stage {
    min-height: 0;
  }

  .vehicle-image,
  .vehicle-moto {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
  }

  .product-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6vw;
  }

  .image-panel img {
    aspect-ratio: 228 / 149;
  }

  .solution-card span {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }

  .solution-card strong {
    margin: 0 0.75rem;
  }

  .about-copy .section-title {
    font-size: 5.33vw;
  }

  .strength-item {
    min-height: 20.8vw;
    padding: 4.8vw 4vw 3.2vw;
  }

  .footer-inner {
    padding-bottom: 0;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 5.33vw;
    row-gap: 5.33vw;
  }

  .footer-column a {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-aos^="fade"][data-aos^="fade"] {
    transform: none !important;
  }

  [data-aos] {
    transition-duration: 260ms !important;
  }

  .hotspot::before {
    animation-duration: 3s;
  }
}


