.pricingPlans {
  background: #f3f5f8;
  padding: 84px 0 96px;
  color: #0f172a;
}

.pricingPlans__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricingPlans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricingCard {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  padding: 24px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pricingCard--featured {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow:
    0 8px 26px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(249, 115, 22, 0.35);
}

.pricingCard__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricingCard__kicker {
  margin: 2px 0 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #374151;
}

.pricingCard__price {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(30px, 2.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0f172a;
}

.pricingCard__desc {
  margin: 0 auto;
  max-width: 33ch;
  text-align: center;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  min-height: 64px;
}

.pricingCard__list {
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricingCard__list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
}

.pricingCard__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.pricingCard__cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  min-height: 48px;
  border-radius: 11px;
  border: 1px solid #0b5f84;
  color: #0b5f84;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  background: #ffffff;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.pricingCard__cta--featured {
  background: #0b5f84;
  color: #ffffff;
  border-color: #0b5f84;
  box-shadow: 0 10px 22px rgba(11, 95, 132, 0.24);
}

.pricingCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(11, 95, 132, 0.24);
}

.pricingCard__cta:hover {
  background: #0b5f84;
  color: #ffffff;
  border-color: #0b5f84;
  box-shadow: 0 10px 20px rgba(11, 95, 132, 0.2);
  transform: translateY(-1px);
}

.pricingCard__cta--featured:hover {
  background: #094a67;
  border-color: #094a67;
  box-shadow: 0 12px 24px rgba(9, 74, 103, 0.28);
}

.pricingCard__cta:focus-visible {
  outline: 2px solid rgba(11, 95, 132, 0.45);
  outline-offset: 2px;
}

.pricingPlans__note {
  margin-top: 38px;
  text-align: center;
}

.pricingPlans__noteTitle {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.pricingPlans__noteText {
  margin: 0 auto;
  max-width: 74ch;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .pricingPlans {
    padding: 62px 0 74px;
  }

  .pricingPlans__container {
    padding: 0 18px;
  }

  .pricingPlans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .pricingCard__desc {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .pricingPlans__grid {
    grid-template-columns: 1fr;
  }

  .pricingCard__badge {
    top: -10px;
    height: 24px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .pricingPlans {
    padding: 48px 0 56px;
  }

  .pricingPlans__container {
    padding: 0 12px;
  }

  .pricingCard {
    padding: 20px 16px 16px;
  }

  .pricingCard__kicker {
    font-size: 12px;
  }

  .pricingCard__desc {
    font-size: 14px;
  }

  .pricingCard__list li {
    font-size: 14px;
  }

  .pricingCard__cta {
    font-size: 14px;
  }

  .pricingPlans__noteTitle {
    font-size: 30px;
  }

  .pricingPlans__noteText {
    font-size: 14px;
  }
}
