/* ===== PROFILE PAGE SPECIFIC CSS ===== */

/* ===== HERO ===== */
.hero {
    max-width:1120px; margin:0 auto; padding:24px 24px 0;
    display:grid; grid-template-columns:1fr 380px;
    gap:40px; align-items:start;
}
.hero-badge {
    display:inline-flex; align-items:center; gap:6px;
    background:var(--frost-50); border:1px solid var(--frost-200);
    border-radius:100px; padding:5px 12px;
    font-size:0.78rem; font-weight:500; color:var(--frost-600);
    margin-bottom:16px;
}
.hero-badge .pulse {
    width:7px; height:7px; background:var(--emerald-500);
    border-radius:50%; animation:pulse 2s infinite;
}
.hero h1 {
    font-family:var(--font-display); font-size:2.8rem;
    font-weight:800; line-height:1.12; color:var(--slate-900);
    letter-spacing:-0.02em; margin-bottom:14px;
}
.hero h1 em { font-style:italic; color:var(--frost-600); }
.hero-sub {
    font-size:1.05rem; color:var(--slate-600);
    max-width:520px; margin-bottom:24px;
}
.hero-stats {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:2px; background:var(--slate-200);
    border-radius:var(--radius-md); overflow:hidden;
}
.hero-stat { background:var(--slate-50); padding:14px 16px; text-align:center; }
.hero-stat .label {
    font-size:0.7rem; font-weight:600; text-transform:uppercase;
    letter-spacing:0.06em; color:var(--slate-600); margin-bottom:3px;
}
.hero-stat .value {
    font-family:var(--font-display); font-size:1.4rem; font-weight:700;
}
.hero-stat .value.low { color:var(--slate-600); }
.hero-stat .value.mid { color:var(--frost-600); }
.hero-stat .value.high { color:var(--emerald-600); }
.hero-stat .sub { font-size:0.7rem; color:var(--slate-600); }

