/* Pricing Page Styles */
.pricing-hero {
    min-height: 100vh;
    padding: 230px 0 4rem 0;
    position: relative;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-header h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.discount::after {
    content: "-25%";
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(12deg);
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.pricing-card.videokurs-discount::after {
    content: "-20%";
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: black;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(12deg);
    box-shadow: 0 3px 8px rgba(67, 233, 123, 0.3);
    z-index: 2;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    font-size: 1rem;
    color: #ff6b6b;
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.8;
}

.new-price {
    color: #43e97b !important;
    font-weight: 800;
}

.funding-card {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    grid-column: span 2;
}

.funding-card .package-name {
    color: #ff6b6b !important;
}

.funding-card .package-subtitle {
    color: #ff6b6b !important;
    font-weight: 600;
}

.funding-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.funding-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.funding-content strong {
    color: #ff6b6b;
    font-weight: 600;
}

.premium-benefits {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 107, 0.3);
}

.premium-benefits h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.benefits-list li {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    padding-left: 5px;
}

.call-to-action {
    font-weight: 600;
    color: #ff6b6b !important;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    padding: 15px 0 5px 0;
}

/* Responsive für kleinere Bildschirme */
@media (max-width: 768px) {
    .funding-card {
        grid-column: span 1;
    }
}

/* Funding Overview Table Styles */
.funding-overview {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.funding-overview-header {
    text-align: center;
    margin-bottom: 40px;
}

.funding-overview-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.funding-overview-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.funding-table-container {
    overflow-x: auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
}

.funding-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.section-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 8px;
    font-weight: bold;
    text-align: left;
    font-size: 0.85rem;
}

.company-size-row {
    background: rgba(255, 255, 255, 0.1);
}

.company-size-cell {
    text-align: center;
    padding: 10px 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    color: white;
}

.people-icons {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 3px;
    line-height: 1;
}

.company-label {
    font-weight: bold;
    color: white;
    font-size: 0.75rem;
    line-height: 1.1;
}

.red-label {
    color: #ff6b6b;
    font-weight: bold;
}

.row-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    font-weight: bold;
    color: white;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 180px;
    font-size: 0.8rem;
    line-height: 1.2;
}

.data-cell {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 4px;
    text-align: center;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.03);
}

.percentage-badge {
    padding: 6px 8px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin: 1px;
}

.badge-100 { background: linear-gradient(135deg, #667eea, #764ba2); }
.badge-75 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.badge-50 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.badge-25 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.badge-60 { background: linear-gradient(135deg, #fa709a, #fee140); }

.special-note {
    font-size: 0.65rem;
    color: #667eea;
    margin-top: 2px;
    line-height: 1.1;
}

.no-coverage {
    color: #95a5a6;
    font-size: 0.75rem;
    font-weight: normal;
}

.covered {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.employer-note {
    color: #667eea;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1.1;
}

.neu-badge {
    position: absolute;
    top: -8px;
    right: 5px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.qualification-money-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}

.qualification-money-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.qualification-money-note strong {
    color: #667eea;
}

@media (max-width: 768px) {
    .funding-overview {
        margin-top: 60px;
        padding: 15px 8px;
    }
    
    .funding-overview-header h2 {
        font-size: 1.3rem;
    }
    
    .funding-overview-header .subtitle {
        font-size: 0.85rem;
    }
    
    .funding-table {
        font-size: 0.6rem;
        min-width: 100%;
    }
    
    .section-header {
        font-size: 0.7rem;
        padding: 8px 4px;
    }
    
    .row-header {
        width: 80px;
        font-size: 0.6rem;
        padding: 6px 4px;
        line-height: 1.1;
    }
    
    .company-size-cell {
        padding: 6px 2px;
    }
    
    .people-icons {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .company-label {
        font-size: 0.65rem;
    }
    
    .data-cell {
        padding: 6px 2px;
        font-size: 0.6rem;
    }
    
    .percentage-badge {
        padding: 3px 5px;
        font-size: 0.6rem;
        margin: 1px 0;
    }
    
    .special-note {
        font-size: 0.55rem;
        margin-top: 1px;
    }
    
    .employer-note {
        font-size: 0.55rem;
    }
    
    .neu-badge {
        padding: 1px 4px;
        font-size: 0.5rem;
        top: -6px;
        right: 2px;
    }
    
    .qualification-money-note {
        margin-top: 15px;
        padding: 12px;
    }
    
    .qualification-money-note p {
        font-size: 0.8rem;
    }
}





.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.package-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 5px;
    line-height: 1;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex: 1;
}

.features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-button {
    width: 100%;
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    flex-shrink: 0;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(238, 90, 36, 0.1));
    border-color: #ff6b6b;
}

.highlight .price {
    color: #ff6b6b;
}

.highlight .features li::before {
    color: #ffeaa7;
}

.highlight .cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.highlight .cta-button:hover {
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px 0;
    }

    .pricing-container {
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 25px 15px;
    }

    .features li {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 15px;
    }
}