/* ===================================================================
   CONTENT — aus dem Bestand extrahiert und dedupliziert.
   Quelle: 12 Seiten.  Setzt tokens.css und base.css voraus.
   =================================================================== */

.page-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a { color: var(--accent); text-decoration: none; }

.page-hero .breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-hero h1 .accent { color: var(--accent); }

.page-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.content-section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.content-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul { margin: 0.5rem 0 1.5rem 1.5rem; color: var(--text-light); }

.content-section li { margin-bottom: 0.5rem; line-height: 1.6; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-alt { background: var(--bg-alt); }

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 2rem 0;
    background: var(--white);
}

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table thead th:first-child { width: 30%; }

.comparison-table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody td:first-child { font-weight: 600; color: var(--primary); }

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: var(--bg-alt); }

.check { color: var(--success); font-weight: 700; }

.cross { color: var(--danger); font-weight: 700; }

.decision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.decision-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.decision-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

.decision-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.decision-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.decision-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.decision-card li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.decision-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.info-box {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.info-box p { color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }

.info-box .highlight {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-banner .btn-primary,
.info-box .btn-primary { background: var(--accent); color: var(--primary); }

.cta-banner .btn-primary:hover,
.info-box .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover { border-color: var(--accent); transform: translateY(-2px); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-detail .icon {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover { color: var(--accent); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

\n @media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in.animate { opacity: 1;
    transform: none;
    transition: none;
    };
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #e67e22;
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #e67e22;
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.warning-box p { color: var(--text); margin-bottom: 0.25rem; }

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.coverage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.coverage-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.coverage-card .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.coverage-card p { font-size: 0.9rem; color: var(--text-light); }

.coverage-card.included { border-color: var(--success); }

.coverage-card.excluded { border-color: var(--danger); opacity: 0.7; }

.contact-detail .icon {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1.5rem 0;
    background: var(--white);
}

.cost-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
}

.cost-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.cost-table tbody td:first-child { font-weight: 600; color: var(--primary); }

.cost-table tbody tr:last-child td { border-bottom: none; }

.cost-table tbody tr:hover { background: var(--bg-alt); }

.comparison-table thead th:first-child { width: 25%; }

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cost-card {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
}

.cost-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.cost-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cost-card .period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
}

.cost-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.35rem;
}

.decision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.badge-mandatory {
    background: rgba(192, 57, 43, 0.1);
    color: var(--danger);
    border: 1px solid rgba(192, 57, 43, 0.25);
}

.badge-recommended {
    background: rgba(200, 164, 94, 0.12);
    color: #9a7d3a;
    border: 1px solid rgba(200, 164, 94, 0.3);
}

.badge-optional {
    background: rgba(10, 46, 31, 0.06);
    color: var(--primary);
    border: 1px solid rgba(10, 46, 31, 0.15);
}

.content-section ol {
    margin: 0.5rem 0 1.5rem 1.5rem;
    color: var(--text-light);
    counter-reset: steps;
}

.content-section ol li {
    margin-bottom: 1rem;
    line-height: 1.7;
    counter-increment: steps;
}

.trust-note {
    background: rgba(200,164,94,0.1);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.content-section table th {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.content-section table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.content-section table tr:nth-child(even) td { background: var(--bg-alt); }

.content {
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-light); }

.content li { margin-bottom: 0.35rem; font-size: 0.95rem; }

.english-note {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.english-note p { color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }

.english-note a { color: var(--accent); }

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content ul,
.content ol { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-light); }

.content li {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.content strong { color: var(--text); }

.content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: color 0.3s;
}

.content a:hover { color: var(--accent); }

.content code {
    background: var(--bg-alt);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.content table th,
.content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.content table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--primary);
}

.lang-note {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cta-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-nav:hover { background: var(--primary-light); }

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.content-inner { max-width: 600px; }

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-banner .btn-primary:hover,
.info-box .btn-primary:hover { background: var(--primary-light); }

<!-- Mobile Nav Fix - highest specificity override for broken brace balance --> @media (max-width: 768px) {
    .nav-dropdown.active .mega-dropdown { display: block !important;
    } .nav-dropdown .mega-dropdown { display: none !important;
    } nav.open { display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(250, 250, 247, 0.98) !important;
    padding: 1.5rem !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    gap: 0 !important;
    } nav.open a { padding: 0.75rem 0 !important;
    border-bottom: 1px solid var(--border) !important;
    font-size: 1.1rem !important;
    } .nav-dropdown-trigger { display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    } .nav-dropdown.active .mega-dropdown { position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 1rem !important;
    background: transparent !important;
    min-width: auto !important;
    } .mega-dropdown-inner { grid-template-columns: 1fr !important;
    gap: 0 !important;
    } .mega-col-title { font-size: 0.8rem !important;
    margin: 0.75rem 0 0.25rem 0 !important;
    padding-bottom: 0.25rem !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--accent) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    } .mega-dropdown a { padding: 0.4rem 0 !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
    } .cta-nav { margin-top: 0.5rem !important;
    text-align: center !important;
    } .lang-switch { margin-top: 0.5rem !important;
    display: inline-block !important;
    };
}

/* ── Breakpoints ─────────────────────────────────── */

@media (max-width: 768px) {
    .page-hero { padding: 6rem 1rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .decision-cards { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 0.65rem 0.75rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-section h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.7rem; }
    .btn { width: 100%; justify-content: center; }
    .comparison-table { display: block; overflow-x: auto; }
}

@media (max-width: 768px) {
    .page-hero { padding: 6rem 1rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .coverage-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.7rem; }
    .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .page-hero { padding: 6rem 1rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .decision-cards { grid-template-columns: 1fr; }
    .cost-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 0.65rem 0.75rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-section h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .page-hero { padding: 6rem 1rem 3rem; }
    .page-hero h1 { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-section h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .content { padding: 5rem 1rem 3rem; }
    .content h1 { font-size: 1.7rem; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .lang-switch { align-self: flex-start; }
    .error-code { font-size: 4rem; }
    h1 { font-size: 1.5rem; }
}
