

/* Pricing Section Styles (von pricing.css übernommen) */
.pricing-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    margin: 0 auto 2rem auto;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-black);
}

.subscribe-container {
    margin: 0 auto;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 10px;
    position: relative;
}

.container_tahoe {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.05); 
    border-radius: 30px;
    padding: 2rem;
    color: var(--color-black);
    border: 1px solid var(--primary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.btn-gradient-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    color: white;
}

.btn-gradient-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(84, 102, 240, 0.4);
    color: white;
}

/* Feature Box Styles (angepasst für helles Design) */
.feature-box {
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    transition: transform 0.3s ease !important;
    height: 100%;
    border: 1px solid rgba(84, 102, 240, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(84, 102, 240, 0.05);
    border-color: rgba(84, 102, 240, 0.2);
}

/* Step Box Styles */
.step-box {
    position: relative;
    padding-left: 45px;
    margin-bottom: 2rem;
}

.contact-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Modal Styles */
.modal-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
}

.modal-close {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    border: none;
    background: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        padding: 1rem;
    }

    .subscribe-container {
        margin-bottom: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .step-box {
        padding-left: 35px;
    }

    .contact-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/*** SOLUTION END ***/