.services-container {
    width: 92%;
    max-width: 1300px;
    margin: 40px auto;
}

.services-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
}

.services-title i {
    color: #a855f7;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.plan-card {
    position: relative;
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark .plan-card {
    background: linear-gradient(145deg, #0f0f0f, #141414);
    border: 1px solid #1f1f1f;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(168,85,247,0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

body.dark .plan-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.plan-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    transition: 0.2s;
}

body.dark .plan-price {
    color: #fff;
}

.plan-price span {
    font-size: 14px;
    opacity: 0.6;
    margin-left: 4px;
}

.plan-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.plan-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
}

body.dark .plan-specs li {
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.plan-specs i {
    margin-right: 6px;
    opacity: 0.7;
}

.plan-features {
    margin-top: 12px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    opacity: 0.85;
}

.plan-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-coins {
    font-size: 13px;
    margin-bottom: 18px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.plan-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(168,85,247,0.4);
}

body.dark .plan-btn:hover {
    box-shadow: 0 10px 25px rgba(168,85,247,0.6);
}

.plan-duration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.duration-btn {
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
    position: relative;
}

.duration-btn:hover {
    background: #f3f4f6;
}

body.dark .duration-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ddd;
}

body.dark .duration-btn:hover {
    background: #222;
}

.duration-btn.active {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(168,85,247,0.4);
}

.duration-btn[data-mult="3"]::after {
    content: "-10%";
    position: absolute;
    top: -8px;
    right: -6px;
    font-size: 9px;
    background: #22c55e;
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
}

.duration-btn[data-mult="6"]::after {
    content: "-15%";
    position: absolute;
    top: -8px;
    right: -6px;
    font-size: 9px;
    background: #22c55e;
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 20px;
    }
}