/* --- SEKTION 8: LAUFZEITEN --- */

.duration-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: transparent;
    min-height: 100vh;
}

/* Header */
.duration-header {
    text-align: center;
    margin-bottom: 60px;
}

.duration-label {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.duration-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
}

.duration-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
}

/* Container für beide Gruppen */
.plans-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    gap: 40px;
    align-items: stretch;
}

/* Vertikale Trennlinie */
.divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

/* Eine Gruppe (Cloud oder Infinite) */
.plan-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.group-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.text-orange {
    color: var(--primary-orange);
}

/* Das Grid für die Karten */
.options-grid {
    display: grid;
    gap: 20px;
}
.grid-2 {
    grid-template-columns: 1fr 1fr;
}

/* Einzelne Karte */
.duration-card {
    background-color: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.duration-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    background-color: rgba(255,255,255,0.02);
}

/* Spezielle Styles für "Infinite" Cards bei Hover */
.plan-group:last-child .duration-card:hover {
    border-color: var(--primary-orange);
}

/* Inhalte */
.d-name {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.d-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.d-price .small {
    font-size: 0.8rem;
    color: #52525b;
    font-weight: 400;
}

/* Badge (Spare X%) */
.d-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.1);
    color: #d4d4d8;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.d-badge.orange {
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--primary-orange);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Radio Circle (Fake Selection) */
.radio-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #3f3f46;
}

.duration-card:hover .radio-circle {
    border-color: white;
}
.plan-group:last-child .duration-card:hover .radio-circle {
    border-color: var(--primary-orange);
}

/* Highlight für beste Optionen */
.best-value {
    border-color: rgba(255,255,255,0.3);
    background: linear-gradient(to bottom right, #0c0b09, rgba(255,255,255,0.03));
}
.best-value-orange {
    border-color: rgba(249, 115, 22, 0.3);
    background: linear-gradient(to bottom right, #0c0b09, rgba(249, 115, 22, 0.05));
}

/* Responsive */
@media (max-width: 900px) {
    .plans-container {
        flex-direction: column;
        gap: 60px;
    }
    .divider-vertical {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }
}