.hero {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-white);
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.hero-swiper.is-dragging {
  cursor: grabbing;
}

.hero-swiper .swiper-wrapper {
  display: flex;
  height: 100%;
  will-change: transform;
}

.hero-swiper .swiper-slide {
  min-width: 0;
  height: 100%;
  flex: 0 0 100%;
}

.hero-slide {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero-slide > .container {
  position: absolute;
  top: 45%;
  right: 0;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-media,
.hero-media img {
  display: block;
  width: 100%;
}

.hero-media {
  height: 100vh;
  height: 100svh;
}

.hero-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  --hero-copy-transform-enter: translateY(54px);
  --hero-copy-transform-active: translateY(0);
  position: absolute;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  pointer-events: auto;
  z-index: 1;
  opacity: 0;
  transform: var(--hero-copy-transform-enter);
}

.hero-copy--left {
  --hero-copy-transform-enter: translateY(calc(-50% + 54px));
  --hero-copy-transform-active: translateY(-50%);
  top: 50%;
  left: 0;
  width: min(68vw, 1100px);
  min-height: 350px;
  padding: 62px 132px 78px clamp(56px, 6vw, 120px);
  align-items: flex-start;
  background: linear-gradient(
    90deg,
    rgba(236, 240, 245, 0.9) 0%,
    rgba(236, 240, 245, 0.9) 36%,
    rgba(236, 240, 245, 0.74) 54%,
    rgba(236, 240, 245, 0.28) 72%,
    rgba(236, 240, 245, 0) 100%
  );
}

.hero-copy--center {
  --hero-copy-transform-enter: translateX(-50%) translateY(calc(-50% + 54px));
  --hero-copy-transform-active: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  width: min(72vw, 1180px);
  min-height: 420px;
  padding: 92px 96px 72px;
  align-items: center;
  text-align: center;
  transform: var(--hero-copy-transform-enter);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(247, 249, 252, 0.22) 100%);
  box-shadow: 0 18px 42px rgba(34, 48, 72, 0.12);
  backdrop-filter: blur(6px);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(42px);
}

.hero-copy h1 {
  margin: 0;
  color: #151f2d;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy--left h1 {
  position: relative;
  max-width: 680px;
  padding-left: 18px;
}

.hero-copy--center h1 {
  max-width: 860px;
}

.hero-lead {
  margin: 26px 0 0;
  color: #485465;
  font-size: 16px;
  line-height: 1.95;
}

.hero-copy--left .hero-lead {
  max-width: 560px;
  padding-left: 18px;
}

.hero-copy--center .hero-lead {
  max-width: 800px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 46px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #d80c18 0%, #b30712 100%);
  box-shadow: 0 16px 34px rgba(216, 12, 24, 0.22);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hero-copy--left .hero-cta {
  margin-left: 18px;
}

.hero-copy--center .hero-cta {
  margin-right: auto;
  margin-left: auto;
}

.hero-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(216, 12, 24, 0.28);
  filter: saturate(1.06);
}

.hero-slide.is-hero-entering .hero-copy {
  animation: heroCopyMaskRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-hero-entering .hero-copy h1 {
  animation: heroCopyContentRise 0.72s 0.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-hero-entering .hero-copy .hero-lead {
  animation: heroCopyContentRise 0.72s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-hero-entering .hero-copy .hero-cta {
  animation: heroCopyContentRise 0.72s 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroCopyMaskRise {
  from {
    opacity: 0;
    transform: var(--hero-copy-transform-enter);
  }

  to {
    opacity: 1;
    transform: var(--hero-copy-transform-active);
  }
}

@keyframes heroCopyContentRise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(21, 31, 45, 0.28);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: rgba(21, 31, 45, 0.5);
}

.hero-swiper-prev {
  left: 24px;
}

.hero-swiper-next {
  right: 24px;
}

.hero-swiper-prev::before,
.hero-swiper-next::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.hero-swiper-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.hero-swiper-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.hero-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  bottom: 24px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--color-brand);
}

.industries-section {
  background: var(--color-white);
}

.industry-solution {
  display: grid;
  grid-template-columns: 20vw minmax(0, 1fr);
  align-items: stretch;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 253, 0.98) 100%);
  box-shadow: 0 18px 46px rgba(25, 40, 61, 0.08);
}

