.plans-section {
    padding: 100px 0;
    background-color: transparent;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.plan-card {
    background: #060606;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.plan-card.premium {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(180deg, #080808 0%, #0c0514 100%);
}

.plan-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.plan-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.plan-header h3 {
    font-size: 1.4rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.plan-card.featured h3 {
    color: #fff;
}

.plan-card.premium h3 {
    color: #2b0053;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.plan-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.plan-header .price span {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-sub {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    font-size: 0.95rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li.highlight {
    color: #fff;
    font-weight: 600;
}

.plan-features li.disabled {
    color: #333;
    text-decoration: line-through;
}

.plan-features li i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.plan-features li .fa-check {
    color: #2ecc71;
}

.plan-features li .fa-times {
    color: #e74c3c;
}

.plan-features li .fa-clock {
    color: #f1c40f;
}

.plan-features li .fa-infinity {
    color: #a855f7;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.plan-btn.basic {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.plan-btn.basic:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.plan-btn.glow {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.plan-btn.glow:hover {
    background: #e6e6e6;
    border-color: #e6e6e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.plan-btn.premium-btn {
    background: #2d0057;
    color: #fff;
    border: 2px solid #210041;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.plan-btn.premium-btn:hover {
    background: #40007c;
    border-color: #340068;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(75, 0, 145, 0.4);
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
}

.purchase-modal-box {
    width: 90%;
    max-width: 450px;
    background: #000;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

#pm-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.pm-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
}

.pm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.pm-value {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.pm-icons {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.pm-important-box {
    margin: 30px 0;
    background: rgb(0, 0, 0);
    padding: 25px;
    border-radius: 16px;
    border-left: 2px solid rgb(255, 255, 255);
    text-align: left;
}

.pm-important-header {
    font-weight: 900;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.pm-important-box ul {
    list-style: none;
    font-size: 0.85rem;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-important-box li {
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.pm-important-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.pm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-btn-tos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: #888;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pm-btn-tos:hover {
    border-color: #fff;
    color: #fff;
}

.pm-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pm-btn-checkout:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}