.cat-landing {
  --bg: #f5f6ff;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e6e8f2;
  --shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  --shadow-hover: 0 14px 34px rgba(17, 24, 39, 0.10);
  --accent: #4f5bd6;
  --tile: #eef0ff;

  background: #ffffff;
  color: var(--text);
  min-height: 100%;
  padding: 54px 18px 72px;
}

.cat-landing__container {
  max-width: 1180px;
  margin: 0 auto;
}

.cat-landing__header {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}

.cat-landing__title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.cat-landing__subtitle {
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
  max-width: 640px;
}

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

.cat-landing__card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 22px 22px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
  min-height: 132px;
}

.cat-landing__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 91, 214, 0.25);
  background-color: #ffffff;
}

.cat-landing__card:active {
  transform: translateY(-1px);
}

.cat-landing__card:focus-visible {
  outline: 3px solid rgba(79, 91, 214, 0.35);
  outline-offset: 3px;
}

.cat-landing__icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--tile);
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 91, 214, 0.10);
}

.cat-landing__icon {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-landing__card-body {
  padding-top: 2px;
}

.cat-landing__card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #111827;
}

.cat-landing__card-desc {
  margin: 0;
  font-size: 14.25px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
  max-width: 44ch;
}

.cat-landing__chevron {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  opacity: 0.65;
  transition: opacity 160ms ease, transform 160ms ease;
}

.cat-landing__chevron svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-landing__card:hover .cat-landing__chevron {
  opacity: 0.9;
  transform: translateX(1px);
}

@media (max-width: 980px) {
  .cat-landing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cat-landing__title {
    font-size: 40px;
  }
}

@media (max-width: 620px) {
  .cat-landing {
    padding: 44px 14px 64px;
  }

  .cat-landing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-landing__title {
    font-size: 34px;
  }

  .cat-landing__card {
    padding: 18px 18px 20px;
  }

  .cat-landing__card-desc {
    max-width: none;
  }
}