.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(-7px);
}

.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 {
  display: flex;
  width: 200px;
  height: 40px;
  margin-left: auto;
  align-items: center;
  border: 1px solid #e6e8ee;
  border-radius: 20px;
  background: #f8f8fb;
  padding: 0 8px 0 16px;
}

.nav-row.is-fixed .nav-search {
  display: flex;
  width: 200px;
}

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

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

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

.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;
  padding-bottom: 0;
  cursor: grab;
  touch-action: pan-y;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f7f8fb;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  box-shadow: none;
  transform: translateX(100%);
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease;
  will-change: transform;
}

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

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

.hero-carousel.is-dragging .hero-slide {
  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::before {
  position: absolute;
  right: 14px;
  bottom: 20px;
  z-index: 1;
  width: 218px;
  height: 145px;
  border-radius: 30px 30px 18px 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(145deg, #7c8bff 0%, #334fdc 48%, #1429a7 100%);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.26),
    inset -10px -12px 18px rgba(14, 26, 120, 0.2),
    0 24px 34px rgba(20, 64, 120, 0.28);
  content: "";
  transform: rotate(5deg);
}

.doc-folder {
  position: absolute;
  right: 8px;
  bottom: 0;
  z-index: 4;
  width: 228px;
  height: 116px;
  border-radius: 24px 28px 24px 24px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.2), transparent 44%),
    linear-gradient(145deg, #6877ff 0%, #314bdd 58%, #1931b2 100%);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.24),
    inset -12px -16px 22px rgba(9, 22, 117, 0.24),
    0 26px 36px rgba(14, 51, 132, 0.34);
  transform: perspective(280px) rotateX(3deg) rotateZ(2deg);
}

.doc-folder::before {
  position: absolute;
  top: -23px;
  left: 18px;
  width: 84px;
  height: 36px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(145deg, #8d9bff 0%, #5168ef 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.36),
    0 -4px 12px rgba(10, 32, 130, 0.12);
  content: "";
}

.doc-folder::after {
  position: absolute;
  inset: 18px 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  content: "";
}

.doc-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 76px;
  height: 104px;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 15px;
  background:
    linear-gradient(225deg, #dfe7f3 0 49%, transparent 51%) right top / 30px 30px no-repeat,
    linear-gradient(160deg, #fff 0%, #f5f7fd 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 22px rgba(9, 42, 110, 0.24);
  color: #111827;
  padding-bottom: 16px;
  font-size: 11px;
  font-weight: 900;
}

.doc-card::before {
  position: absolute;
  top: 62px;
  left: 16px;
  width: 42px;
  height: 5px;
  border-radius: 4px;
  background: #d6dbe8;
  box-shadow:
    0 14px 0 #d6dbe8,
    0 28px 0 #d6dbe8;
  content: "";
}

.doc-card.pdf {
  left: 18px;
  bottom: 104px;
  transform: rotate(-3deg);
}

.doc-card.xls {
  left: 92px;
  bottom: 116px;
  transform: rotate(0deg);
}

.doc-card.doc {
  right: 18px;
  bottom: 104px;
  transform: rotate(3deg);
}

.doc-card.pdf::after,
.doc-card.xls::after,
.doc-card.doc::after {
  position: absolute;
  display: grid;
  top: 28px;
  right: auto;
  bottom: auto;
  left: 14px;
  min-width: 48px;
  height: 26px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  content: attr(class);
}

.doc-card.pdf::after {
  background: #e14c56;
  content: "PDF";
}

.doc-card.xls::after {
  background: #2a9b63;
  content: "XLS";
}

.doc-card.doc::after {
  background: #3d6ce8;
  content: "DOC";
}

.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);
}