/* ===== QUICK CALCULATOR ===== */
.quick-calc {
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
    padding:24px; position:sticky; top:76px;
}
.quick-calc h2 {
    font-family:var(--font-display); font-size:1.15rem;
    font-weight:700; margin-bottom:3px;
}
.quick-calc .calc-sub {
    font-size:0.82rem; color:var(--slate-600); margin-bottom:16px;
}
.form-group { margin-bottom:14px; }
.form-group label {
    display:block; font-size:0.78rem; font-weight:600;
    color:var(--slate-600); margin-bottom:4px;
}
.form-group select {
    width:100%; padding:9px 11px;
    border:1px solid var(--slate-200); border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.88rem;
    background:var(--slate-50); color:var(--slate-800);
    cursor:pointer; appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 12px center;
}
input[type="range"] {
    width:100%; -webkit-appearance:none; height:5px;
    background:var(--slate-200); border-radius:3px;
    outline:none; cursor:pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance:none; width:18px; height:18px;
    background:var(--frost-500); border-radius:50%;
    border:3px solid var(--white);
    box-shadow:0 2px 6px rgba(26,124,230,0.3);
}
.range-display {
    text-align:center; font-family:var(--font-display);
    font-size:1rem; font-weight:700;
    color:var(--frost-600); margin-top:3px;
}
.calc-result {
    background:linear-gradient(135deg,var(--frost-50),var(--frost-100));
    border:1px solid var(--frost-200); border-radius:var(--radius-md);
    padding:14px; text-align:center; margin-top:16px; display:none;
}
.calc-result.visible { display:block; animation:fadeUp 0.4s ease; }
.calc-result .result-label {
    font-size:0.75rem; font-weight:600; text-transform:uppercase;
    letter-spacing:0.05em; color:var(--frost-600); margin-bottom:3px;
}
.calc-result .result-value {
    font-family:var(--font-display); font-size:1.6rem;
    font-weight:800; color:var(--frost-700);
}
.calc-result .result-sub {
    font-size:0.78rem; color:var(--slate-600); margin-top:3px;
}
.calc-cta {
    display:block; width:100%; margin-top:12px; padding:12px;
    background:var(--frost-600); color:var(--white);
    border:none; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.88rem; font-weight:600;
    cursor:pointer; transition:all 0.2s;
    text-align:center; text-decoration:none;
}
.calc-cta:hover {
    background:var(--frost-700); transform:translateY(-1px);
    box-shadow:var(--shadow-md);
}
.calc-cta.secondary {
    background:transparent; color:var(--frost-600);
    border:1px solid var(--frost-200);
    margin-top:8px; padding:9px; font-size:0.8rem;
}
.calc-cta.secondary:hover { background:var(--frost-50); }
.calc-cta.wa { background:#25D366; margin-top:8px; }
.calc-cta.wa:hover { background:#1fb855; }

/* ===== SALARY TABLES ===== */
.table-tabs {
    display:flex; gap:4px; margin-bottom:20px;
    background:var(--slate-100); border-radius:var(--radius-sm);
    padding:4px; width:fit-content;
}
.table-tab {
    padding:7px 16px; border-radius:6px;
    font-size:0.82rem; font-weight:500; cursor:pointer;
    border:none; background:transparent; color:var(--slate-600);
    font-family:var(--font-body); transition:all 0.2s;
}
.table-tab.active {
    background:var(--white); color:var(--slate-800);
    box-shadow:var(--shadow-sm);
}
.salary-table {
    width:100%; border-collapse:separate; border-spacing:0;
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); overflow:hidden;
}
.salary-table thead th {
    background:var(--slate-50); padding:10px 14px;
    font-size:0.75rem; font-weight:600; text-transform:uppercase;
    letter-spacing:0.04em; color:var(--slate-600);
    text-align:left; border-bottom:1px solid var(--slate-200);
}
.salary-table tbody td {
    padding:12px 14px; font-size:0.88rem;
    border-bottom:1px solid var(--slate-100);
}
.salary-table tbody tr:last-child td { border-bottom:none; }
.salary-table tbody tr:hover { background:var(--frost-50); }
.salary-table .salary {
    font-weight:600; font-family:var(--font-display); font-size:0.95rem;
}
.salary-table .salary.hl { color:var(--frost-600); }
.salary-highlight {
    font-weight:600; font-family:var(--font-display);
    font-size:0.95rem; color:var(--frost-600);
}
.table-panel { display:none; }
.table-panel.active { display:block; }
.table-source { font-size:0.72rem; color:var(--slate-600); margin-top:10px; }
.bar-c {
    width:100%; max-width:140px; height:7px;
    background:var(--slate-100); border-radius:4px; overflow:hidden;
}
.bar-f {
    height:100%;
    background:linear-gradient(90deg,var(--frost-400),var(--frost-600));
    border-radius:4px;
}

/* ===== CONTENT + SIDEBAR ===== */
.content-section {
    display:grid; grid-template-columns:1fr 320px;
    gap:40px; align-items:start;
}
.article-content h2 {
    font-family:var(--font-display); font-size:1.5rem;
    font-weight:700; margin-top:36px; margin-bottom:10px;
    color:var(--slate-900);
}
.article-content h2:first-child { margin-top:0; }
.article-content p {
    color:var(--slate-600); margin-bottom:14px; font-size:0.92rem;
}
.article-content ul {
    margin:0 0 14px 18px; color:var(--slate-600);
}
.article-content li { margin-bottom:5px; font-size:0.92rem; }
.key-insight {
    background:linear-gradient(135deg,var(--frost-50),#f0f0ff);
    border-left:4px solid var(--frost-500);
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
    padding:14px 18px; margin:20px 0;
}
.key-insight .it {
    font-weight:700; font-size:0.82rem;
    color:var(--frost-600); margin-bottom:3px;
}
.key-insight p { color:var(--slate-600); margin:0; font-size:0.88rem; }

/* Sidebar */
.sidebar { position:sticky; top:76px; }
.sidebar-cta {
    background:var(--slate-900); color:var(--white);
    border-radius:var(--radius-lg); padding:24px; margin-bottom:16px;
}
.sidebar-cta .sidebar-cta-title {
    font-family:var(--font-display); font-size:1.1rem;
    font-weight:700; margin-bottom:6px; line-height:1.3;
}
.sidebar-cta p {
    font-size:0.82rem; color:var(--slate-200);
    margin-bottom:14px; line-height:1.5;
}
.sidebar-cta .cta-btn {
    display:block; width:100%; padding:11px;
    background:var(--frost-500); color:var(--white);
    border:none; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.88rem; font-weight:600;
    cursor:pointer; text-align:center; text-decoration:none; transition:all 0.2s;
}
.sidebar-cta .cta-btn:hover { background:var(--frost-400); }
.sidebar-cta .wa-btn {
    background:#25D366; margin-top:8px;
    display:block; width:100%; padding:11px;
    color:var(--white); border:none; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.82rem; font-weight:600;
    cursor:pointer; text-align:center; text-decoration:none;
}
.sidebar-cta .wa-btn:hover { background:#1fb855; }

/* Trust Badges */
.trust-badges { display:flex; flex-direction:column; gap:8px; }
.trust-badge {
    display:flex; align-items:center; gap:8px;
    padding:10px 14px; background:var(--white);
    border:1px solid var(--slate-200); border-radius:var(--radius-sm);
    font-size:0.8rem; color:var(--slate-600);
}
.trust-badge svg {
    width:16px; height:16px; color:var(--emerald-500); flex-shrink:0;
}

/* ===== JOB CARDS ===== */
.jobs-section {
    background:var(--slate-50); border-radius:var(--radius-xl); padding:40px;
}
.job-cards { display:grid; gap:14px; contain: layout style; }
.job-card {
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:20px;
    display:grid; grid-template-columns:1fr auto;
    gap:14px; align-items:center; transition:all 0.2s; cursor:pointer;
}
.job-card:hover {
    border-color:var(--frost-300); box-shadow:var(--shadow-md);
    transform:translateY(-2px);
}
.job-badge {
    display:inline-flex; align-items:center; gap:4px;
    font-size:0.7rem; font-weight:600;
    padding:2px 7px; border-radius:4px; margin-bottom:5px; width:fit-content;
}
.job-badge.hot { background:#fef3c7; color:#92400e; }
.job-badge.new { background:#dbeafe; color:#1e40af; }
.job-badge.top { background:#d1fae5; color:#065f46; }
.job-card .job-title {
    font-family:var(--font-display); font-size:1.05rem;
    font-weight:600; margin-bottom:6px; line-height:1.3;
}
.job-meta {
    display:flex; gap:14px; flex-wrap:wrap;
    font-size:0.8rem; color:var(--slate-600);
}
.job-salary {
    font-family:var(--font-display); font-size:1.2rem;
    font-weight:700; color:var(--frost-600); text-align:right;
}
.job-cta {
    display:inline-flex; align-items:center; gap:5px;
    background:var(--frost-50); border:1px solid var(--frost-200);
    color:var(--frost-600); padding:7px 12px; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.78rem; font-weight:600;
    cursor:pointer; transition:all 0.2s; text-decoration:none;
}
.job-cta:hover { background:var(--frost-100); }

/* ===== SUCCESS STORIES ===== */
.story-card {
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:20px;
}
.story-label { font-size:0.78rem; color:var(--slate-600); margin-bottom:8px; }
.story-salary { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.story-before {
    font-size:0.85rem; color:var(--slate-700); text-decoration:line-through;
}
.story-arrow { color:var(--slate-600); }
.story-after { font-size:1rem; font-weight:700; color:var(--emerald-600); }
.story-detail { font-size:0.82rem; color:var(--slate-600); margin:0; }

/* ===== RELATED PROFILES ===== */
.related-card {
    display:flex; flex-direction:column;
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:16px 20px;
    text-decoration:none; transition:all 0.2s;
}
.related-card:hover {
    border-color:var(--frost-400); box-shadow:var(--shadow-md);
    transform:translateY(-2px);
}
.related-card .related-title {
    font-size:0.9rem; font-weight:600;
    color:var(--slate-800); margin-bottom:4px; font-family:var(--font-display); line-height:1.3;
}
.related-median {
    font-family:var(--font-display); font-size:1.1rem;
    font-weight:700; color:var(--frost-600);
}
.related-label { font-size:0.72rem; color:var(--slate-600); margin-bottom:6px; }
.related-arrow { font-size:0.8rem; color:var(--frost-600); font-weight:500; }

/* ===== FAKTOREN CARDS ===== */
.faktor-card {
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:20px;
}
.faktor-card .faktor-title {
    font-family:var(--font-display); font-size:1rem;
    font-weight:600; margin-bottom:6px; color:var(--slate-800); line-height:1.3;
}
.faktor-card p { font-size:0.88rem; color:var(--slate-600); margin:0; }

/* ===== KARRIEREPFAD ===== */
.karriere-step {
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:20px; margin-bottom:12px;
}
.karriere-step .karriere-title {
    font-family:var(--font-display); font-size:1rem;
    font-weight:600; color:var(--slate-800); margin-bottom:4px; line-height:1.3;
}
.karriere-step .gehalt {
    font-family:var(--font-display); font-size:1.1rem;
    font-weight:700; color:var(--frost-600); margin-bottom:2px;
}
.karriere-step .jahre {
    font-size:0.78rem; color:#374151; margin-bottom:6px;
}
.karriere-step p { font-size:0.88rem; color:var(--slate-600); margin:0; }

/* ===== MULTI-STEP MODAL ===== */
.ms-overlay {
    display:none; position:fixed; top:0; left:0; right:0; bottom:0;
    background:rgba(15,23,42,0.7);
    z-index:200; align-items:center; justify-content:center;
}
.ms-overlay.open { display:flex; }
.ms-modal {
    background:var(--white); border-radius:var(--radius-xl);
    padding:36px; max-width:440px; width:90%;
    position:relative; box-shadow:0 32px 64px rgba(0,0,0,0.2);
}
.ms-close {
    position:absolute; top:16px; right:16px;
    background:none; border:none; font-size:1.2rem;
    cursor:pointer; color:var(--slate-600);
}
.ms-progress { display:flex; gap:6px; margin-bottom:24px; }
.ms-dot {
    height:4px; flex:1; border-radius:2px;
    background:var(--slate-200); transition:background 0.3s;
}
.ms-dot.active { background:var(--frost-500); }
.ms-step { display:none; }
.ms-step.active { display:block; animation:fadeUp 0.3s ease; }
.ms-step .ms-title {
    font-family:var(--font-display); font-size:1.3rem;
    font-weight:700; margin-bottom:6px; line-height:1.3;
}
.ms-step p {
    font-size:0.88rem; color:var(--slate-600); margin-bottom:16px;
}
.ms-options { display:grid; gap:8px; }
.ms-opt {
    padding:12px 16px; border:1px solid var(--slate-200);
    border-radius:var(--radius-sm); cursor:pointer;
    font-size:0.9rem; font-weight:500; transition:all 0.2s;
    text-align:left; background:var(--white);
    font-family:var(--font-body); color:var(--slate-700);
}
.ms-opt:hover, .ms-opt.selected {
    border-color:var(--frost-500); background:var(--frost-50);
    color:var(--frost-700);
}
.ms-input {
    width:100%; padding:12px;
    border:1px solid var(--slate-200); border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.9rem; margin-bottom:10px;
}
.ms-input:focus { outline:none; border-color:var(--frost-500); }
.ms-btn {
    width:100%; padding:13px; background:var(--frost-600);
    color:var(--white); border:none; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.9rem; font-weight:600;
    cursor:pointer; transition:all 0.2s; margin-top:8px;
}
.ms-btn:hover { background:var(--frost-700); }
.ms-btn.wa { background:#25D366; }
.ms-btn.wa:hover { background:#1fb855; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display:flex; flex-direction:column; gap:8px; }
.faq-item {
    border:1px solid var(--slate-200); border-radius:var(--radius-md);
    overflow:hidden;
}
.faq-q {
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 18px; cursor:pointer; font-weight:600; font-size:0.92rem;
    background:var(--white); border:none; width:100%; text-align:left;
    font-family:var(--font-body); color:var(--slate-800);
}
.faq-q svg {
    width:16px; height:16px; color:var(--slate-500);
    transition:transform 0.3s; flex-shrink:0;
}
.faq-item.open .faq-q svg { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.3s ease; }
.faq-a-inner {
    padding:0 18px 16px; font-size:0.88rem;
    color:var(--slate-600); line-height:1.7;
}
.faq-item.open .faq-a { max-height:400px; }
.faq-question {
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 18px; cursor:pointer; font-weight:600; font-size:0.92rem;
    background:var(--white); border:none; width:100%; text-align:left;
    font-family:var(--font-body); color:var(--slate-800);
}
.faq-answer {
    max-height:0; overflow:hidden; transition:max-height 0.3s ease;
    padding:0 18px; font-size:0.88rem; color:var(--slate-600); line-height:1.7;
}
.faq-item.open .faq-answer { max-height:600px; padding:0 18px 16px; }

/* ===== CROSS-LINKS / VERWANDTE PROFILE ===== */
.cross-links-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:12px; margin-top:16px; contain: layout style;
}
.cross-link-card {
    display:flex; justify-content:space-between; align-items:center;
    background:var(--white); border:1px solid var(--slate-200);
    border-radius:var(--radius-md); padding:16px 20px;
    text-decoration:none; transition:all 0.2s;
}
.cross-link-card:hover {
    border-color:var(--frost-400); box-shadow:var(--shadow-md);
    transform:translateY(-2px);
}
.cross-link-title { font-size:0.9rem; font-weight:600; color:var(--slate-800); }
.cross-link-salary {
    font-size:0.82rem; font-weight:500;
    color:var(--frost-600); white-space:nowrap;
}

/* ===== CITY LINKS ===== */
.city-link {
    display:inline-block; padding:6px 14px;
    background:var(--frost-50); border:1px solid var(--frost-200);
    border-radius:var(--radius-sm); font-size:0.82rem;
    color:var(--frost-600); text-decoration:none;
    margin:4px; transition:all 0.2s;
}
.city-link:hover { background:var(--frost-100); border-color:var(--frost-400); }

/* ===== FINAL CTA ===== */
.final-cta {
    background:linear-gradient(135deg,var(--slate-900) 0%,#1a2744 50%,var(--frost-700) 100%);
    border-radius:var(--radius-xl); padding:56px 40px;
    text-align:center; color:var(--white);
    position:relative; overflow:hidden;
}
.final-cta::before {
    content:''; position:absolute; top:-50%; right:-30%;
    width:500px; height:500px;
    background:radial-gradient(circle,rgba(26,124,230,0.15) 0%,transparent 70%);
    border-radius:50%;
}
.final-cta h2 {
    font-family:var(--font-display); font-size:2rem;
    font-weight:800; margin-bottom:10px; position:relative;
}
.final-cta p {
    font-size:1rem; color:var(--frost-200);
    max-width:480px; margin:0 auto 24px; position:relative;
}
.final-btns {
    display:flex; gap:12px; justify-content:center;
    flex-wrap:wrap; position:relative;
}
.final-btns .btn {
    padding:14px 28px; border-radius:var(--radius-sm);
    font-family:var(--font-body); font-size:0.9rem; font-weight:600;
    cursor:pointer; border:none; transition:all 0.2s; text-decoration:none;
}
.final-btns .btn-primary { background:var(--frost-500); color:#fff; }
.final-btns .btn-primary:hover { background:var(--frost-400); }
.final-btns .btn-wa { background:#25D366; color:#fff; }
.final-btns .btn-wa:hover { background:#1fb855; }
.final-btns .btn-outline {
    background:transparent; color:#fff;
    border:1px solid rgba(255,255,255,0.3);
}
.final-btns .btn-outline:hover { background:rgba(255,255,255,0.1); }
.final-trust {
    display:flex; justify-content:center; gap:20px;
    margin-top:16px; position:relative;
}
.final-trust span {
    font-size:0.75rem; color:var(--frost-200);
    display:flex; align-items:center; gap:4px;
}

/* ===== QUELLEN ===== */
.quellen-list {
    font-size:0.82rem; color:var(--slate-600);
    margin:0 0 8px 16px; line-height:1.8; list-style:disc;
}
.quellen-list a { color:var(--frost-600); }
.quellen-list li { margin-bottom:4px; }

/* ===== MOBILE RESPONSIVE (profile) ===== */
@media (max-width:768px) {
    .hero { grid-template-columns:1fr; padding-top:12px; gap:20px; }
    .hero h1 { font-size:1.6rem; line-height:1.18; }
    .hero-sub { font-size:0.92rem; margin-bottom:16px; }
    .hero-badge { font-size:0.72rem; padding:4px 10px; margin-bottom:10px; }
    .hero-stats { grid-template-columns:repeat(3,1fr); }
    .hero-stat { padding:10px 8px; }
    .hero-stat .value { font-size:1.15rem; }
    .hero-stat .label { font-size:0.72rem; }
    .hero-stat .sub { font-size:0.72rem; }
    .quick-calc { position:static; padding:20px; box-shadow:var(--shadow-md); }
    .quick-calc h2 { font-size:1.05rem; }
    .table-panel { overflow-x:auto; -webkit-overflow-scrolling:touch; }
    .salary-table { min-width:520px; }
    .table-tabs { overflow-x:auto; width:100%; }
    .table-tab { white-space:nowrap; font-size:0.78rem; padding:6px 12px; }
    .content-section { grid-template-columns:1fr; gap:24px; }
    .sidebar { position:static; }
    .article-content h2 { font-size:1.25rem; margin-top:28px; }
    .article-content p, .article-content li { font-size:0.88rem; }
    .key-insight { padding:12px 14px; }
    .jobs-section { padding:24px 16px; border-radius:var(--radius-lg); }
    .job-card { grid-template-columns:1fr; padding:16px; gap:10px; }
    .job-card .job-title { font-size:0.95rem; }
    .job-salary { text-align:left; font-size:1.1rem; }
    .job-meta { gap:8px; }
    .job-meta span { font-size:0.75rem; }
    .faq-q { padding:14px 16px; font-size:0.88rem; }
    .faq-a-inner { padding:0 16px 14px; font-size:0.85rem; }
    .final-cta { padding:32px 20px; border-radius:var(--radius-lg); }
    .final-cta h2 { font-size:1.4rem; }
    .final-cta p { font-size:0.9rem; }
    .final-btns { flex-direction:column; align-items:stretch; gap:10px; }
    .final-btns .btn { padding:14px 20px; text-align:center; }
    .final-trust { flex-direction:column; gap:6px; align-items:center; }
    .ms-modal {
        padding:24px 20px; max-width:100%;
        width:95%; border-radius:var(--radius-lg);
    }
    .ms-step .ms-title { font-size:1.1rem; }
    .ms-opt { min-height:44px; padding:12px 16px; font-size:0.85rem; }
    .sidebar-cta { padding:20px; }
    .sidebar-cta .sidebar-cta-title { font-size:1rem; }
}

@media (max-width:380px) {
    .hero h1 { font-size:1.35rem; }
    .hero-stat .value { font-size:1rem; }
    .hero-stats { grid-template-columns:repeat(3,1fr); gap:1px; }
}

/* Performance: skip rendering below-fold sections */
#staedte, #kontakt, .faq-section, .related-section { content-visibility: auto; contain-intrinsic-size: auto 500px; }
