/* ======================
   VARIANTEN CARDS STYLING
   ====================== */

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.variant-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.variant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.variant-card:nth-child(1) {
    border-color: rgba(155, 135, 245, 0.2);
}

.variant-card:nth-child(1):hover {
    border-color: rgba(155, 135, 245, 0.5);
}

.variant-card:nth-child(2) {
    border-color: rgba(255, 99, 170, 0.2);
}

.variant-card:nth-child(2):hover {
    border-color: rgba(255, 99, 170, 0.5);
}

.variant-card:nth-child(3) {
    border-color: rgba(255, 138, 101, 0.2);
}

.variant-card:nth-child(3):hover {
    border-color: rgba(255, 138, 101, 0.5);
}

.variant-header {
    margin-bottom: 1.5rem;
}

.variant-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.variant-feature,
.variant-benefit {
    margin-bottom: 1.5rem;
}

.variant-feature strong,
.variant-benefit strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.variant-feature p,
.variant-benefit p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(155, 135, 245, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.lavender {
    background: linear-gradient(135deg, #9B87F5 0%, #C77DFF 100%);
}

.dot.pink {
    background: linear-gradient(135deg, #FF63AA 0%, #FF8ACC 100%);
}

.dot.orange {
    background: linear-gradient(135deg, #FF8A65 0%, #FFAB91 100%);
}

/* ======================
   CALENDAR CONTAINER
   ====================== */

.calendar-container {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ======================
   RESPONSIVE ANPASSUNGEN
   ====================== */

@media (max-width: 768px) {
    .variants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .variant-card {
        padding: 1.5rem;
    }
    
    .calendar-container iframe {
        height: 500px;
    }
}