.industry-solution-nav {
  display: flex;
  justify-content: center;
  padding: 48px 0 48px 10vw;
  flex-direction: column;
  gap: 10px;
  background: #f6f7fb;
}

.industry-solution-tab {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  color: #1e2a39;
  background: transparent;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.industry-solution-tab.is-active {
  color: var(--color-white);
  background: linear-gradient(135deg, #d80c18 0%, #b30712 100%);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(45, 96, 211, 0.22);
}

.industry-solution-panels {
  position: relative;
  min-height: 640px;
}

.industry-solution-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 0 0 0 54px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.industry-solution-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.industry-solution-copy {
  display: flex;
  position: relative;
  z-index: 2;
  width: min(62%, 720px);
  padding: 0 0 0;
  flex-direction: column;
  justify-content: center;
}

.industry-solution-copy h3 {
  margin: 0;
  color: #173053;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.2;
  font-weight: 500;
}

.industry-solution-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #5b6d85;
  font-size: 18px;
  line-height: 1.9;
}

.industry-solution-tags {
  display: flex;
  max-width: 620px;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 22px 30px;
}

.industry-solution-tags span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  gap: 10px;
  justify-content: center;
  color: #303b4c;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.industry-solution-tag-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.industry-solution-actions {
  display: flex;
  margin-top: 52px;
  gap: 34px;
  flex-wrap: wrap;
}

.industry-solution-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.industry-solution-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d80c18 0%, #b30712 100%);
  box-shadow: 0 16px 30px rgba(216, 12, 24, 0.2);
}

.industry-solution-secondary {
  border: 1px solid rgba(92, 103, 121, 0.56);
  color: #596273;
  background: rgba(255, 255, 255, 0.56);
}

.industry-solution-actions a:hover {
  transform: translateY(-2px);
}

.industry-solution.is-copy-ready .industry-solution-copy h3,
.industry-solution.is-copy-ready .industry-solution-copy p,
.industry-solution.is-copy-ready .industry-solution-tags,
.industry-solution.is-copy-ready .industry-solution-actions {
  opacity: 0;
  transform: translateY(28px);
}

.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-copy h3,
.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-copy p,
.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-tags,
.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-actions {
  animation: industryCopySlideUp 0.64s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-copy p {
  animation-delay: 70ms;
}

.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-tags {
  animation-delay: 140ms;
}

.industry-solution.is-copy-ready .industry-solution-panel.is-copy-visible .industry-solution-actions {
  animation-delay: 210ms;
}

@keyframes industryCopySlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-solution.is-copy-ready .industry-solution-copy h3,
  .industry-solution.is-copy-ready .industry-solution-copy p,
  .industry-solution.is-copy-ready .industry-solution-tags,
  .industry-solution.is-copy-ready .industry-solution-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.industry-solution-primary:hover {
  box-shadow: 0 20px 36px rgba(216, 12, 24, 0.26);
}

.industry-solution-secondary:hover {
  border-color: rgba(216, 12, 24, 0.48);
  color: var(--color-brand);
  background: rgba(255, 255, 255, 0.82);
}

.industry-solution-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(100%, 46%, 540px);
  overflow: hidden;
}

.industry-solution-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(247, 250, 255, 0.98) 0%,
    rgba(247, 250, 255, 0.92) 12%,
    rgba(247, 250, 255, 0.72) 28%,
    rgba(247, 250, 255, 0.22) 54%,
    rgba(247, 250, 255, 0) 76%
  );
  content: "";
}

.industry-solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.industry-solution-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.industry-intro-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(104, 142, 214, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.industry-intro-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #7a879a;
}

.industry-intro-tabs {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 26px;
}

.industry-intro-tabs span {
  position: relative;
  margin: 0 50px;
  padding-bottom: 12px;
  color: #7d8796;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  transition: color 0.22s ease;
}

.industry-intro-tabs span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(202, 211, 224, 0.8);
  content: "";
}

.industry-intro-tabs .is-active {
  color: var(--color-brand);
}

.industry-intro-tabs .is-active::after {
  background: var(--color-brand);
}

.industry-intro-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: center;
  margin-top: 42px;
}

.industry-intro-cloud {
  --intro-cloud-from-x: 0;
  --intro-cloud-to-x: 0;
  opacity: 0.9;
}

.industry-intro-cloud img {
  display: block;
  width: 100%;
  height: auto;
}

