/* --- SEKTION 7: PREISE (WIEDER GROSS) --- */

.pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: transparent;
    /* Höhe automatisch, damit nichts abgeschnitten wird */
    min-height: 100vh; 
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-label {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
}

/* --- MAIN PRICING GRID --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: nowrap; /* Auf Desktop nebeneinander erzwingen */
    /* Kein margin-bottom mehr nötig, da keine Sektion darunter */
}

/* Karte Styles */
.pricing-card {
    background-color: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    
    flex: 1;
    width: auto;
    min-width: 280px;
    
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 1px solid var(--primary-orange);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
    z-index: 2;
}

/* Badge */
.popular-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background-color: var(--primary-orange);
    color: #0c0b09;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Content */
.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.pricing-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    color: white;
}
.plan-sub {
    color: #71717a;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}
.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}
.price-period {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Features */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d4d4d8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.check-icon {
    color: #71717a;
    font-weight: bold;
}
.pricing-card.popular .check-icon {
    color: var(--primary-orange);
}

/* Buttons */
.btn-pricing-outline {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-pricing-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: white;
}

.btn-pricing-solid {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    background-color: var(--primary-orange);
    border-radius: 8px;
    color: #0c0b09;
    font-weight: 700;
    transition: transform 0.1s, box-shadow 0.2s;
}
.btn-pricing-solid:hover {
    background-color: #fb923c;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

/* Responsive */
@media (max-width: 950px) {
    .pricing-grid { flex-wrap: wrap; }
    .pricing-card { width: 100%; }
}