/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.tax-notice {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.price-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.price-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.section-icon {
    font-size: 2rem;
    line-height: 1;
}

.section-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table thead {
    background: rgba(0, 102, 255, 0.05);
}

.price-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid var(--border-color);
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: rgba(0, 102, 255, 0.03);
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: right;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

.package-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.package-card:last-child {
    margin-bottom: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.info-box h3 {
    margin-top: 0;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.highlight-price {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.back-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Light Mode Anpassungen */
html.light-mode .price-section {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

html.light-mode .price-table thead {
    background: rgba(0, 102, 255, 0.05);
}

html.light-mode .price-table tr:hover {
    background: rgba(0, 102, 255, 0.03);
}

html.light-mode .package-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(124, 58, 237, 0.05));
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .price-section {
        padding: 1.5rem;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .price-section {
        padding: 1rem;
    }

    .price-table {
        font-size: 0.85rem;
    }

    .package-features li {
        font-size: 0.9rem;
    }
}
