.pricing-wrapper {
    width: 100%;
    max-width: 1250px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    margin: 15px auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.plan-card {
    position: relative;
    border-radius: 24px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.18);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(90deg, #8f2fff, #ff008c);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(255, 0, 140, 0.25);
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: white;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    color: white;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.plan-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.plan-features li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(143, 47, 255, 0.18);
    color: #d8b4fe;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #8f2fff, #ff008c);
    transition: 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(255, 0, 140, 0.22);
}

.plan-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 0, 140, 0.35);
}

.highlight {
    border: 1px solid rgba(255, 0, 140, 0.25);
    box-shadow: 0 12px 35px rgba(255, 0, 140, 0.12);
    transform: scale(1.03);
}

.highlight .plan-name {
    color: #ffd4f0;
}

.footer-note {
    text-align: center;
    margin-top: 30px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

@media (max-width: 980px) {

    .pricing-wrapper{
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        margin: 15px auto;
    }

    .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {

    .pricing-header h1 {
    font-size: 2rem;
    }

    .pricing-grid {
    grid-template-columns: 1fr;
    }

    .pricing-wrapper {
    padding: 20px;
    }

    .highlight {
    transform: scale(1);
    }
}