.industry-intro-cloud-left {
  --intro-cloud-from-x: -148px;
  --intro-cloud-to-x: -18px;
  transform: translateX(var(--intro-cloud-to-x));
}

.industry-intro-cloud-right {
  --intro-cloud-from-x: 148px;
  --intro-cloud-to-x: 18px;
  transform: translateX(var(--intro-cloud-to-x));
}

.industry-intro-stage.is-switching .industry-intro-cloud-left,
.industry-intro-stage.is-switching .industry-intro-cloud-right {
  animation: industryIntroCloudIn 1.35s cubic-bezier(0.16, 0.82, 0.2, 1) both;
}

@keyframes industryIntroCloudIn {
  from {
    opacity: 0;
    transform: translateX(var(--intro-cloud-from-x)) scale(0.82);
  }

  58% {
    opacity: 0.56;
    transform: translateX(calc(var(--intro-cloud-to-x) * 0.35)) scale(1.03);
  }

  to {
    opacity: 0.9;
    transform: translateX(var(--intro-cloud-to-x)) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-intro-stage.is-switching .industry-intro-cloud-left,
  .industry-intro-stage.is-switching .industry-intro-cloud-right {
    animation: none;
  }
}

.industry-intro-focus {
  position: relative;
  min-height: clamp(340px, 32vw, 450px);
  max-width: 620px;
  justify-self: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(224, 231, 240, 0.96);
  border-radius: 10px;
  box-shadow: 0 24px 56px rgba(25, 40, 61, 0.16);
  transform: translateY(-4px);
}

.industry-intro-focus-media {
  height: 100%;
  min-height: clamp(340px, 32vw, 450px);
  background: linear-gradient(180deg, #f7fafe 0%, #eef3fb 100%);
}

.industry-intro-video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.industry-intro-focus-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-intro-video::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 30, 0.08);
  pointer-events: none;
  content: "";
}

.industry-intro-video:hover img {
  transform: scale(1.03);
}

.industry-intro-video img {
  transition: transform 0.25s ease;
}

.company-video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  transform: translate(-50%, -50%);
}

.company-video-play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #202733;
  content: "";
  transform: translate(-40%, -50%);
}

.company-video-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.company-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.company-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.72);
}

.company-video-dialog {
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 16 / 9;
  background: #0b111d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.company-video-player {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b111d;
  object-fit: contain;
}

.company-video-close {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.company-video-close::before,
.company-video-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1f2937;
  content: "";
}

.company-video-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.company-video-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.industry-intro-focus-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 0;
  padding: 22px 30px 28px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 -18px 38px rgba(25, 40, 61, 0.08);
  transform: translateY(calc(100% - 72px));
  transition: transform 0.28s ease;
}

.industry-intro-focus-copy strong {
  color: #203354;
  font-size: 24px;
  font-weight: 700;
}

.industry-intro-focus-copy p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #637188;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.industry-intro-focus-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 42px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, #d80c18 0%, #b30712 100%);
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.22s ease;
}

.industry-intro-focus:hover .industry-intro-focus-copy,
.industry-intro-focus:focus-within .industry-intro-focus-copy,
.industry-intro-focus:focus .industry-intro-focus-copy {
  transform: translateY(0);
}

.industry-intro-focus:hover .industry-intro-focus-copy p,
.industry-intro-focus:hover .industry-intro-focus-copy a,
.industry-intro-focus:focus-within .industry-intro-focus-copy p,
.industry-intro-focus:focus-within .industry-intro-focus-copy a,
.industry-intro-focus:focus .industry-intro-focus-copy p,
.industry-intro-focus:focus .industry-intro-focus-copy a {
  opacity: 1;
  transform: translateY(0);
}

.industry-intro-focus-copy a:hover {
  box-shadow: 0 16px 30px rgba(216, 12, 24, 0.22);
}

.local-service-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
}

.local-service-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 34px auto 0;
  text-align: center;
}

.local-service-stats strong {
  display: block;
  color: var(--color-brand);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  font-weight: 500;
}

.local-service-stats span {
  display: block;
  margin-top: 10px;
  color: #79849a;
  font-size: 17px;
}

.local-service-map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.local-service-awards {
  margin-top: -12px;
}

.local-service-awards-title {
  margin: 80px 0;
  padding: 0 10px;
  text-align: center;
  font-weight: normal;
}

.local-service-awards-carousel {
  overflow: hidden;
  padding: 0 5vw;
}

