﻿.pricing-section { padding: 40px 0; }

    .pricing-card {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 32px;
        border-radius: 28px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
        transition: all .3s ease;
    }

.billing-selector { display:flex; justify-content:center; gap:8px; margin:0 auto 32px; flex-wrap:wrap; }
.billing-selector button { border:1px solid #dbe4ef; background:#fff; color:#26364a; border-radius:999px; padding:11px 18px; font-weight:700; cursor:pointer; }
.billing-selector button.active { background:#12263f; color:#fff; border-color:#12263f; }
.billing-selector span { font-size:.75rem; opacity:.8; margin-left:4px; }
.pricing-option.d-none { display:none!important; }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 75px rgba(15, 23, 42, 0.14);
    }

    .pricing-card.offer-card,
    .pricing-card.popular-card {
        border: 2px solid transparent;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(135deg, #7c3aed, #ec4899) border-box;
    }

    .pricing-badge {
        position: static;
        align-self: flex-end;
        flex-shrink: 0;
        width: fit-content;
        margin-bottom: 14px;
        padding: 8px 15px;
        border-radius: 999px;
        background: linear-gradient(135deg, #7c3aed, #ec4899);
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
    }

    .pricing-card .pricing-title {
        min-height: 58px;
        margin-bottom: 12px;
        color: #0f172a;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.2;
    }

    .small-text {
        min-height: 82px;
        margin-bottom: 24px;
        color: #64748b;
        font-size: 15px;
        line-height: 1.7;
    }

    .price {
        min-height: 64px;
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 10px;
        color: #0f172a;
        font-size: 46px;
        font-weight: 950;
        line-height: 1;
        flex-wrap: wrap;
    }

    .old-price {
        position: relative;
        color: #ef4444;
        font-size: 36px;
        font-weight: 800;
    }

    .old-price::after {
        content: "";
        position: absolute;
        left: -3px;
        right: -3px;
        top: 50%;
        height: 3px;
        background: #ef4444;
        transform: rotate(-8deg);
        border-radius: 999px;
    }

    .new-price {
        color: #0f172a;
        font-size: 50px;
        font-weight: 950;
    }

    .custom-price {
        font-size: 48px;
        font-weight: 950;
        color: #0f172a;
    }

    .save-badge {
        width: fit-content;
        margin-bottom: 14px;
        padding: 7px 13px;
        border-radius: 999px;
        background: rgba(34, 197, 94, .12);
        color: #16a34a;
        font-size: 13px;
        font-weight: 900;
    }

    .price-note {
        min-height: 42px;
        margin-bottom: 24px;
        color: #64748b;
        font-size: 14px;
        font-weight: 700;
    }

    .feature-list {
        flex: 1;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 13px;
        color: #334155;
        font-size: 15px;
        line-height: 1.45;
    }

    .feature-list li .bi {
        flex: 0 0 auto;
        color: #7c3aed;
        font-size: 18px;
    }

    .btn-main,
    .btn-ghost {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        font-weight: 900;
        margin-top: 26px !important;
        transition: all .3s ease;
        text-decoration: none;
    }

    .btn-main {
        border: 0;
        color: #ffffff;
        background: linear-gradient(135deg, #7c3aed, #ec4899);
        box-shadow: 0 14px 30px rgba(124, 58, 237, .25);
    }

    .btn-main:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(236, 72, 153, .28);
    }

    .btn-ghost {
        color: #0f172a;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, .14);
    }

    .btn-ghost:hover {
        color: #ffffff;
        background: #0f172a;
    }

    .highlight-box,
    .info-panel {
        padding: 32px;
        border-radius: 26px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, .08);
        box-shadow: 0 18px 50px rgba(15, 23, 42, .07);
    }

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

    .info-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 12px;
        color: #475569;
        font-weight: 600;
    }

    .info-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #7c3aed;
        font-weight: 900;
    }

    @media (max-width: 991px) {
        .pricing-section { padding: 65px 0; }

        .pricing-card h4,
        .small-text,
        .price,
        .price-note {
            min-height: unset;
        }

        .pricing-card { padding: 28px; }

        .new-price,
        .custom-price {
            font-size: 42px;
        }

        .old-price {
            font-size: 30px;
        }
    }

