.cc-purchase-paths {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto;
  padding: clamp(26px, 4vw, 52px);
  color: #261d20;
  background: linear-gradient(135deg, #fffafc 0%, #f5eef1 100%);
  border: 1px solid #e5d8de;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(58, 34, 43, 0.08);
}

.cc-purchase-paths__header {
  max-width: 820px;
  margin-bottom: 24px;
}

.cc-purchase-paths__eyebrow,
.cc-purchase-paths__number {
  margin: 0 0 8px;
  color: #9c355b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cc-purchase-paths h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.cc-purchase-paths h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.2;
}

.cc-purchase-paths p {
  line-height: 1.65;
}

.cc-purchase-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cc-purchase-paths__card {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #e2d7dc;
  border-radius: 20px;
}

.cc-purchase-paths__card--diy {
  background: #2d2025;
  color: #fff;
  border-color: #2d2025;
}

.cc-purchase-paths__card--diy .cc-purchase-paths__number {
  color: #f1a6bf;
}

.cc-purchase-paths__link {
  display: inline-flex;
  margin: 10px 14px 0 0;
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc-purchase-paths__link--primary {
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  color: #fff;
  background: #a43861;
  border-radius: 999px;
  text-decoration: none;
}

.cc-purchase-paths__card--diy .cc-purchase-paths__link--primary {
  color: #2d2025;
  background: #fff;
}

@media (max-width: 767px) {
  .cc-purchase-paths {
    width: min(100% - 20px, 680px);
    margin: 28px auto;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .cc-purchase-paths__grid {
    grid-template-columns: 1fr;
  }

  .cc-purchase-paths__card {
    padding: 22px 18px;
  }

  .cc-purchase-paths__link {
    width: 100%;
    margin-right: 0;
  }
}

