.industry {
  background: #ffffff;
  padding: 88px 0 100px;
  overflow-x: clip;
  overflow-y: visible;
}

.industry__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.industry__head {
  margin-bottom: 48px;
}

.industry__label {
  margin-bottom: 16px;
  color: #0070d5;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
}

.industry__title {
  color: #000000;
  font-size: 40px;
  font-weight: var(--font-weight-normal);
  line-height: 56px;
  letter-spacing: 0.02em;
}

.industry__tab-wrap {
  margin-top: 32px;
  overflow: visible;
}

.industry__tab-rail {
  height: 1px;
  background: #e8e8e8;
}

.industry__tabs {
  display: flex;
  align-items: flex-start;
  margin-top: -5px;
  overflow: visible;
}

.industry__tab {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 24px;
  border: none;
  background: transparent;
  color: #000000;
  font-family: inherit;
  cursor: pointer;
  overflow: visible;
  transition: color 0.3s ease;
}

.industry__tab.is-active {
  color: #0070d5;
}

.industry__tab-dot {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  overflow: visible;
  isolation: isolate;
}

.industry__tab-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background: currentColor;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.industry__tab.is-active .industry__tab-dot::before {
  background: #0070d5;
  box-shadow: 0 0 0 2px #ffffff;
}

.industry__tab.is-active .industry__tab-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(0, 112, 213, 0.18);
  box-shadow: 0 0 0 0 rgba(0, 112, 213, 0.45);
  animation: industry-tab-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes industry-tab-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 112, 213, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 112, 213, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
  }
}

.industry__tab-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.industry__carousel {
  position: relative;
  width: 100%;
  overflow: visible;
}

.industry__expand {
  position: relative;
  width: 100%;
  margin-right: auto;
  will-change: width, margin-left;
}

.industry__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #ffffff;
  color: #999999;
  box-sizing: border-box;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.industry__arrow--prev {
  left: -64px;
}

.industry__arrow--next {
  right: -64px;
}

.industry__arrow:hover {
  background: #ffffff;
  border-color: #0070d5;
  color: #0070d5;
}

.industry__arrow:focus-visible {
  outline: 2px solid #0070d5;
  outline-offset: 2px;
}

