  .page-landing .category-section {
    padding: 2rem 1.5rem 1.5rem;
    overflow-x: clip;
  }

  .page-landing .category-section__inner,
  .page-landing .category-section__body {
    min-width: 0;
  }

  .page-landing .category-section__inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .page-landing .category-section__header {
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    text-align: center;
  }

  .page-landing .category-section__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .page-landing .category-section__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    color: #000;
  }

  .page-landing .category-section__desc {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .page-landing .category-section__body {
    display: grid;
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .page-landing .category-sidebar__viewport {
    min-width: 0;
  }

  .page-landing .category-sidebar__nav {
    display: none;
  }

  .page-landing .category-sidebar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .page-landing .category-sidebar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.85rem;
    color: #444;
    cursor: pointer;
    transition: color 0.15s ease;
  }

  .page-landing .category-sidebar__item--active {
    background: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
    font-weight: 700;
  }

  .page-landing .category-sidebar__item--active .category-sidebar__label {
    color: var(--color-primary);
  }

  .page-landing .category-sidebar__item-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
  }

  .page-landing .category-sidebar__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: inherit;
  }

  .page-landing .category-sidebar__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .page-landing .category-sidebar__icon img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
  }

  .page-landing .category-sidebar__label {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .page-landing .category-sidebar__label--short {
    display: none;
  }

  .page-landing .category-sidebar__arrow {
    display: none;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--color-primary);
  }

  .page-landing .category-sidebar__item--active .category-sidebar__arrow {
    display: grid;
    place-items: center;
  }

  .page-landing .category-sidebar__arrow svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .page-landing .category-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    grid-template-areas: "info media";
    gap: 2rem;
    align-items: center;
  }

  .page-landing .category-showcase__card {
    display: contents;
  }

  .page-landing .category-showcase__overlay {
    display: none;
  }

  .page-landing .category-showcase__dots {
    display: none;
  }

  .page-landing .category-showcase__media {
    grid-area: media;
    position: relative;
    min-width: 0;
  }

  .page-landing .category-showcase__image {
    display: block;
    width: 100%;
    height: 26rem;
    object-fit: cover;
    border-radius: 1.75rem;
    box-shadow: var(--shadow-card);
    opacity: 1;
    transition: opacity 0.22s ease;
  }

  .page-landing .category-showcase__image--fading {
    opacity: 0;
  }

  .page-landing .category-showcase__title,
  .page-landing .category-showcase__desc {
    opacity: 1;
    transition: opacity 0.22s ease;
  }

  .page-landing .category-showcase__text--fading {
    opacity: 0;
  }

  .page-landing .category-showcase__pulse {
    position: absolute;
    top: 40%;
    right: 42%;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.55);
    animation: category-pulse 2.2s ease-out infinite;
  }

  @keyframes category-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.55);
    }
    70% {
      box-shadow: 0 0 0 0.85rem rgba(0, 102, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
  }

  .page-landing .category-showcase__badge {
    position: absolute;
    bottom: 1.1rem;
    left: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
  }

  .page-landing .category-showcase__badge-icon {
    display: grid;
    place-items: center;
    width: 1.1rem;
    height: 1.1rem;
    color: #000;
  }

  .page-landing .category-showcase__badge-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .page-landing .category-showcase__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
  }

  .page-landing .category-showcase__title {
    margin: 0;
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 700;
    color: #000;
  }

  .page-landing .category-showcase__desc {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .page-landing .category-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .page-landing .category-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
  }

  .page-landing .category-feature__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    background: #f5f5f7;
    color: #000;
  }

  .page-landing .category-feature__icon svg {
    width: 1.3rem;
    height: 1.3rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .page-landing .category-feature__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
  }

  .page-landing .category-feature__text strong {
    font-size: 0.86rem;
    color: #000;
  }

  .page-landing .category-feature__text span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
  }

  .page-landing .category-showcase__cta {
    align-self: flex-start;
    margin-top: 0.25rem;
  }

  @media (max-width: 768px) {
    .page-landing .category-section {
      padding: 2rem 1rem 1.5rem;
      overflow-x: clip;
    }

    .page-landing .category-section__header {
      margin-bottom: 1.5rem;
    }

    .page-landing .category-section__body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      overflow-x: clip;
    }

    .page-landing .category-sidebar__viewport {
      position: relative;
      width: 100%;
      min-width: 0;
      overflow: hidden;
    }

    .page-landing .category-sidebar__nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 2rem;
      height: 2rem;
      border: 1px solid #ececec;
      border-radius: 50%;
      background: #fff;
      color: #111;
      cursor: pointer;
      box-shadow: var(--shadow-card);
      transform: translateY(-50%);
    }

    .page-landing .category-sidebar__nav:disabled {
      opacity: 0.35;
      cursor: default;
    }

    .page-landing .category-sidebar__nav svg {
      width: 0.95rem;
      height: 0.95rem;
    }

    .page-landing .category-sidebar__nav--prev {
      right: 0;
      display: none;
    }

    .page-landing .category-sidebar__nav--next {
      right: 0;
      left: auto;
    }

    .page-landing .category-sidebar {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 0.65rem;
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0.15rem 2.35rem 0.5rem 0.15rem;
      margin: 0;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scroll-padding-inline: 0.25rem;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .page-landing .category-sidebar::-webkit-scrollbar {
      display: none;
    }

    .page-landing .category-sidebar > li {
      flex: 0 0 auto;
      display: flex;
      align-items: stretch;
      scroll-snap-align: center;
    }

    .page-landing .category-sidebar__item {
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0.45rem;
      width: 4.75rem;
      min-width: 4.75rem;
      max-width: 4.75rem;
      min-height: 100%;
      height: 100%;
      padding: 0.75rem 0.55rem;
      border: 1px solid #e8e8e8;
      background: #fff;
      box-sizing: border-box;
      color: #444;
    }

    .page-landing .category-sidebar__item--active {
      border-color: var(--color-primary);
      background: #fff;
      box-shadow: 0 0 0 1px rgba(0, 102, 255, 0.08);
      color: var(--color-primary);
    }

    .page-landing .category-sidebar__item--active .category-sidebar__label--short,
    .page-landing .category-sidebar__item--active .category-sidebar__label--full {
      color: var(--color-primary);
      font-weight: 700;
    }

    .page-landing .category-sidebar__item--active .category-sidebar__icon {
      color: var(--color-primary);
    }

    .page-landing .category-sidebar__item-main {
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0.45rem;
      width: 100%;
    }

    .page-landing .category-sidebar__icon {
      width: 1.75rem;
      height: 1.75rem;
    }

    .page-landing .category-sidebar__icon svg {
      width: 1.45rem;
      height: 1.45rem;
    }

    .page-landing .category-sidebar__label--full {
      display: none;
    }

    .page-landing .category-sidebar__label--short {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: calc(0.72rem * 1.35 * 2);
      font-size: 0.72rem;
      white-space: normal;
      text-align: center;
      line-height: 1.35;
    }

    .page-landing .category-sidebar__arrow,
    .page-landing .category-sidebar__item--active .category-sidebar__arrow {
      display: none;
    }

    .page-landing .category-showcase {
      display: block;
      width: 100%;
      min-width: 0;
    }

    .page-landing .category-showcase__card {
      display: block;
      position: relative;
      width: 100%;
      border-radius: 1.35rem;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      touch-action: pan-y;
    }

    .page-landing .category-showcase__media {
      position: relative;
    }

    .page-landing .category-showcase__image {
      height: 22rem;
      border-radius: 0;
      box-shadow: none;
    }

    .page-landing .category-showcase__overlay {
      display: block;
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.08) 100%
      );
      pointer-events: none;
    }

    .page-landing .category-showcase__pulse,
    .page-landing .category-showcase__badge {
      display: none;
    }

    .page-landing .category-showcase__info {
      position: absolute;
      inset: 0;
      z-index: 1;
      justify-content: flex-end;
      gap: 0.85rem;
      padding: 1.25rem 1.1rem;
      pointer-events: none;
    }

    .page-landing .category-showcase__title,
    .page-landing .category-showcase__desc,
    .page-landing .category-features,
    .page-landing .category-showcase__cta {
      pointer-events: auto;
    }

    .page-landing .category-showcase__title {
      color: #fff;
      font-size: 1.35rem;
      max-width: 14rem;
    }

    .page-landing .category-showcase__desc {
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.82rem;
      line-height: 1.75;
      max-width: 13rem;
    }

    .page-landing .category-features {
      grid-template-columns: 1fr;
      gap: 0.55rem;
      max-width: 13.5rem;
    }

    .page-landing .category-feature {
      align-items: center;
      gap: 0.45rem;
    }

    .page-landing .category-feature__icon {
      display: none;
    }

    .page-landing .category-feature__text {
      flex-direction: row;
      align-items: center;
      gap: 0.45rem;
    }

    .page-landing .category-feature__text::before {
      content: "";
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background: var(--color-primary);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 0.65rem;
    }

    .page-landing .category-feature__text strong {
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .page-landing .category-feature__text span {
      display: none;
    }

    .page-landing .category-showcase__cta {
      align-self: flex-start;
      margin-top: 0.35rem;
      background: #fff;
      color: #111;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-landing .category-showcase__cta:hover {
      background: #f5f5f5;
    }

    .page-landing .category-showcase__cta .hero__btn-icon--solid {
      background: rgba(0, 0, 0, 0.06);
    }

    .page-landing .category-showcase__dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.85rem;
    }

    .page-landing .category-showcase__dot {
      width: 0.45rem;
      height: 0.45rem;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: #d9d9d9;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease;
    }

    .page-landing .category-showcase__dot--active {
      background: var(--color-primary);
      transform: scale(1.15);
    }
  }

  @media (max-width: 1024px) and (min-width: 769px) {
    .page-landing .category-section__body {
      grid-template-columns: 1fr;
    }

    .page-landing .category-showcase {
      grid-template-columns: 1fr;
      grid-template-areas: "media" "info";
    }

    .page-landing .category-showcase__image {
      height: 20rem;
    }
  }
