.site-header {
  position: relative;
  z-index: 40;
  background: #fff;
}

.promo-strip {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--brand-ink);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.promo-strip b {
  font-weight: 800;
}

.promo-strip span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 28px;
  line-height: 1;
}

.head-main {
  display: flex;
  width: min(var(--max), calc(100vw - 40px));
  height: 112px;
  margin: 0 auto;
  align-items: center;
}

.brand-logo {
  display: flex;
  width: 220px;
  height: 72px;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 190px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}

.head-search {
  display: flex;
  width: 392px;
  height: 56px;
  margin-left: 28px;
  align-items: center;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #f8f7f8;
  padding: 0 12px 0 22px;
}

.head-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brand-ink);
  font-size: 14px;
}

.head-search button,
.nav-search button,
.mega-tablet-search button,
.mobile-search {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 0;
}

.head-search button::before,
.nav-search button::before,
.mega-tablet-search button::before,
.mobile-search::before,
.head-search button::after,
.nav-search button::after,
.mega-tablet-search button::after,
.mobile-search::after {
  content: none;
}

.head-search button .tabler-icon,
.nav-search button .tabler-icon,
.mega-tablet-search button .tabler-icon,
.mobile-search .tabler-icon {
  display: block;
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.top-banner {
  position: relative;
  display: grid;
  width: 356px;
  height: 82px;
  margin-left: auto;
  align-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0f172a 100%);
  color: #fff;
  padding: 0 28px 0 78px;
}

.catalog-banner-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
  transform: translateY(-50%);
}

.top-banner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.top-banner strong {
  margin-top: 6px;
  font-size: 21px;
  font-weight: 800;
}

.nav-row {
  position: relative;
  width: 100%;
  height: 74px;
  border-top: 0;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-row.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  border-color: transparent;
  box-shadow:
    0 14px 32px rgba(17, 24, 39, 0.13),
    0 1px 0 rgba(17, 24, 39, 0.06);
}

.nav-inner {
  display: flex;
  width: min(var(--max), calc(100vw - 4px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
}

.nav-placeholder {
  display: none;
  height: 74px;
}

.nav-placeholder.is-active {
  display: block;
}

.nav-logo {
  display: flex;
  width: 142px;
  height: auto;
  align-items: center;
  margin-right: 18px;
}

.nav-logo img {
  display: block;
  width: 130px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(-5px);
}

.nav-row.is-fixed .nav-logo {
  display: flex;
}

.nav-row.is-fixed .global-nav {
  column-gap: clamp(4px, 0.6vw, 10px);
}

.global-nav {
  display: grid;
  flex: 1 1 auto;
  height: 73px;
  grid-template-columns: repeat(5, minmax(116px, 1fr));
  align-items: center;
  column-gap: clamp(4px, 0.6vw, 10px);
}

.global-nav > a,
.nav-group > a {
  position: relative;
  display: flex;
  height: 73px;
  align-items: center;
  justify-content: flex-start;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.global-nav > a > span,
.nav-group > a > span {
  position: relative;
  display: inline-flex;
  transform: translateY(2px);
}

.global-nav > a > span::after,
.nav-group > a > span::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-primary);
  content: "";
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .global-nav > a:hover::after,
  .nav-group:hover > a::after,
  .nav-group > a:hover::after {
    width: 0;
  }

  .global-nav > a:hover > span::after,
  .nav-group:hover > a > span::after,
  .nav-group > a:hover > span::after {
    width: 100%;
  }
}

.global-nav .is-active {
  color: #111;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .global-nav > a:hover,
  .nav-group > a:hover {
    color: var(--brand-primary);
  }
}

.nav-group {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 92;
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 14px;
  padding: 28px 14px 52px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity 300ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 520ms;
}

.nav-panel:has(.nav-panel-category) {
  min-width: 0;
}

.global-nav:focus-within .nav-panel,
.nav-row.is-touch-menu-open .nav-panel,
.nav-row:has(.mega-menu:focus-within) .nav-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 300ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

.nav-row.is-touch-menu-open .nav-group.is-touch-open > a {
  color: var(--brand-primary);
}

.nav-row.is-touch-menu-open .nav-group.is-touch-open > a > span::after {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .global-nav:hover .nav-panel,
  .nav-row:has(.mega-menu:hover) .nav-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 300ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0s;
  }
}

.nav-panel a {
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding: 0;
  color: #5f6674;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: break-word;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-panel-category {
  display: grid;
  gap: 7px;
}

.nav-panel-category summary {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 6px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #5f6674;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-panel-category summary span {
  min-width: 0;
  overflow-wrap: break-word;
}

