.industry {
  background: #ffffff;
  padding: 88px 0 0px;
  overflow: hidden;
}

.industry__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px;
}

.industry__head {
  margin-bottom: 48px;
}

.industry__label {
  margin-bottom: 16px;
  color: #004098;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.industry__title {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.02em;
}

.industry__tab-wrap {
  margin-bottom: 32px;
}

.industry__tab-rail {
  height: 1px;
  background: #e8e8e8;
}

.industry__tabs {
  display: flex;
  align-items: flex-start;
  margin-top: -22px;
}

.industry__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0px 0;
  border: none;
  background: transparent;
  color: #999999;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.3s ease;
}

.industry__tab.is-active {
  color: #004098;
}

.industry__tab-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s ease;
}

.industry__tab.is-active .industry__tab-dot {
  border:1px solid #004098;
  background: #fff;
}

.industry__tab-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.industry__stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.industry__panel {
  display: none;
  position: relative;
  min-height: 820px;
  padding: 56px 48px 56px max(24px, calc((100vw - 1600px) / 2));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.industry__panel.is-active {
  display: flex;
  align-items: center;
}

.industry__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.industry__card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 40px 36px;
  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-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: 700;
  line-height: 1.35;
}

.industry__card-desc {
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
}

.industry__cta {
  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: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.industry__cta:hover {
  background: #004098;
  border: 1px solid #004098;
  border-color: #004098;
}

@media (max-width: 1600px) {
  .industry {
    padding: 72px 0 0;
  }

  .industry__inner {
    padding: 0 24px;
  }

  .industry__title {
    font-size: 40px;
    line-height: 1.3;
  }

  .industry__label {
    font-size: 26px;
  }

  .industry__panel {
    min-height: 680px;
    padding: 48px 32px 48px 24px;
  }

  .industry__card {
    max-width: 480px;
    padding: 36px 32px;
  }

  .industry__card-title {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  .industry {
    padding: 64px 0 0;
  }

  .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 0 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 {
    padding: 48px 0 0;
  }

  .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 0 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: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
  }
}