.local-service-awards-track {
  display: flex;
  width: max-content;
  animation: localServiceAwardsScroll 34s linear infinite;
}

.local-service-awards-carousel:hover .local-service-awards-track {
  animation-play-state: paused;
}

.local-service-awards-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.local-service-award-card {
  position: relative;
  flex: 0 0 316px;
  width: 316px;
  min-height: 278px;
  aspect-ratio: 316 / 278;
  padding: 18px 28px 16px;
  background: url("/assets/home/service-award-bg.png") center center / 100% 100% no-repeat;
}

.local-service-award-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 86px 30px 18px;
  text-align: center;
}

.local-service-award-copy strong {
  color: #d51d18;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.local-service-award-copy span {
  margin-top: 6px;
  color: #3b4048;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.local-service-award-copy em {
  margin-top: auto;
  padding-bottom: 8px;
  color: #172233;
  font-size: 28px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}

@keyframes localServiceAwardsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.products-section {
  background: var(--color-light);
}

.product-accordion {
  display: flex;
  gap: 24px;
  min-height: 560px;
  padding: 0 5vw;
}

.product-card {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(22, 29, 39, 0.18) 0%, rgba(22, 29, 39, 0.88) 100%),
    url("/assets/home/products/1-钉铛.webp") center / cover no-repeat,
    linear-gradient(145deg, #f5f7fa 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(216, 12, 24, 0.09);
  cursor: pointer;
  transition:
    flex 0.36s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:nth-child(2) {
  background: url("/assets/home/products/2-大雄.webp") center / cover no-repeat;
}

.product-card:nth-child(3) {
  background: url("/assets/home/products/3-擎添.webp") center / cover no-repeat;
}

.product-card:nth-child(4) {
  background: url("/assets/home/products/4-粨宝袋.webp") center / cover no-repeat;
}

.product-card:nth-child(5) {
  background: url("/assets/home/products/5-时光基.webp") center / cover no-repeat;
}

.product-card:nth-child(2) {
  background-position: 58% center;
}

.product-card:nth-child(3) {
  background-position: 68% center;
}

.product-card:nth-child(4) {
  background-position: 78% center;
}

.product-card:nth-child(5) {
  background-position: 88% center;
}

.product-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(216, 12, 24, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(19, 28, 42, 0.58), rgba(19, 28, 42, 0.18));
  opacity: 0.72;
  content: "";
}

.product-card.is-active {
  flex: 2.35 1 0;
  box-shadow: 0 22px 54px rgba(216, 12, 24, 0.16);
}

.product-card:focus {
  outline: 3px solid rgba(216, 12, 24, 0.28);
  outline-offset: 3px;
}

.product-tag,
.product-card h3,
.product-detail {
  position: relative;
  z-index: 1;
}

.product-tag {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.product-card h3 {
  min-height: 90px;
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
}

.product-detail {
  max-width: 520px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition:
    max-height 0.32s ease,
    opacity 0.24s ease,
    transform 0.24s ease;
}

.product-card.is-active .product-detail {
  max-height: 290px;
  opacity: 1;
  transform: translateY(0);
}

.product-detail p {
  margin: 6px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.product-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.product-detail li::before {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
  content: "";
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.product-actions a:first-child {
  border-color: var(--color-brand);
  background: var(--color-brand);
}

.news-home-heading {
  margin-bottom: 48px;
}

.news-home-heading .section-title {
  font-weight: 800;
}

.news-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 10px;
}

.news-showcase-content {
  display: contents;
}

.home-news-loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  min-height: 540px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #687385;
  background: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
}

.home-news-loading[hidden] {
  display: none;
}

.home-news-loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(216, 12, 24, 0.18);
  border-top-color: var(--color-brand);
  border-radius: 50%;
  animation: homeNewsLoadingSpin 0.8s linear infinite;
}

@keyframes homeNewsLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

.home-news-error {
  display: flex;
  min-height: 540px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: #687385;
  text-align: center;
}

