/* landing/sections/pricing/pricing.css */

.pricing-cards {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.p-card {
    background: var(--c-surface);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(30,27,58,0.08);
    border: 2px solid var(--c-blue);
    position: relative;
    width: 100%;
}

.p-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(74,144,226,0.3);
}

.p-card h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--c-text);
}

.p-price {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 30px;
}

.p-price span {
    font-size: 18px;
    color: var(--c-text-muted);
}

.p-features {
    list-style: none;
    margin: 0; padding: 0;
}

.p-features li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-features .chk {
    color: var(--c-green);
    font-weight: 900;
    font-size: 18px;
}

@media (max-width: 768px) {
  .pricing-cards {
    max-width: 100%;
  }
  .p-card {
    padding: 28px 20px;
  }
  .p-price {
    font-size: 38px;
  }
}
