/* =========================================
   Pricing Cards Component
   Reusable pricing card styles for all pages
   ========================================= */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-grid--centered {
    justify-content: center;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Pricing Card Base */
.pricing-card {
    background: white;
    padding: 48px 32px;
    border-radius: 24px;
    /* Large radius from Design System */
    border: 1px solid #e2e8f0;
    /* Border subtle */
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth transition */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /* Shadow 1 */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Shadow 2 */
    border-color: #ff5000;
    /* Primary orange */
}

/* Popular Card Variant */
.pricing-card--popular {
    border-color: #ff5000;
    /* Primary orange */
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 80, 0, 0.08);
}

/* Card Tier Label */
.pricing-card__tier {
    font-size: 13px;
    /* Small text */
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    /* Text tertiary */
    margin-bottom: 16px;
}

.pricing-card--popular .pricing-card__tier {
    color: #ff5000;
    /* Primary orange */
}

/* Card Title */
.pricing-card__title {
    font-size: 28px;
    /* H3 size */
    font-weight: 800;
    /* Extra bold */
    color: #0f172a;
    /* Text primary */
    margin-bottom: 24px;
}

/* Price Section */
.pricing-card__price {
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-size: 40px;
    /* Large display */
    font-weight: 800;
    /* Extra bold */
    color: #0f172a;
    /* Text primary */
    line-height: 1;
}

.pricing-card__currency {
    font-size: 20px;
    font-weight: 600;
    /* Semibold */
    color: #64748b;
    /* Text tertiary */
}

.pricing-card__subprice {
    font-size: 14px;
    /* Body small */
    color: #94a3b8;
    /* Text muted */
    margin-top: 8px;
}

/* Features List */
.pricing-card__features {
    list-style: none !important;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
    /* Push button to bottom */
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #475569;
    /* Text secondary */
    margin-bottom: 12px;
    font-size: 15px;
    /* Body standard */
}

.pricing-card__feature::before {
    content: \"\";
    width: 6px;
    height: 6px;
    background: #ff5000;
    /* Primary orange dot */
    border-radius: 50%;
    flex-shrink: 0;
}

/* Disabled Feature */
.pricing-card__feature.feature--disabled {
    text-decoration: line-through;
    opacity: 0.5;
}

/* Card Button */
.pricing-card__button {
    width: 100%;
}

/* Outline Button Variant on White Cards */
.pricing-card .btn-outline {
    border: 1px solid #e2e8f0 !important;
    /* Border subtle */
    color: #475569 !important;
    /* Text secondary */
    background: transparent !important;
}

.pricing-card .btn-outline:hover {
    border-color: #ff5000 !important;
    /* Primary orange */
    color: #ff5000 !important;
    background: #fff5f0 !important;
    /* BG orange-light */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card__title {
        font-size: 24px;
    }

    .pricing-card__amount {
        font-size: 32px;
    }
}