.home-news-error p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.home-news-retry {
  min-width: 112px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  background: var(--color-brand);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.home-news-retry:hover {
  background: #b30712;
}

.news-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.news-showcase-grid--partial {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.home-news-empty {
  margin: 0;
  color: #667085;
  font-size: 16px;
  text-align: center;
}

.news-showcase-side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.news-showcase-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-showcase-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.news-showcase-card {
  min-width: 0;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(209, 219, 233, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(29, 41, 64, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 12, 24, 0.2);
  box-shadow: 0 24px 56px rgba(29, 41, 64, 0.12);
}

.news-showcase-card a {
  transition: color 0.2s ease;
}

.news-showcase-card a:hover {
  color: var(--color-brand);
}

.news-showcase-card-feature {
  flex-direction: column;
}

.news-showcase-card-feature .news-showcase-body {
  padding: 30px 32px 18px;
}

.news-showcase-card-feature .news-showcase-image {
  aspect-ratio: 3.2 / 1;
  margin: 0 18px 18px;
  border-radius: 20px;
}

.news-showcase-card-split {
  min-height: 252px;
}

.news-showcase-card-split .news-showcase-body {
  flex: 1 1 52%;
  padding: 26px 22px 24px 24px;
}

.news-showcase-card-split .news-showcase-image {
  flex: 0 0 40%;
  min-height: 100%;
}

.news-showcase-card-compact .news-showcase-body {
  min-height: 230px;
  padding: 24px 22px;
}

.news-showcase-card-horizontal {
  min-height: 232px;
}

.news-showcase-card-horizontal .news-showcase-body {
  flex: 1 1 58%;
  padding: 28px 28px 26px;
}

.news-showcase-card-horizontal .news-showcase-image {
  flex: 0 0 36%;
}

.news-showcase-card-accent {
  background:
    radial-gradient(circle at 100% 0, rgba(216, 12, 24, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.96);
}

.news-showcase-body {
  display: flex;
  flex-direction: column;
}

.news-showcase-kicker {
  margin-top: 26px;
  color: #1b2330;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 800;
}

.news-showcase-body h3 {
  margin: 18px 0 0;
  color: #243244;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.48;
  font-weight: 700;
}

.news-showcase-card-feature .news-showcase-body h3 {
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.42;
}

.news-showcase-card-compact .news-showcase-body h3,
.news-showcase-card-horizontal .news-showcase-body h3 {
  font-size: clamp(19px, 1.45vw, 28px);
}

.news-showcase-body h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-showcase-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 16px 0 0;
  color: #6f7c8e;
  font-size: 14px;
  line-height: 1.8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-showcase-meta {
  margin-top: auto;
  padding-top: 22px;
  color: #98a3b5;
  font-size: 13px;
  line-height: 1.6;
}

.news-showcase-image {
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(225, 233, 244, 0.95), rgba(243, 247, 252, 0.92));
}

.news-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-showcase-card:hover .news-showcase-image img {
  transform: scale(1.04);
}

.news-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 116px;
  height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(216, 12, 24, 0.24);
  border-radius: 999px;
  color: var(--color-brand);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.news-showcase-link::after {
  content: none;
}

.news-showcase-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(216, 12, 24, 0.16);
  border-radius: 999px;
  color: #243244;
  background: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.news-showcase-more:hover {
  color: #ffffff;
  background: var(--color-brand);
  box-shadow: 0 16px 30px rgba(216, 12, 24, 0.18);
}


.cta-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.54) 100%),
    url("/assets/home/cta-bg.jpg") center / 100% 100% no-repeat;
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  top: 50%;
  width: 38vw;
  max-width: 520px;
  height: 260px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.cta-section::before {
  left: -2.5vw;
  background-image:
    radial-gradient(circle, rgba(189, 205, 228, 0.9) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(226, 233, 245, 0.9) 1.2px, transparent 1.8px);
  background-size: 18px 18px, 26px 26px;
  background-position: 0 0, 8px 10px;
  transform: translateY(-50%) perspective(540px) rotateY(32deg);
}

.cta-section::after {
  right: -2.5vw;
  background-image:
    radial-gradient(circle, rgba(189, 205, 228, 0.9) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(226, 233, 245, 0.9) 1.2px, transparent 1.8px);
  background-size: 18px 18px, 26px 26px;
  background-position: 0 0, 8px 10px;
  transform: translateY(-50%) perspective(540px) rotateY(-32deg) scaleX(-1);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-inner .section-title {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 800;
}

.cta-inner .section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #687385;
  font-size: 14px;
  line-height: 1.7;
}

.section-heading-with-subtitle .section-subtitle {
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 52px;
  margin-top: 20px;
  padding: 0 28px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(180deg, #dc0912 0%, #c9070f 100%);
  box-shadow: 0 18px 36px rgba(216, 12, 24, 0.18);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(216, 12, 24, 0.24);
  filter: saturate(1.05);
}

body.is-trial-modal-open {
  overflow: hidden;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.trial-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.trial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 34, 0.52);
  backdrop-filter: blur(8px);
}

.trial-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
}

