﻿body {
    background: linear-gradient(135deg, #e6f0fa 0%, #d4e4f7 100%);
}

.pricing-wrapper {
    width:90%;
    margin: 80px auto;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.title {
    font-size: 24px;
    font-weight: 700;
}

.subtitle {
    color: #777;
    margin-bottom: 5px;
}

.billing-toggle {
    display: inline-flex;
    background: #eaeafe;
    border-radius: 30px;
    padding: 6px;
    margin-bottom: 30px;
}

    .billing-toggle span {
        padding: 10px 25px;
        cursor: pointer;
        color: #555;
        font-weight: 600;
    }

    .billing-toggle .active {
        background: #818181;
        color: white;
        border-radius: 25px;
    }

.plans {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

    .plan-card:hover {
        transform: translateY(-8px);
    }

    .plan-card.popular {
        background: linear-gradient(180deg, #6a7bff, #7c858d);
        color: white;
        transform: scale(1.05);
    }

    .plan-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

.price {
    font-size: 32px;
    font-weight: bold;
}

    .price span {
        font-size: 14px;
        color: #ddd;
    }

.desc {
    margin: 15px 0 25px;
    font-size: 14px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

    .plan-card ul li {
        margin-bottom: 10px;
    }

.btn-pay {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: #eef1ff;
    color: #5b6cff;
}

.plan-card.popular .btn-pay {
    background: white;
    color: #5b6cff;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffce54;
    color: #333;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
