.digimo-pricing-home {
  --px-green: #7cfa42;
  --px-green-dark: #5ed12a;
  --px-mint: #00e571;
  --px-ink: #0d0d0d;
  --px-bg: #0d0d0d;
  --px-card: #161616;
  --px-muted: rgba(255, 255, 255, 0.5);
  --px-line: rgba(255, 255, 255, 0.12);
  width: 100%;
  background: var(--px-bg);
  color: #fff;
  padding: 72px 24px 88px;
  position: relative;
  z-index: 2;
  font-family: Inter, system-ui, sans-serif;
  box-sizing: border-box;
}

.digimo-pricing-home *,
.digimo-pricing-home *::before,
.digimo-pricing-home *::after { box-sizing: border-box; }

.digimo-pricing-home__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.digimo-pricing-home__intro {
  width: 100%;
  margin: 0 0 40px;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.digimo-pricing-home__eyebrow {
  margin: 0 0 12px;
  width: 100%;
  color: var(--px-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center !important;
}

.digimo-pricing-home__intro h2 {
  margin: 0 auto !important;
  width: 100%;
  max-width: none;
  font-family: Syne, Inter, sans-serif;
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  text-align: center !important;
}

.digimo-pricing-home__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.digimo-pricing-home__cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 90px;
}

.digimo-pricing-home__cat {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.digimo-pricing-home__cat:hover { background: rgba(124, 250, 66, .14); }
.digimo-pricing-home__cat.is-active {
  background: var(--px-green);
  color: var(--px-ink);
}

.px-carousel {
  position: relative;
  min-width: 0;
}

.px-viewport {
  overflow: hidden;
}

.px-track {
  display: flex;
  gap: 22px;
  transition: transform .45s ease;
  will-change: transform;
}

.px-card {
  flex: 0 0 auto;
  width: calc((100% - 44px) / 3);
  background: var(--px-card);
  border: 1px solid var(--px-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.px-card__head {
  background: var(--px-green);
  color: var(--px-ink);
  text-align: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 14px 12px;
}

.px-card__body {
  padding: 22px 22px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.px-card__icon {
  width: 72px;
  height: 72px;
  margin: 4px auto 16px;
  display: grid;
  place-items: center;
}

.px-card__icon svg { width: 72px; height: 72px; }

.px-card__title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.px-card__price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.px-card__price {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.px-card__price b { color: var(--px-green); font-weight: 800; }
.px-card__old {
  display: block;
  margin-top: 6px;
  color: var(--px-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
}

.px-card__rush {
  color: var(--px-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  max-width: 140px;
  text-align: right;
}

.px-card__features {
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
  display: grid;
  gap: 9px;
  flex: 1;
}

.px-card__features li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.86);
}

.px-card__features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--px-green);
  position: absolute;
  left: 0;
  top: .45em;
}

.px-card__cta {
  display: block;
  background: var(--px-green);
  color: var(--px-ink) !important;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 12px;
  font-size: 14px;
}

.px-card__cta:hover { background: var(--px-green-dark); }

.px-nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--px-line);
  background: rgba(13,13,13,.88);
  color: var(--px-green);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.px-nav:hover {
  background: var(--px-green);
  color: var(--px-ink);
  border-color: var(--px-green);
}

.px-nav:disabled {
  opacity: .35;
  cursor: default;
  background: rgba(13,13,13,.88);
  color: #fff;
  border-color: var(--px-line);
}

.px-nav--prev { left: -18px; }
.px-nav--next { right: -18px; }

.px-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.px-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  padding: 0;
}

.px-dot.is-active { background: var(--px-green); width: 22px; border-radius: 99px; }

@media (max-width: 1100px) {
  .px-card { width: calc((100% - 22px) / 2); }
}

@media (max-width: 809px) {
  .digimo-pricing-home { padding: 48px 16px 64px; }
  .digimo-pricing-home__layout { grid-template-columns: 1fr; }
  .digimo-pricing-home__cats {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
  .digimo-pricing-home__cat { white-space: nowrap; flex: 0 0 auto; }
  .px-card { width: 100%; }
  .px-nav--prev { left: 0; }
  .px-nav--next { right: 0; }
}