.industry__stage {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.industry__panel {
  display: none;
  position: relative;
  height: 600px;
  min-height: 600px;
  padding: 56px 48px 56px 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.industry__panel.is-active {
  display: flex;
  align-items: center;
}

.industry__card {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.industry__card.is-entering {
  animation: industry-card-enter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes industry-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.industry__card-icon {
  display: flex;
  margin-bottom: 24px;
  color: #ffffff;
}

.industry__card-icon svg {
  width: 48px;
  height: 48px;
}

.industry__card-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
}

.industry__card-desc {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
}

.industry__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
  transition: background 0.3s ease,
 border-color 0.3s ease,
 box-shadow 0.35s ease;
}

.industry__cta svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  z-index: 0;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.06) 72%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.industry__cta:hover {
  border-color: rgba(160, 220, 255, 0.45);
  background: #005eb8;
  box-shadow: 0 0 0 1px rgba(120, 200, 255, 0.18), 0 0 18px rgba(0, 112, 213, 0.35);
}

.industry__cta:hover::before {
  left: 150%;
}

.industry__cta:hover svg {
  transform: translate(2px, -2px);
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .industry {
    padding: 4.675vw 0 5.3125vw;
  }
  .industry__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .industry__head {
    margin-bottom: 2.55vw;
  }
  .industry__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .industry__title {
    font-size: 2.125vw;
    line-height: 2.975vw;
  }
  .industry__tab-wrap {
    margin-top: 1.7vw;
  }
  .industry__tab-rail {
    height: 0.05312vw;
  }
  .industry__tabs {
    margin-top: -0.26562vw;
  }
  .industry__tab {
    gap: 0.6375vw;
    padding: 0.85vw 0.6375vw 1.275vw;
  }
  .industry__tab-dot {
    width: 0.53125vw;
    height: 0.53125vw;
  }
  .industry__tab.is-active .industry__tab-dot::before {
    box-shadow: 0 0 0 0.10625vw #ffffff;
  }
  .industry__tab.is-active .industry__tab-dot::after {
    inset: -0.31875vw;
  }
  @keyframes industry-tab-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 112, 213, 0.45);
    }
    70% {
      box-shadow: 0 0 0 0.6375vw rgba(0, 112, 213, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
    }
  }
  .industry__tab-text {
    font-size: 0.85vw;
  }
  .industry__arrow {
    width: 2.55vw;
    height: 2.55vw;
    border-width: 0.05312vw;
    background: transparent;
  }
  .industry__arrow:hover {
    background: transparent;
  }
  .industry__arrow--prev {
    left: 0.85vw;
  }
  .industry__arrow--next {
    right: 0.85vw;
  }
  .industry__arrow:focus-visible {
    outline-width: 0.10625vw;
    outline-offset: 0.10625vw;
  }
  .industry__stage {
    height: 31.875vw;
    min-height: 31.875vw;
    border-radius: 0.6375vw;
  }
  .industry__panel {
    height: 31.875vw;
    min-height: 31.875vw;
    padding: 2.975vw 2.55vw 2.975vw 2.65625vw;
  }
  .industry__card {
    max-width: 25.5vw;
    padding: 1.275vw;
    border-width: 0.05312vw;
    border-radius: 0.85vw;
    backdrop-filter: blur(0.6375vw);
  }
  @keyframes industry-card-enter {
    from {
      opacity: 0;
      transform: translate3d(0, 1.275vw, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .industry__card-icon {
    margin-bottom: 1.275vw;
  }
  .industry__card-icon svg {
    width: 2.55vw;
    height: 2.55vw;
  }
  .industry__card-title {
    margin-bottom: 1.0625vw;
    font-size: 1.4875vw;
  }
  .industry__card-desc {
    margin-bottom: 1.7vw;
    font-size: 0.85vw;
  }
  .industry__cta {
    gap: 0.53125vw;
    height: 2.3375vw;
    padding: 0 1.275vw;
    border-width: 0.05312vw;
    border-radius: 53.07187vw;
    font-size: 0.85vw;
  }
  .industry__cta:hover {
    box-shadow: 0 0 0 0.05312vw rgba(120, 200, 255, 0.18), 0 0 0.95625vw rgba(0, 112, 213, 0.35);
  }
  .industry__cta:hover svg {
    transform: translate(0.10625vw, -0.10625vw);
  }
}

@media (max-width: 1024px) {
  .industry__arrow {
    width: 40px;
    height: 40px;
  }
  .industry__arrow--prev {
    left: -48px;
  }
  .industry__arrow--next {
    right: -48px;
  }
  .industry {
    padding: 64px 0 72px;
  }
  .industry__inner {
    padding: 0 24px;
  }
  .industry__title {
    font-size: 36px;
    line-height: 1.3;
  }
  .industry__label {
    font-size: 24px;
    line-height: 1.2;
  }
  .industry__tab-wrap {
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .industry__tab-wrap::-webkit-scrollbar {
    display: none;
  }
  .industry__tab-scroll {
    display: inline-flex;
    flex-direction: column;
    min-width: 100%;
    padding-right: 24px;
    box-sizing: border-box;
  }
  .industry__tab-rail {
    width: 100%;
  }
  .industry__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    gap: 0;
  }
  .industry__tab {
    flex: 0 0 auto;
    min-width: 128px;
    padding: 16px 20px 24px 0;
    align-items: center;
  }
  .industry__tab-text {
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
  }
  .industry__stage,
  .industry__panel {
    min-height: 480px;
  }
  .industry__panel {
    padding: 40px 24px;
  }
  .industry__card {
    max-width: 100%;
    padding: 32px 28px;
  }
  .industry__card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .industry__arrow {
    width: 36px;
    height: 36px;
  }
  .industry__arrow--prev {
    left: 8px;
  }
  .industry__arrow--next {
    right: 8px;
  }
  .industry__arrow svg {
    width: 16px;
    height: 16px;
  }
  .industry {
    padding: 48px 0 56px;
  }
  .industry__inner {
    padding: 0 16px;
  }
  .industry__head {
    margin-bottom: 32px;
  }
  .industry__title {
    font-size: 28px;
  }
  .industry__label {
    font-size: 20px;
  }
  .industry__tab-wrap {
    padding: 0 0 4px;
  }
  .industry__tab-scroll {
    padding-right: 16px;
  }
  .industry__tab {
    min-width: 112px;
    padding: 16px 16px 24px 0;
  }
  .industry__tab-text {
    font-size: 13px;
  }
  .industry__stage,
  .industry__panel {
    min-height: 420px;
  }
  .industry__panel {
    padding: 28px 16px;
    align-items: flex-end;
  }
  .industry__card {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .industry__card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .industry__card-desc {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry__cta::before,
  .industry__cta svg {
    transition: none;
  }
  .industry__cta:hover svg {
    transform: none;
  }
}

/*# sourceMappingURL=industry.css.map */
