/* input(111,1): run-time error CSS1019: Unexpected token, found '@' */
/* Temporary construction overlay */
.site-under-construction-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55); /* medium opacity */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

    .site-under-construction-overlay .overlay-box {
        max-width: 740px;
        width: 100%;
        /* Make box less transparent */
        background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,245,245,0.88));
        border: 1px solid rgba(255,255,255,0.95);
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        color: #222;
        box-shadow: 0 0 25px rgba(0,0,0,0.4);
        text-shadow: none;
        position: relative;
    }

    @media (min-width: 1920px) {
        .site-under-construction-overlay .overlay-box {
            max-width: 840px;
            padding: 3rem 2.5rem;
        }
    }

    @media (min-width: 1920px) and (max-height: 1080px) {
        .site-under-construction-overlay .overlay-box {
            padding: 2rem 2rem;
        }
        .site-under-construction-overlay h1 {
            margin-bottom: 0.5rem;
        }
        .site-under-construction-overlay p.lead {
            font-size: 1rem;
            margin-bottom: 1.5rem !important;
        }
    }

    @media (min-width: 2560px) {
        .site-under-construction-overlay .overlay-box {
            max-width: 960px;
            padding: 3.5rem 3rem;
        }
    }

.overlayCloseMe {
    background: #dc3545;
    color: #fff;
    font-size: .65rem;
    opacity: .2;
    border: none;
}

.site-under-construction-overlay h1 {
    font-weight: 700;
    letter-spacing: .5px;
}

.site-under-construction-overlay p.lead {
    font-size: 1.15rem;
    line-height: 1.4;
}

.site-under-construction-overlay .coming-soon-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: .35rem .75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: .35rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.site-under-construction-overlay .overlay-box button {
    position: absolute;
    top: 10px;
    right: 10px;
}
/*------------------------------------------------------------------------------*/
/* Pricing Section Redesign */
.pricing-section {
   /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    position: relative;
    overflow: hidden;
}

    /*.pricing-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;*/
        /*background: #5e636b;*/
        /*background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
    }*/

@@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.pricing-header {
    margin-bottom: 3rem;
}

    .pricing-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 1rem;
    }

    .pricing-header p {
        font-size: 1.25rem;
        color: #6c757d;
        max-width: 800px;
        margin: 0 auto;
    }

    @media (min-width: 1920px) {
        .pricing-header h2 {
            font-size: 3rem;
        }
        .pricing-header p {
            font-size: 1.4rem;
            max-width: 900px;
        }
    }

    @media (min-width: 1920px) and (max-height: 1080px) {
        .pricing-header {
            margin-bottom: 2rem;
        }
        .pricing-header h2 {
            font-size: 2.25rem;
            margin-bottom: 0.75rem;
        }
        .pricing-header p {
            font-size: 1.15rem;
        }
    }

    @media (min-width: 2560px) {
        .pricing-header h2 {
            font-size: 3.5rem;
        }
        .pricing-header p {
            font-size: 1.6rem;
            max-width: 1000px;
        }
    }

.pricing-card-wrapperx {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.pricing-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1920px) {
    .pricing-card {
        border-radius: 1.25rem;
    }
}

@media (min-width: 2560px) {
    .pricing-card {
        border-radius: 1.5rem;
    }
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        /* background: linear-gradient(90deg, #0d6efd, #043e94); */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

        .pricing-card:hover::before {
            opacity: 1;
        }

    .pricing-card.featured {
        border: 2px solid #0d6efd;
        transform: scale(1.02);
    }

        .pricing-card.featured::before {
            opacity: 1;
            height: 8px;
        }

.pricing-card-header {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem !important;
    position: relative;
}

    .pricing-card-header h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #212529;
        margin: 0;
    }

    .pricing-card-header .badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        color: #fff;
        padding: 0.35rem 0.75rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.pricing-card-body {
    padding: 2rem 1.5rem !important;
}

.pricing-amount {
    margin-bottom: 2rem;
}

    .pricing-amount .price {
        font-size: 3.5rem;
        font-weight: 700;
        color: #212529;
        line-height: 1;
    }

    .pricing-amount .currency {
        font-size: 2rem;
        vertical-align: super;
    }

    .pricing-amount .period {
        font-size: 1.25rem;
        color: #6c757d;
        font-weight: 400;
    }

    @media (min-width: 1920px) {
        .pricing-amount .price {
            font-size: 4rem;
        }
        .pricing-amount .currency {
            font-size: 2.25rem;
        }
        .pricing-amount .period {
            font-size: 1.35rem;
        }
    }

    @media (min-width: 2560px) {
        .pricing-amount .price {
            font-size: 4.5rem;
        }
        .pricing-amount .currency {
            font-size: 2.5rem;
        }
        .pricing-amount .period {
            font-size: 1.5rem;
        }
    }

.pricing-features {
    min-height: 200px;
    margin-bottom: 2rem;
    flex-grow: 1;
}

