body {
    background: linear-gradient(135deg, #0f172a, #111827);
    color: white;
}

.pricing {
    padding: 140px 20px;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 80px;
}

.pricing-wrapper {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px auto;
}

.card {
    width: 340px;
    padding: 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
    top: -150px;
    left: -150px;
    transition: 0.3s;
}

.card:hover .glow {
    top: -50px;
    left: -50px;
}

.card:hover {
    transform: translateY(-20px) scale(1.04);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

.tag.pro {
    background: rgba(99, 102, 241, 0.3);
}

.price {
    margin: 30px 0;
}

.amount {
    font-size: 2.8rem;
    font-weight: 800;
}

.time {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 25px 0;
}

.features li {
    margin: 16px 0;
    padding-left: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.features li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 6px;
    color: #6366f1;
}

.features .main {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.features .sub {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
}

.linkbutton {
    text-decoration: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: 0.3s;
}

.linkbutton:hover {
    background: rgba(255, 255, 255, 0.2);
}

.primary {
    background: linear-gradient(90deg, #6366f1, #60a5fa);
}

.primary:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.7);
}

.highlight {
    border: 1px solid rgba(99, 102, 241, 0.6);
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 0.7rem;
    background: #6366f1;
    padding: 6px 10px;
    border-radius: 20px;
}

@media(max-width:768px) {

    .pricing {
        padding: 70px 15px;
    }

    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .card {
        width: 100%;
        max-width: 320px;
        padding: 22px;
        border-radius: 20px;
    }

    .card-header h2 {
        font-size: 1.2rem;
    }

    .tag {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .amount {
        font-size: 2rem;
    }

    .time {
        font-size: 0.7rem;
    }

    .features .main {
        font-size: 0.85rem;
    }

    .features .sub {
        font-size: 0.7rem;
    }

    .features li {
        margin: 12px 0;
    }

    .linkbutton {
        padding: 10px;
        font-size: 0.85rem;
    }

    .badge {
        top: 90px;
        left: 15px;
        font-size: 0.55rem;
        padding: 3px 6px;
    }

    .highlight {
        transform: scale(1);
    }
}