.pricing-page-sec {
    padding: 48px 0 72px;
}

.pricing-page-sec .pricing-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.pricing-page-sec .pricing-page-intro h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-page-sec .pricing-page-intro p {
    color: var(--gray-500, #6b7280);
    margin: 0;
}

.pricing-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.pricing-card {
    flex: 0 1 280px;
    width: 280px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    position: relative;
}

@media (max-width: 575.98px) {
    .pricing-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 400px;
    }
}

.pricing-card-plan.is-featured {
    border-color: #111827;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
}

.pricing-card-plan.is-featured .pricing-card-btn {
    background: #111827;
    color: #fff;
}

.pricing-card-plan.is-featured .pricing-card-btn:hover {
    background: #374151;
    color: #fff;
}

.pricing-card-plan .pricing-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.pricing-card-plan .pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
}

.pricing-card-plan .pricing-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.5;
}

.pricing-card-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 20px;
}

.pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.pricing-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.4;
}

.pricing-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ca3af;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: #f3f4f6;
    color: #111827;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pricing-card-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.pricing-card-sidebar .pricing-card-section-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.pricing-card-sidebar .pricing-card-section-title + .pricing-card-list {
    margin-bottom: 24px;
}

.pricing-card-sidebar .pricing-card-section-title:not(:first-child) {
    margin-top: 8px;
}