.nav-panel-category summary::-webkit-details-marker {
  display: none;
}

.nav-panel-category summary::before {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  margin-top: 8px;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.nav-panel-children {
  display: grid;
  gap: 8px;
  height: 0;
  overflow: hidden;
  border-left: 2px solid transparent;
  margin: 0 0 0 3px;
  padding: 0 0 0 14px;
  opacity: 0;
  visibility: hidden;
  transition:
    height var(--mega-motion-duration, 420ms) var(--mega-motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    opacity 220ms ease,
    margin var(--mega-motion-duration, 420ms) var(--mega-motion-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    visibility var(--mega-motion-duration, 420ms) ease,
    border-color 220ms ease;
}

.nav-panel-category[open] .nav-panel-children {
  display: grid;
  height: auto;
  border-left-color: #edf0f6;
  margin: 1px 0 8px 3px;
  opacity: 1;
  visibility: visible;
}

.nav-panel-category[open] summary::before {
  transform: translateY(-2px) rotate(45deg);
}

.nav-panel-category.is-closing summary::before {
  transform: rotate(-45deg);
}

.nav-panel-category.is-closing .nav-panel-children {
  border-left-color: #edf0f6;
  margin: 0 0 0 3px;
  visibility: visible;
}

.nav-panel-category.is-measuring-open .nav-panel-children {
  height: auto !important;
  border-left-color: #edf0f6;
  margin: 1px 0 8px 3px;
  opacity: 1;
  visibility: visible;
  transition: none !important;
}

.nav-panel-category.is-measuring-closed .nav-panel-children {
  height: 0 !important;
  border-left-color: transparent;
  margin: 0 0 0 3px;
  opacity: 0;
  visibility: hidden;
  transition: none !important;
}

.nav-panel-category.is-active > summary {
  color: var(--brand-primary);
}

@media (hover: hover) and (pointer: fine) {
  .nav-panel-category summary:hover {
    color: var(--brand-primary);
  }
}

.nav-panel-children a {
  color: #7a8291;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
}

.nav-panel a.is-active {
  background: transparent;
  color: var(--brand-primary);
  transform: translateX(2px);
}

@media (hover: hover) and (pointer: fine) {
  .nav-panel a:hover {
    background: transparent;
    color: var(--brand-primary);
    transform: translateX(2px);
  }
}

.mega-menu {
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  z-index: 89;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  border-top: 1px solid #eef1f6;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px) scaleY(0.96);
  transform-origin: top;
  transition:
    max-height 560ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease,
    transform 540ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 560ms;
  backdrop-filter: blur(18px);
}

.nav-row:has(.global-nav:focus-within) .mega-menu,
.nav-row.is-touch-menu-open .mega-menu,
.mega-menu:focus-within {
  visibility: visible;
  max-height: 720px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition:
    max-height 560ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease,
    transform 540ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

@media (hover: hover) and (pointer: fine) {
  .nav-row:has(.global-nav:hover) .mega-menu,
  .mega-menu:hover {
    visibility: visible;
    max-height: 720px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition:
      max-height 560ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 320ms ease,
      transform 540ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0s;
  }
}

.mega-inner {
  --mega-motion-duration: 420ms;
  --mega-motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: grid;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 756px) 280px;
  gap: clamp(80px, 8vw, 150px);
  min-height: max(var(--mega-panel-height, 250px), 360px);
  padding: 34px 0 78px;
  transition: min-height var(--mega-motion-duration) var(--mega-motion-ease);
}

.mega-tablet-tools {
  display: none;
}

.mega-tablet-search {
  display: flex;
  width: min(320px, 42vw);
  height: 44px;
  align-items: center;
  border: 1px solid #e6e8ee;
  border-radius: 22px;
  background: #f8f8fb;
  padding: 0 9px 0 18px;
}

.mega-tablet-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brand-ink);
  font-size: 13px;
  font-weight: 600;
}

.mega-tablet-search button {
  width: 32px;
  height: 32px;
}

.mega-tablet-search button .tabler-icon {
  width: 22px;
  height: 22px;
}

.mega-tablet-tool {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e6e8ee;
  border-radius: 22px;
  background: #fff;
  color: #111;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.mega-tablet-tool svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
  .mega-tablet-tool:hover {
    color: var(--brand-primary);
  }
}

.mega-lead {
  display: grid;
  grid-column: 2;
  align-content: center;
  align-self: stretch;
  border-left: 1px solid #edf0f6;
  padding-left: 36px;
}

.nav-row.is-fixed .mega-lead {
  margin-left: 48px;
  padding-left: 42px;
}

.mega-lead span {
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mega-lead strong {
  margin-top: 14px;
  color: #111;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.26;
}

.mega-lead p {
  margin: 16px 0 0;
  color: #697080;
  font-size: 14px;
  line-height: 1.7;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
}

.mega-columns section {
  min-width: 0;
  padding-top: 2px;
}

.mega-home ul {
  display: none;
}

.mega-title {
  display: inline-flex;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

@media (hover: hover) and (pointer: fine) {
  .mega-title:hover {
    color: var(--brand-primary);
  }
}

.mega-columns ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.mega-columns li a {
  display: inline-flex;
  color: #5f6674;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .mega-columns li a:hover {
    color: var(--brand-primary);
    transform: translateX(3px);
  }
}

/* 헤더 검색: 입력창 대신 돋보기 아이콘 하나만 두고, 클릭 시 전체화면 검색 오버레이를 연다.
   (검색창을 없애 상단 메뉴가 넓어지고 카테고리명 시인성이 좋아진다) */
.nav-search-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.nav-search-toggle .tabler-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

@media (hover: hover) and (pointer: fine) {
  .nav-search-toggle:hover {
    background: #f1f3f7;
    color: var(--brand-primary);
  }
}

.header-tools {
  display: flex;
  height: 73px;
  align-items: center;
  margin-left: 10px;
  gap: 20px;
}

.nav-row.is-fixed .header-tools {
  margin-left: 10px;
}

.language-toggle,
.tool-icon-link {
  display: inline-flex;
  height: 73px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  padding: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.language-toggle {
  position: relative;
}

.tool-icon-link {
  position: relative;
  width: auto;
  min-width: 0;
}

@media (hover: hover) and (pointer: fine) {
  .language-toggle:hover,
  .tool-icon-link:hover {
    color: var(--brand-primary);
  }
}

.language-toggle svg,
.tool-icon-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-head {
  display: none;
}

.tablet-header-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(72px) scale(0.985);
  transition:
    opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.reveal-reset {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-main {
  width: 100%;
  margin: 0 auto;
}

.site-main > .sub-hero,
.content-section {
  width: min(var(--detail-max), calc(100vw - 40px));
  margin-right: auto;
  margin-left: auto;
}

.visual-section {
  position: relative;
  overflow: hidden;
  background: #eef8ff;
}

.visual-grid {
  display: block;
}

.hero-carousel {
  position: relative;
  height: clamp(420px, 33vw, 620px);
  min-width: 0;
  overflow: hidden;
  /* 트랙 타일이 아직 안 그려진 순간 컨테이너 배경이 비치므로,
     밝은 색이면 전환 때 깜박임으로 보인다. 슬라이드와 같은 어두운 톤 유지. */
  background: #10151c;
  padding-bottom: 0;
  cursor: grab;
  touch-action: pan-y;
}

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

/* 슬라이드는 트랙 안에서 left(슬롯)로만 배치하고, 이동 애니메이션은 트랙
   transform 하나로 처리한다. 슬라이드를 개별 레이어로 움직이면 iOS Safari가
   화면 밖 슬라이드를 그려 두지 않아 전환 때 흰 화면이 깜박인다. */
.hero-track {
  position: absolute;
  inset: 0;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  /* 이미지가 그려지기 전 잠깐 비치는 영역이라 어두운 톤이어야 전환 때
     깜박임으로 보이지 않는다(히어로 이미지가 모두 어두운 계열). */
  background: #10151c;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  box-shadow: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.is-prev,
.hero-slide.is-next {
  opacity: 1;
}

/* 트랙 안 슬라이드는 슬롯이 서로 달라 겹치지 않으므로 항상 그려 둔다.
   (기본 opacity: 0은 JS 실행 전 첫 화면에서 활성 슬라이드만 보이게 하는 용도) */
.hero-track .hero-slide {
  opacity: 1;
}

.hero-carousel.is-dragging .hero-track {
  transition: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy span,
.headline-block p {
  color: var(--brand-primary);
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 14px 0 16px;
  color: var(--brand-ink);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 540px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-slide picture,
.hero-slide > img,
.hero-slide picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
}

.carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  pointer-events: none;
}

.pause-button,
.carousel-nav-button {
  position: absolute;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 220ms ease,
    background 220ms ease;
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .pause-button:hover,
  .carousel-nav-button:hover {
    background: #e9edf3;
  }
}

.carousel-nav-button {
  top: 50%;
  width: 70px;
  height: 70px;
  background: transparent;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .carousel-nav-button:hover {
    background: rgba(255, 255, 255, 0.38);
    transform: translateY(-50%) scale(1.04);
  }
}

.carousel-nav-button[data-carousel-prev] {
  left: max(42px, calc((100vw - var(--max)) / 2 + 24px));
}

.carousel-nav-button[data-carousel-next] {
  right: max(42px, calc((100vw - var(--max)) / 2 + 24px));
}

.pause-button {
  bottom: 24px;
  left: calc(50% + 238px);
  background: rgba(255, 255, 255, 0.7);
}

@media (hover: hover) and (pointer: fine) {
  .pause-button:hover {
    background: #e9edf3;
    transform: translateY(-2px);
  }
}

.pause-button b {
  display: none;
}

.carousel-dots {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.carousel-dots button {
  width: 82px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(210, 214, 222, 0.82);
  box-shadow:
    0 0 0 1px rgba(17, 24, 39, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.carousel-dots button.is-active {
  width: 112px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(17, 24, 39, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.24);
}

.side-banners {
  display: grid;
  gap: 22px;
}

.side-banner {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: start;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  padding: 28px;
  isolation: isolate;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.14);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.side-banner::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

@media (hover: hover) and (pointer: fine) {
  .side-banner:hover {
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.2);
    transform: translateY(-3px);
  }
}

.side-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.side-pill.download {
  background: rgba(255, 255, 255, 0.08);
}

.side-pill-icon,
.side-pill .tabler-icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.side-banner strong {
  position: relative;
  z-index: 2;
  max-width: 265px;
  margin-top: 15px;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.side-banner > i {
  position: relative;
  z-index: 2;
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 3px;
  background: #5a80ff;
}

.side-banner p {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.side-banner.dark {
  min-height: 190px;
  background:
    radial-gradient(
      circle at 83% 78%,
      rgba(74, 115, 255, 0.48),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.1),
      transparent 34%
    ),
    linear-gradient(145deg, #101116 0%, #161923 58%, #0c0e14 100%);
}

.side-banner.dark::after {
  position: absolute;
  right: -58px;
  bottom: 18px;
  z-index: 0;
  width: 250px;
  height: 210px;
  border: 1px solid rgba(91, 128, 255, 0.55);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
}

.side-product {
  position: absolute;
  right: -70px;
  bottom: 4px;
  z-index: 1;
  width: 285px;
  height: 124px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 76% 60%;
  opacity: 0.95;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
  transition: transform 260ms ease;
}

.side-banner.accent {
  min-height: 190px;
  background:
    radial-gradient(
      circle at 103% 82%,
      rgba(255, 255, 255, 0.26),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--brand-primary) 0%,
      #00b8b2 58%,
      var(--brand-primary-deep) 100%
    );
}

.side-banner.accent::after {
  position: absolute;
  top: -80px;
  right: -90px;
  z-index: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.side-banner.accent > i {
  background: rgba(255, 255, 255, 0.5);
}

.side-arrow {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 0.8;
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.side-banner.accent .side-arrow {
  background: #fff;
  color: var(--brand-primary);
}

@media (hover: hover) and (pointer: fine) {
  .side-banner:hover .side-arrow,
  .side-banner:hover .side-product,
  .side-banner:hover .side-docs {
    transform: scale(1.06);
  }
}

.side-docs {
  position: absolute;
  right: -18px;
  bottom: -38px;
  z-index: 1;
  width: 260px;
  height: 190px;
  transition: transform 260ms ease;
  transform-origin: 58% 72%;
}

.side-docs svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mini-banners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin-top: 100px;
}

.mini-banner {
  display: grid;
  min-height: 152px;
  align-content: end;
  border-radius: 14px;
  background: #f8f8fa;
  padding: 24px;
  box-shadow: inset 0 0 0 1px #eee;
}

.mini-banner span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 800;
}

.mini-banner strong {
  margin-top: 8px;
  color: #111;
  font-size: 21px;
  line-height: 1.28;
}

.quick-consult {
  margin-top: 40px;
}

.quick-consult ul {
  display: grid;
  min-height: 106px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 120px;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-consult label {
  display: grid;
  gap: 8px;
  height: 106px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 20, 0.07);
  color: #111;
  padding: 24px 25px 18px;
  font-size: 14px;
  font-weight: 700;
}

.quick-consult input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #111;
  font-size: 14px;
}

.quick-consult li > a {
  display: grid;
  width: 120px;
  height: 106px;
  place-items: center;
  border-radius: 20px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.quick-consult > div {
  display: flex;
  min-height: 34px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
  color: #333;
  font-size: 13px;
}

.quick-consult > div label {
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 5px;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  white-space: nowrap;
}

.quick-consult input[type="checkbox"] {
  accent-color: var(--brand-primary);
}
