/* Pricing / RDP Section */
.pricing-rdp {
    padding: 5rem 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    width: 100%;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.pricing-features li i {
    color: var(--primary-light);
    width: 24px;
    text-align: center;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }
}