/* Tab Container */
.tab-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 180px;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgba(255,255,255,0.2);
    color: white;
    box-shadow: inset 0 -3px 0 #fff;
}

.tab-icon {
    font-size: 18px;
}

.tab-text {
    white-space: nowrap;
}

/* Tab Content */
.tab-content-container {
    min-height: 600px;
}

.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
    }

    .tab-btn {
        min-width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tab-text {
        font-size: 12px;
    }

    .tab-icon {
        font-size: 16px;
    }
}
/* Content Styling */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Buttons in Tabs */
.cta-container {
    text-align: center;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 50px;
    color: #666;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Feature-Benefits als Cards */
.feature-benefits-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
}
/* Feature Badges - Verbesserte Lesbarkeit */
.feature-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    min-width: 80px;
    text-align: center;
}

/* Spezifische Badge-Typen mit besserer Sichtbarkeit */
.feature-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 10px; /* Abstand nach unten */
}


/* Kostenlos - Grün mit starkem Kontrast */
.feature-badge:contains("Kostenlos"),
.feature-badge[data-type="free"] {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: white;
    border: 2px solid #1e7e34;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    margin-bottom: 10px; /* Abstand nach unten */
}

/* Blitzschnell - Orange */
.feature-badge:contains("Blitzschnell"),
.feature-badge[data-type="fast"] {
    background: linear-gradient(135deg, #fd7e14, #ff8c42);
    color: white;
    border: 2px solid #dc6002;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    margin-bottom: 10px; /* Abstand nach unten */
}

/* Sicherheit - Rot */
.feature-badge.security,
.feature-badge[data-type="security"] {
    background: linear-gradient(135deg, #dc3545, #e85d75);
    color: white;
    border: 2px solid #bd2130;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    margin-bottom: 10px; /* Abstand nach unten */
}

/* Erfolg/Premium - Grün */
.feature-badge.success,
.feature-badge[data-type="success"] {
    background: linear-gradient(135deg, #198754, #20c997);
    color: white;
    border: 2px solid #146c43;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Legal/Zertifiziert - Blau */
.feature-badge.legal,
.feature-badge[data-type="legal"] {
    background: linear-gradient(135deg, #0d6efd, #3d8bfd);
    color: white;
    border: 2px solid #0a58ca;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Enterprise - Dunkelblau */
.feature-badge[data-type="enterprise"] {
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
    border: 2px solid #343a40;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Kritisch - Starkes Rot */
.feature-badge.critical,
.feature-badge[data-type="critical"] {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: 2px solid #bd2130;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    animation: pulse 2s infinite;
    margin-bottom: 10px; /* Abstand nach unten */
}

/* Hover-Effekte für bessere Interaktion */
.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.feature-benefits li {
    color: #2c3e50 !important; /* Statt grau */
    background: rgba(40, 167, 69, 0.08);
    padding: 8px 12px;
    border-radius: 4px;
}

/* Pulse-Animation für kritische Badges */
@keyframes pulse {
    0% { box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(220, 53, 69, 0.8); }
    100% { box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4); }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .feature-badge {
        font-size: 11px;
        padding: 6px 12px;
        min-width: 70px;
    }
}

/* Für sehr kleine Bildschirme */
@media (max-width: 480px) {
    .feature-badge {
        font-size: 10px;
        padding: 5px 10px;
        min-width: 60px;
        letter-spacing: 0.3px;
    }
}



.feature-benefit-card {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.feature-benefit-card:hover {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    border-color: #2196f3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-benefit-card .check-icon {
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-benefit-card .benefit-text {
    color: #212529; /* Sehr dunkler Text */
    font-weight: 500;
    font-size: 14px;
}
/* Vergrößerte Feature-Icons */
.feature-icon {
    font-size: 36px !important; /* Statt Standard ~16px */
    line-height: 1;
    margin-right: 15px;
    margin-bottom: 10px; /* Abstand nach unten */
    display: inline-block;
    vertical-align: top;
    min-width: 40px;
    text-align: center;
}

/* Für kleinere Bereiche */
.feature-icon.medium {
    font-size: 24px !important;
    min-width: 30px;
}

/* Für sehr prominente Bereiche */
.feature-icon.large {
    font-size: 48px !important;
    min-width: 60px;
    margin-right: 20px;
}
