.ind-page {
  padding-top: 0px;
  background: #fff;
}

.ind-hero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding-top: 0;
  overflow: hidden;
}

.ind-hero__radio {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.ind-hero__panels {
  position: relative;
  width: 100%;
  height: 600px;
}

.ind-hero__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.ind-page:has(#ind-hero-tab-0:checked) .ind-hero__panel--0,
.ind-page:has(#ind-hero-tab-1:checked) .ind-hero__panel--1,
.ind-page:has(#ind-hero-tab-2:checked) .ind-hero__panel--2,
.ind-page:has(#ind-hero-tab-3:checked) .ind-hero__panel--3,
.ind-page:has(#ind-hero-tab-4:checked) .ind-hero__panel--4 {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.ind-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ind-hero__bg img,
.ind-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ind-hero__bg img {
  object-fit: cover;
  object-position: center center;
}

.ind-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.ind-hero__main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.ind-hero__content {
  max-width: 640px;
  color: #ffffff;
}

.ind-hero__label {
  margin: 0 0 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

.ind-hero__title {
  margin: 0;
  font-size: 48px;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ind-body {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ind-sidebar {
  flex: 0 0 220px;
  width: 220px;
  align-self: flex-start;
  position: sticky;
  top: 96px;
  z-index: 2;
  overflow: visible;
}

.ind-sidebar__nav {
  padding: 80px 0 96px;
  box-sizing: border-box;
  overflow: visible;
}

.ind-sidebar__tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.ind-sidebar__tabs::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 11px;
  width: 2px;
  background: #0070d5;
}

.ind-sidebar__tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #000000;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.ind-sidebar__tab.is-active .ind-sidebar__dot::before {
  opacity: 1;
  background: rgba(0, 112, 213, 0.18);
  box-shadow: 0 0 0 0 rgba(0, 112, 213, 0.45);
  animation: ind-sidebar-dot-pulse 2s ease-out infinite;
}

.ind-sidebar__tab.is-active .ind-sidebar__dot::after {
  width: 8px;
  height: 8px;
  border: none;
  background: #0070d5;
  box-shadow: 0 0 0 2px #ffffff;
}

.ind-sidebar__tab.is-active .ind-sidebar__text {
  font-weight: var(--font-weight-bold);
}

.ind-sidebar__dot {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: visible;
  isolation: isolate;
}

.ind-sidebar__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 112, 213, 0.18);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.ind-sidebar__dot::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #0070d5;
  background: #ffffff;
  box-sizing: border-box;
  transition: background 0.3s ease, border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

@keyframes ind-sidebar-dot-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);
  }
}

.ind-sidebar__text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.ind-content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1024px) {
  .ind-hero__title {
    font-size: 32px;
  }
  .ind-body {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }
  .ind-sidebar {
    flex: none;
    width: 100%;
    position: sticky;
    top: 72px;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
  }
  .ind-sidebar__nav {
    padding: 0;
  }
  .ind-sidebar__tabs {
    flex-direction: row;
    gap: 8px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .ind-sidebar__tabs::before {
    display: none;
  }
  .ind-sidebar__tabs::-webkit-scrollbar {
    display: none;
  }
  .ind-sidebar__tab {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 0;
    padding: 8px 14px;
    border: 1px solid #e5e9ef;
    border-radius: 999px;
    white-space: nowrap;
  }
  .ind-sidebar__tab.is-active {
    background: #0070d5;
    color: #ffffff;
  }
  .ind-sidebar__tab.is-active .ind-sidebar__text {
    color: #ffffff;
  }
  .ind-sidebar__dot {
    display: none;
  }
  .ind-sidebar__dot::before {
    width: 18px;
    height: 18px;
  }
  .ind-sidebar__tab.is-active .ind-sidebar__dot::after {
    box-shadow: 0 0 0 2px #ffffff;
  }
  .ind-sidebar__dot::after {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 768px) {
  .ind-hero {
    padding-top: 0;
  }
  .ind-hero__panels {
    height: 480px;
  }
  .ind-hero__main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ind-hero__label {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .ind-hero__title {
    font-size: 26px;
  }
  .ind-body {
    padding: 0 16px;
  }
  .ind-sidebar {
    top: 56px;
  }
  .ind-sidebar__text {
    font-size: 14px;
  }
  .ind-sidebar__tab {
    padding: 8px 14px;
  }
}

.ind-products {
  background: #ffffff;
  padding: 0 0 96px;
}

.ind-products__panel {
  scroll-margin-top: 96px;
  padding-top: 80px;
}

.ind-products__panel + .ind-products__panel {
  margin-top: 48px;
  padding-top: 64px;
  border-top: 1px solid #e8e8e8;
}

.ind-products__inner {
  width: 100%;
  box-sizing: border-box;
}

.ind-products__intro {
  margin: 0 0 40px;
  color: #0070d5;
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 28px;
}

.ind-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ind-products__card {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: none;
  padding: 24px 24px 28px;
  box-sizing: border-box;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.ind-products__card:hover {
  box-shadow: 0 12px 36px rgba(0, 64, 152, 0.12);
}

.ind-products__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ffffff;
}

.ind-products__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.ind-products__name {
  margin: 0 0 16px;
  color: #0070d5;
  font-size: 18px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.ind-products__list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #666666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
}

.ind-products__list li {
  margin: 0;
}

.ind-products__btn {
  display: block;
  width: fit-content;
  min-width: 320px;
  margin: 48px auto 80px;
  padding: 14px 48px;
  border: none;
  background: #0070d5;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.ind-products__btn:hover {
  background: #003380;
}

@media (max-width: 1200px) {
  .ind-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .ind-products {
    padding: 64px 0 80px;
  }
  .ind-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ind-products__intro {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .ind-products {
    padding: 48px 0 64px;
  }
  .ind-products__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ind-products__intro {
    font-size: 16px;
  }
  .ind-products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ind-products__media {
    height: 180px;
  }
  .ind-products__name {
    font-size: 17px;
  }
  .ind-products__list {
    font-size: 13px;
  }
  .ind-products__btn {
    width: 100%;
    min-width: 0;
    margin-top: 32px;
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .ind-hero {
    padding-top: 0;
  }
  .ind-hero__panels {
    height: 31.875vw;
  }
  .ind-hero__main {
    max-width: 85vw;
    padding-left: 1.275vw;
    padding-right: 1.275vw;
  }
  .ind-hero__content {
    max-width: 34vw;
  }
  .ind-hero__label {
    margin: 0 0 1.0625vw;
    font-size: 1.0625vw;
  }
  .ind-hero__title {
    font-size: 2.55vw;
  }
  .ind-body {
    gap: 2.55vw;
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .ind-sidebar {
    flex: 0 0 11.6875vw;
    width: 11.6875vw;
    top: 5.1vw;
  }
  .ind-sidebar__nav {
    padding: 4.25vw 0 5.1vw;
  }
  .ind-sidebar__tabs {
    gap: 1.4875vw;
  }
  .ind-sidebar__tabs::before {
    top: 0.6375vw;
    bottom: 0.6375vw;
    left: 0.58437vw;
    width: 0.10625vw;
  }
  .ind-sidebar__tab {
    gap: 0.74375vw;
  }
  .ind-sidebar__tab.is-active .ind-sidebar__dot::after {
    width: 0.425vw;
    height: 0.425vw;
    box-shadow: 0 0 0 0.10625vw #ffffff;
  }
  .ind-sidebar__dot {
    width: 1.275vw;
    height: 1.275vw;
  }
  .ind-sidebar__dot::before {
    width: 1.16875vw;
    height: 1.16875vw;
  }
  .ind-sidebar__dot::after {
    width: 0.53125vw;
    height: 0.53125vw;
    border-width: 0.10625vw;
  }
  .ind-sidebar__text {
    font-size: 0.85vw;
  }
  .ind-products {
    padding: 0 0 5.1vw;
  }
  .ind-products__panel {
    scroll-margin-top: 5.1vw;
    padding-top: 4.25vw;
  }
  .ind-products__panel + .ind-products__panel {
    margin-top: 2.55vw;
    padding-top: 3.4vw;
    border-top-width: 0.05312vw;
  }
  .ind-products__intro {
    margin: 0 0 2.125vw;
    font-size: 0.85vw;
    line-height: 1.4875vw;
  }
  .ind-products__grid {
    gap: 1.275vw;
  }
  .ind-products__card {
    border-width: 0.05312vw;
    padding: 1.275vw 1.275vw 1.4875vw;
  }
  .ind-products__card:hover {
    box-shadow: 0 0.6375vw 1.9125vw rgba(0, 64, 152, 0.12);
  }
  .ind-products__media {
    height: 10.625vw;
    margin-bottom: 1.0625vw;
  }
  .ind-products__name {
    margin: 0 0 0.85vw;
    font-size: 0.95625vw;
  }
  .ind-products__list {
    padding: 0 0 0 0.95625vw;
    font-size: 0.74375vw;
  }
  .ind-products__btn {
    min-width: 17vw;
    margin: 2.55vw auto 4.25vw;
    padding: 0.74375vw 2.55vw;
    font-size: 0.85vw;
  }
}

.ind-image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-sizing: border-box;
}

.ind-image-modal[hidden] {
  display: none;
}

.ind-image-modal.is-open {
  display: flex;
}

body.is-ind-image-open {
  overflow: hidden;
}

.ind-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.ind-image-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: auto;
  max-width: min(900px, 84vw);
  max-height: 78vh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.ind-image-modal__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ind-image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ind-image-modal__close:hover {
  background: rgba(0, 0, 0, 0.65);
}

.ind-image-modal__body {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 78vh;
}

.ind-image-modal__image {
  display: block;
  width: min(800px, 65vw);
  max-width: 100%;
  max-height: 68vh;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .ind-image-modal {
    padding: 24px 16px;
  }

  .ind-image-modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .ind-image-modal__image {
    width: min(100vw - 56px, 80vw);
    max-height: 65vh;
  }
}
