﻿/*Pricing*/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(180deg,#f8fafc,#eef2f7);
}

.pricing-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.pricing-section1 {
    padding: 0px 0px;
    max-width: 1200px;
    margin: auto;
}

.pricing-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    position: relative;
    transition: .3s ease;
}

    .plan-card:hover {
        transform: translateY(-6px);
    }

    .plan-card.active {
        border: 2px solid #4f46e5;
    }

.badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    border-radius: 50px;
}

.plan-head h3 {
    margin: 0;
    font-size: 22px;
}

.plan-head p {
    font-size: 14px;
    color: #64748b;
}

.plan-price {
    font-size: clamp(28px, 5vw, 28px);
    font-weight: 700;
    margin: 5px 0;
}

    .plan-price small {
        font-size: 14px;
        color: #ef4444;
        text-decoration: line-through;
        margin-left: 8px;
    }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .plan-features li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 14px;
    }

    .plan-features label {
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .plan-features em {
        background: #4338ca;
        color: #ffffff;
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 6px;
        font-style: normal;
    }

.plan-btn {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #4f46e5;
    background: transparent;
    color: #4f46e5;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .plan-btn.primary,
    .plan-btn:hover {
        background: #4f46e5;
        color: #fff;
    }

/* 📱 Mobile tweaks */
@media (max-width: 480px) {
    .plan-card {
        padding: 22px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .badge-top {
        font-size: 11px;
    }
}

[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    pointer-events: none;
    opacity: 3;
    border: 1px solid #662d2d;
}

 .ribbon.bg-success {
            background: #28a745;
        }