.trial-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 32, 45, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trial-modal-close::before,
.trial-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #2f3a4d;
  content: "";
}

.trial-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.trial-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.trial-modal-close:hover {
  background: rgba(216, 12, 24, 0.12);
  transform: rotate(90deg);
}

.trial-modal .trial-form {
  display: flex;
  flex-direction: column;
  padding: 62px 56px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 36px 90px rgba(24, 35, 52, 0.22);
}

.trial-modal-body {
  flex: 1 1 auto;
  min-height: 0;
}

.trial-modal .trial-form h2 {
  margin: 0;
  color: #182434;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.25;
  text-align: center;
}

.trial-modal-body > p {
  margin: 10px 0 30px;
  color: #627186;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.trial-modal .trial-form label {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  color: #182434;
  font-size: 15px;
}

.trial-modal .trial-form em {
  color: var(--color-brand);
  font-style: normal;
}

.trial-modal .trial-form input,
.trial-modal .trial-form textarea {
  width: 100%;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  color: #182434;
  background: var(--color-white);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trial-modal .trial-form input {
  height: 56px;
  padding: 0 18px;
}

.trial-modal .trial-form textarea {
  min-height: 132px;
  padding: 16px 18px;
  resize: vertical;
}

.trial-modal .trial-form input:focus,
.trial-modal .trial-form textarea:focus {
  border-color: #1b83ff;
  box-shadow: 0 0 0 3px rgba(27, 131, 255, 0.12);
}

.trial-modal .trial-form-textarea {
  align-items: start;
}

.trial-modal .trial-form-status {
  min-height: 24px;
  margin: 18px 0 0 94px;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.trial-modal .trial-form-status.is-error {
  color: var(--color-brand);
}

.trial-modal .trial-form-status.is-success {
  color: #127a43;
}

.trial-modal .submit-btn {
  display: block;
  flex: 0 0 auto;
  width: min(320px, 100%);
  height: 52px;
  margin: 18px auto 0;
  border: 0;
  border-radius: 8px;
  color: var(--color-white);
  background: linear-gradient(135deg, #d80c18 0%, #e84040 100%);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.trial-modal .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(216, 12, 24, 0.18);
}

.trial-modal .submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 1080px) {
  .product-accordion {
    min-height: 500px;
    gap: 18px;
    padding: 0;
  }

  .news-showcase-grid {
    grid-template-columns: 1fr;
  }

  .news-showcase-side-grid,
  .news-showcase-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .news-showcase-card-feature .news-showcase-body {
    padding: 28px 28px 16px;
  }

  .news-showcase-card-feature .news-showcase-image {
    margin: 0 16px 16px;
  }

  .news-showcase-card-split {
    min-height: 260px;
  }

  .news-showcase-card-horizontal {
    min-height: 214px;
  }

  .news-showcase-card-horizontal .news-showcase-body,
  .news-showcase-card-split .news-showcase-body {
    padding: 24px 22px;
  }

  .news-showcase-body h3 {
    font-size: clamp(18px, 2vw, 28px);
  }

  .news-showcase-more {
    min-width: 144px;
    height: 50px;
    font-size: 16px;
  }
  
  .cta-section::before,
  .cta-section::after {
    width: 32vw;
    height: 220px;
    opacity: 0.58;
  }

  .cta-button {
    min-width: 200px;
    height: 52px;
    font-size: 16px;
  }

  .trial-modal .trial-form {
    padding: 52px 34px 34px;
  }
}

@media (max-width: 780px) {
  .home-news-loading,
  .home-news-error {
    min-height: 320px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: auto;
  }

  .hero-slide {
    position: relative;
    width: 100vw;
    min-height: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-media {
    height: 320px;
    overflow: hidden;
    border-radius: 0;
  }

  .hero-media img {
    min-height: 320px;
    height: 320px;
    object-fit: cover;
    object-position: center;
  }

  .hero-slide > .container {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
  }

  .hero-copy {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 28px 22px 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 24%, rgba(255, 255, 255, 0.98) 100%);
    opacity: 1;
    transform: none;
    text-align: left;
  }

  .hero-copy--left,
  .hero-copy--center {
    --hero-copy-transform-enter: translateY(54px);
    --hero-copy-transform-active: translateY(0);
    width: 100%;
    min-height: 0;
    padding: 28px 22px 32px;
    align-items: flex-start;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .hero-copy h1 {
    max-width: none;
    padding-left: 0;
    font-size: 23px;
    line-height: 1.3;
  }

  .hero-lead {
    margin-top: 16px;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-copy--left .hero-lead,
  .hero-copy--center .hero-lead {
    max-width: none;
    padding-left: 0;
  }

  .hero-cta {
    min-width: 134px;
    height: 42px;
    margin-top: 20px;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero-copy--left .hero-cta,
  .hero-copy--center .hero-cta {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy h1::before {
    display: none;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    display: none;
  }

  .hero-swiper .swiper-pagination {
    bottom: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .industry-solution {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .industry-solution-nav {
    display: grid;
    padding: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .industry-solution-tab {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    background: rgba(229, 236, 246, 0.72);
  }

  .industry-solution-tab.is-active {
    margin-right: 0;
    border-radius: 8px;
  }

  .industry-solution-panels {
    min-height: 0;
  }

  .industry-solution-panel,
  .industry-solution-panel.is-active {
    position: relative;
    display: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px 24px;
  }

  .industry-solution-panel.is-active {
    display: grid;
  }

  .industry-solution-copy {
    padding: 0;
    width: 100%;
  }

  .news-home-heading {
    margin-bottom: 28px;
  }

  .news-showcase {
    gap: 14px;
  }

  .news-showcase-grid,
  .news-showcase-side,
  .news-showcase-side-grid,
  .news-showcase-bottom {
    grid-template-columns: 1fr;
  }

  .news-showcase-side {
    grid-template-rows: none;
  }

  .news-showcase-card,
  .news-showcase-card-feature,
  .news-showcase-card-split,
  .news-showcase-card-horizontal {
    flex-direction: column;
  }

  .news-showcase-card {
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(29, 41, 64, 0.08);
  }

  .news-showcase-card-feature .news-showcase-body,
  .news-showcase-card-split .news-showcase-body,
  .news-showcase-card-horizontal .news-showcase-body,
  .news-showcase-card-compact .news-showcase-body {
    min-height: 0;
    padding: 22px 18px 20px;
  }

  .news-showcase-card-feature .news-showcase-image {
    aspect-ratio: 1.5 / 1;
    margin: 0 14px 14px;
    border-radius: 14px;
  }

  .news-showcase-card-split .news-showcase-image,
  .news-showcase-card-horizontal .news-showcase-image {
    flex-basis: auto;
    aspect-ratio: 1.72 / 1;
  }

  .news-showcase-kicker {
    margin-top: 18px;
    font-size: 18px;
  }

  .news-showcase-body h3,
  .news-showcase-card-feature .news-showcase-body h3,
  .news-showcase-card-compact .news-showcase-body h3,
  .news-showcase-card-horizontal .news-showcase-body h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .news-showcase-body p {
    font-size: 13px;
    line-height: 1.7;
  }

  .news-showcase-more {
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 15px;
  }

  .industry-solution-copy h3 {
    font-size: 28px;
    line-height: 1.28;
  }

  .industry-solution-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .industry-solution-tags {
    max-width: none;
    margin-top: 24px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
  }

  .industry-solution-tags span {
    min-width: 0;
    flex: 0 0 auto;
    gap: 6px;
    font-size: 10px;
    white-space: nowrap;
  }

  .industry-solution-tag-icon {
    width: 20px;
    height: 20px;
  }

  .industry-solution-actions {
    margin-top: 30px;
    gap: 14px;
  }

  .industry-solution-actions a {
    flex: 1 1 150px;
    min-width: 0;
    height: 44px;
    font-size: 15px;
  }

  .industry-solution-media {
    position: relative;
    inset: auto;
    width: min(322px, 100%);
    height: 200px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 14px;
  }
  
  .industry-solution-media::before {
    content: none;
  }

  #solutions.section {
    padding-bottom: 20px;
  }

  .industry-intro-tabs {
    gap: 18px;
    margin-top: 22px;
    flex-wrap: nowrap;
  }

  .industry-intro-tabs span {
    flex: 1 1 0;
    margin: 0;
    padding-bottom: 8px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .industry-intro-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
    padding: 0;
  }

  .industry-intro-cloud-left,
  .industry-intro-cloud-right {
    --intro-cloud-from-x: 0;
    --intro-cloud-to-x: 0;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .industry-intro-focus {
    min-height: auto;
    max-width: 100%;
  }

  .industry-intro-focus-media {
    min-height: 260px;
  }

  .company-video-modal {
    padding: 0;
  }

  .company-video-dialog {
    width: 100vw;
    height: 100dvh;
    aspect-ratio: auto;
    box-shadow: none;
  }

  .company-video-player {
    object-fit: contain;
  }

  .company-video-close {
    top: calc(env(safe-area-inset-top) + 12px);
    right: calc(env(safe-area-inset-right) + 12px);
    width: 40px;
    height: 40px;
  }

  .industry-intro-focus-copy {
    position: static;
    min-height: 82px;
    padding: 16px 18px;
    transform: none;
  }

  .industry-intro-focus-copy strong {
    font-size: 20px;
  }

  .industry-intro-focus-copy p,
  .industry-intro-focus-copy a {
    opacity: 1;
    transform: none;
  }

  .local-service-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .local-service-stats strong {
    font-size: clamp(32px, 10vw, 44px);
  }

  .local-service-stats span {
    font-size: 14px;
  }

  .local-service-map {
    height: auto;
    margin-top: 26px;
    background-size: cover;
    background-position: center;
  }

  .local-service-awards {
    margin-top: 48px;
  }

  .local-service-awards-carousel {
    padding: 0 2px;
  }

  .local-service-awards-track {
    animation-duration: 28s;
  }

  .local-service-awards-group {
    gap: 12px;
    padding-right: 12px;
  }

  .local-service-award-card {
    flex: 0 0 159px;
    width: 159px;
    height: 140px;
    min-height: 140px;
    aspect-ratio: 316 / 278;
  }

  .local-service-award-copy {
    position: relative;
    padding: 7px 14px 10px;
  }

  .local-service-award-copy strong {
    font-size: 14px;
  }

  .local-service-award-copy span {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.35;
  }

  .local-service-award-copy em {
    position: absolute;
    right: 18%;
    bottom: 4px;
    left: 18%;
    margin-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    line-height: 1;
    text-align: center;
  }

  .product-accordion {
    display: grid;
    min-height: auto;
  }

  .product-card,
  .product-card.is-active {
    height: 420px;
    min-height: 420px;
    padding: 24px 18px 18px;
  }

  .product-tag {
    margin-bottom: 16px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 24px;
    line-height: 1.25;
  }

  .product-detail {
    max-width: none;
  }

  .product-detail p {
    margin: 6px 0 14px;
    font-size: 14px;
  }

  .product-detail ul {
    gap: 8px;
  }

  .product-detail li {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal;
  }

  .product-detail li::before {
    top: 6px;
    width: 7px;
    height: 7px;
  }

  .product-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .product-actions a {
    min-height: 42px;
    font-size: 13px;
  }
  
  .cta-section {
    padding: 72px 0 78px;
    background-size: cover;
  }

  .cta-section::before,
  .cta-section::after {
    width: 42vw;
    height: 180px;
    opacity: 0.42;
  }

  .cta-section::before {
    left: -10vw;
    transform: translateY(-50%) perspective(420px) rotateY(28deg);
  }

  .cta-section::after {
    right: -10vw;
    transform: translateY(-50%) perspective(420px) rotateY(-28deg) scaleX(-1);
  }

  .cta-inner .section-title {
    font-size: 24px;
  }

  .cta-inner .section-subtitle {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-button {
    min-width: 100%;
    height: 52px;
    margin-top: 22px;
    padding: 0 24px;
    font-size: 16px;
  }

  .trial-modal {
    padding: 16px;
  }

  .trial-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 32px);
  }

  .trial-modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .trial-modal .trial-form {
    max-height: calc(100dvh - 32px);
    padding: 52px 18px 26px;
    border-radius: 18px;
    overflow: hidden;
  }

  .trial-modal-body {
    overflow-y: auto;
    padding-right: 4px;
  }

  .trial-modal .trial-form label {
    display: block;
  }

  .trial-modal .trial-form label > span {
    display: block;
    margin-bottom: 8px;
  }

  .trial-modal .submit-btn {
    width: 100%;
  }

  .local-service-awards-title{
    margin: 20px 0 40px;
  }
}