@media (min-width: 1920px) {
    .pricing-features {
        min-height: 220px;
    }
    .pricing-features ul li {
        font-size: 1.05rem;
        padding: 0.4rem 0;
    }
}

@media (min-width: 1920px) and (max-height: 1080px) {
    .pricing-card-header {
        padding: 1.25rem !important;
    }
    .pricing-card-body {
        padding: 1.5rem 1.25rem !important;
    }
    .pricing-amount {
        margin-bottom: 1.5rem;
    }
    .pricing-amount .price {
        font-size: 3rem;
    }
    .pricing-features {
        min-height: 180px;
        margin-bottom: 1.5rem;
    }
    .pricing-features ul li {
        font-size: 0.95rem;
        padding: 0.25rem 0;
    }
    .pricing-cta .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1.05rem;
    }
}

@media (min-width: 2560px) {
    .pricing-features {
        min-height: 240px;
    }
    .pricing-features ul li {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .pricing-features ul li {
            padding: 0.3rem 0;
            color: #495057;
            font-size: 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f8f9fa;
        }

            .pricing-features ul li:last-child {
                border-bottom: none;
            }

            .pricing-features ul li::before {
                content: '✓';
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 24px;
                height: 24px;
                /* background: linear-gradient(135deg, #0d6efd, #6610f2); */
                background: #3A6EA5;
                color: #fff;
                border-radius: 50%;
                margin-right: 0.75rem;
                font-weight: 700;
                font-size: 0.875rem;
                flex-shrink: 0;
            }

.pricing-tiers {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

    .pricing-tiers .tier-label {
        font-size: 0.875rem;
        font-weight: 600;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }

.tier-option {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

    .tier-option:hover {
        border-color: #0d6efd;
        background: #f8f9ff;
    }

    .tier-option.selected {
        border-color: #0d6efd;
        background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
        box-shadow: 0 2px 8px rgba(13,110,253,0.15);
    }

    .tier-option input[type="radio"] {
        display: none;
    }

    .tier-option label {
        cursor: pointer;
        margin: 0;
        flex: 1;
        font-weight: 500;
        color: #212529;
    }

    .tier-option .custom-radio {
        width: 20px;
        height: 20px;
        border: 2px solid #dee2e6;
        border-radius: 50%;
        margin-right: 0.75rem;
        position: relative;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .tier-option.selected .custom-radio {
        border-color: #0d6efd;
        background: #0d6efd;
    }

        .tier-option.selected .custom-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
        }

    .tier-option .tier-discount {
        background: linear-gradient(135deg, #28a745, #20c997);
        color: #fff;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.75rem;
        font-weight: 600;
        margin-left: 0.5rem;
    }

.pricing-cta {
    margin-top: auto;
}

    .pricing-cta .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    @media (min-width: 1920px) {
        .pricing-cta .btn {
            padding: 1.125rem 2.25rem;
            font-size: 1.2rem;
        }
    }

    @media (min-width: 2560px) {
        .pricing-cta .btn {
            padding: 1.25rem 2.5rem;
            font-size: 1.3rem;
        }
    }

    .pricing-cta .btn-primary {
        /* background: linear-gradient(135deg, #0d6efd, #6610f2); */
        border: none;
        box-shadow: 0 4px 15px rgba(13,110,253,0.3);
    }

        .pricing-cta .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(13,110,253,0.4);
        }

.secure-checkout {
    text-align: center;
    padding: 2rem 0;
}

    .secure-checkout .secure-text {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #6c757d;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.7);
        border-radius: 2rem;
        backdrop-filter: blur(10px);
    }

        .secure-checkout .secure-text img {
            opacity: 0.7;
        }

/* Enhanced Mobile and Tablet Responsive */
@media (max-width: 991px) {
    .pricing-card-wrapper {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .site-under-construction-overlay {
        padding: 1rem;
    }

    .site-under-construction-overlay .overlay-box {
        padding: 2rem 1.5rem;
    }

    .pricing-section {
        padding: 2rem 0;
    }

    .pricing-header {
        margin-bottom: 2rem;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .pricing-card-header {
        padding: 1.25rem !important;
    }

    .pricing-card-body {
        padding: 1.5rem 1.25rem !important;
    }

    .pricing-amount {
        margin-bottom: 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .pricing-amount .currency {
        font-size: 1.5rem;
    }

    .pricing-amount .period {
        font-size: 1rem;
    }

    .pricing-features {
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    .pricing-features ul li {
        font-size: 0.95rem;
    }

    .pricing-tiers {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
        padding: 0.75rem;
    }

    .tier-option {
        padding: 0.65rem 0.85rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .site-under-construction-overlay .overlay-box {
        padding: 1.5rem 1rem;
    }

    .site-under-construction-overlay h1 {
        font-size: 1.5rem;
    }

    .site-under-construction-overlay p.lead {
        font-size: 1rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2rem;
    }

    .tier-option label {
        font-size: 0.9rem;
    }
}
