/* MieterCheck — Stylesheet v2 */
:root {
    --mc-primary: #1a5276;
    --mc-primary-light: #2980b9;
    --mc-green: #27ae60;
    --mc-yellow: #f39c12;
    --mc-red: #e74c3c;
    --mc-bg: #f5f7fa;
    --mc-white: #ffffff;
    --mc-text: #2c3e50;
    --mc-text-light: #7f8c8d;
    --mc-border: #dce1e6;
    --mc-radius: 10px;
    --mc-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: var(--mc-bg); color: var(--mc-text); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
.mc-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.mc-header { background: var(--mc-white); border-bottom: 1px solid var(--mc-border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.mc-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.mc-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.25rem; font-weight: 700; color: var(--mc-primary); }
.mc-nav { display: flex; align-items: center; gap: 8px; }
.mc-nav a { text-decoration: none; color: var(--mc-text); padding: 8px 14px; border-radius: 6px; font-size: 0.9rem; transition: background 0.15s; }
.mc-nav a:hover { background: var(--mc-bg); }
.mc-hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--mc-text); }
.mc-user-menu { position: relative; }
.mc-user-btn { background: var(--mc-bg); border: 1px solid var(--mc-border); padding: 6px 14px; border-radius: 20px; cursor: pointer; font-size: 0.9rem; color: var(--mc-text); }
.mc-dropdown { display: none; position: absolute; right: 0; top: 100%; background: var(--mc-white); border: 1px solid var(--mc-border); border-radius: var(--mc-radius); box-shadow: var(--mc-shadow); min-width: 150px; z-index: 200; overflow: hidden; }
.mc-user-menu:hover .mc-dropdown, .mc-user-menu:focus-within .mc-dropdown { display: block; }
.mc-dropdown a { display: block; padding: 10px 16px; color: var(--mc-text); text-decoration: none; font-size: 0.9rem; border-radius: 0; }
.mc-dropdown a:hover { background: var(--mc-bg); }
.mc-main { flex: 1; padding: 30px 0; }
.mc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.15s; }
.mc-btn-primary { background: transparent; color: var(--mc-primary); border: 2px solid var(--mc-primary); }
.mc-btn-primary:hover { background: var(--mc-primary); color: #fff; }
.mc-btn-green { background: var(--mc-green); color: #fff; }
.mc-btn-green:hover { opacity: 0.9; }
.mc-btn-outline { background: transparent; color: var(--mc-primary); border: 2px solid var(--mc-primary); }
.mc-btn-outline:hover { background: var(--mc-primary); color: #fff; }
.mc-btn-large { padding: 14px 32px; font-size: 1.1rem; }
.mc-btn-block { display: block; width: 100%; text-align: center; }
.mc-card { background: var(--mc-white); border-radius: var(--mc-radius); border: 1px solid var(--mc-border); padding: 24px; margin-bottom: 20px; box-shadow: var(--mc-shadow); }
.mc-card h2, .mc-card h3 { margin-bottom: 16px; color: var(--mc-primary); }
.mc-form-group { margin-bottom: 18px; }
.mc-form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--mc-text); }
.mc-input, .mc-select, .mc-textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--mc-border); border-radius: 8px; font-size: 0.95rem; background: var(--mc-white); color: var(--mc-text); transition: border-color 0.15s; }
.mc-input:focus, .mc-select:focus, .mc-textarea:focus { outline: none; border-color: var(--mc-primary); box-shadow: 0 0 0 3px rgba(26,82,118,0.1); }
.mc-textarea { resize: vertical; min-height: 100px; }
.mc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mc-form-hint { font-size: 0.8rem; color: var(--mc-text-light); margin-top: 4px; }
.mc-alert { padding: 12px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem; }
.mc-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.mc-alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.mc-alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.mc-alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.mc-ampel-green { color: var(--mc-green); font-weight: 700; }
.mc-ampel-yellow { color: var(--mc-yellow); font-weight: 700; }
.mc-ampel-red { color: var(--mc-red); font-weight: 700; }
.mc-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.mc-badge-green { background: #d4edda; color: #155724; }
.mc-badge-yellow { background: #fff3cd; color: #856404; }
.mc-badge-red { background: #f8d7da; color: #721c24; }
.mc-badge-premium { background: var(--mc-primary); color: #fff; }
.mc-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.mc-table th { background: var(--mc-primary); color: #fff; text-align: left; padding: 10px 14px; font-weight: 600; }
.mc-table td { padding: 10px 14px; border-bottom: 1px solid var(--mc-border); }
.mc-table tr:hover td { background: #f8f9fa; }
.mc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mc-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.mc-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 76px 28px 54px;
    margin: 18px 0 28px;
    border-radius: 32px;
    background: radial-gradient(circle at 18% 18%, rgba(255,255,255,0.95), rgba(255,255,255,0) 28%), linear-gradient(135deg, #eef6ff 0%, #ffffff 48%, #e8fff4 100%);
    border: 1px solid rgba(30,64,175,0.12);
    box-shadow: 0 24px 70px rgba(30,64,175,0.14);
}
.mc-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(16,185,129,0.16);
}
.mc-hero-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(30,64,175,0.09);
    color: var(--mc-primary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.mc-hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.04;
    letter-spacing: -0.055em;
}
.mc-hero p {
    position: relative;
    z-index: 1;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    color: #475569;
    max-width: 820px;
    margin: 0 auto 30px;
    line-height: 1.65;
}
.mc-hero .mc-btn {
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 34px rgba(30,64,175,0.28);
}
.mc-hero-note {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: #166534;
    font-size: 0.95rem;
    font-weight: 800;
}
.mc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.mc-feature { text-align: center; padding: 30px 20px; background: var(--mc-white); border-radius: var(--mc-radius); border: 1px solid var(--mc-border); }
.mc-feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.mc-feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.mc-feature p { font-size: 0.9rem; color: var(--mc-text-light); }
.mc-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.mc-price-card { background: var(--mc-white); border-radius: var(--mc-radius); border: 1px solid var(--mc-border); padding: 30px; text-align: center; }
.mc-price-card.featured { border: 2px solid var(--mc-primary); transform: scale(1.03); }
.mc-price-amount { font-size: 2.2rem; font-weight: 800; color: var(--mc-primary); margin: 16px 0 4px; }
.mc-price-period { font-size: 0.85rem; color: var(--mc-text-light); margin-bottom: 20px; }
.mc-price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.mc-price-features li { padding: 6px 0; font-size: 0.9rem; }
.mc-price-features li::before { content: '\2713 '; color: var(--mc-green); font-weight: bold; }
.mc-stat { text-align: center; padding: 20px; }
.mc-stat-number { font-size: 2rem; font-weight: 800; color: var(--mc-primary); }
.mc-stat-label { font-size: 0.85rem; color: var(--mc-text-light); }
.mc-widget { margin-bottom: 20px; }
.mc-widget-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mc-text-light); margin-bottom: 10px; }
.mc-footer { background: var(--mc-white); border-top: 1px solid var(--mc-border); padding: 24px 0; margin-top: auto; text-align: center; font-size: 0.85rem; color: var(--mc-text-light); }
.mc-footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 8px; }
.mc-footer-links a { color: var(--mc-text-light); text-decoration: none; }
.mc-footer-links a:hover { color: var(--mc-primary); }
.mc-auth-wrap { max-width: 440px; margin: 40px auto; }
.mc-documents-page, .mc-documents-list-card { background: #ffffff; }
.mc-documents-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 22px; }
.mc-documents-head h1 { color: var(--mc-primary); margin-bottom: 6px; }
.mc-year-select-wrap { min-width: 160px; margin-bottom: 0; }
.mc-dropzone { background: #ffffff; border: 2px dashed var(--mc-primary-light); border-radius: 14px; padding: 34px 24px; text-align: center; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.mc-dropzone.dragover { border-color: var(--mc-green); box-shadow: 0 0 0 4px rgba(39,174,96,0.12); transform: translateY(-1px); }
.mc-dropzone h2 { margin-bottom: 6px; color: var(--mc-primary); }
.mc-dropzone p { color: var(--mc-text-light); margin-bottom: 18px; }
.mc-dropzone-icon { font-size: 2.4rem; margin-bottom: 8px; }
.mc-upload-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.mc-hidden-file { display: none; }
.mc-upload-progress { background: #ffffff; border: 1px solid var(--mc-border); border-radius: var(--mc-radius); padding: 14px; margin-top: 18px; }
.mc-upload-progress-label { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.mc-upload-progress-track { height: 10px; background: #edf2f7; border-radius: 999px; overflow: hidden; }
.mc-upload-progress-bar { height: 100%; background: var(--mc-green); border-radius: 999px; transition: width 0.2s; }
.mc-doc-list-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 16px; }
.mc-doc-list { display: grid; gap: 12px; background: #ffffff; }
.mc-doc-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; background: #ffffff; border: 1px solid var(--mc-border); border-radius: var(--mc-radius); padding: 16px; }
.mc-doc-name { display: block; color: var(--mc-text); word-break: break-word; }
.mc-doc-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--mc-text-light); font-size: 0.85rem; margin-top: 4px; }
.mc-doc-status { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 150px; }
.mc-status-badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.mc-status-badge.uploaded { background: #eaf2f8; color: var(--mc-primary); }
.mc-status-badge.ocr-running { background: #fff3cd; color: #856404; }
.mc-status-badge.ocr-complete { background: #d4edda; color: #155724; }
.mc-status-badge.ocr-failed { background: #f8d7da; color: #721c24; }
.mc-status-badge.ocr-low { background: #fff3cd; color: #856404; border: 1px solid #f1c40f; }
.mc-doc-confidence { color: var(--mc-text-light); font-size: 0.8rem; white-space: nowrap; }
.mc-doc-empty { background: #ffffff; border: 1px dashed var(--mc-border); border-radius: var(--mc-radius); padding: 22px; text-align: center; color: var(--mc-text-light); }

/* === v3 Pruefung + Ampel Styles === */
.mc-pruefung-page { background: #ffffff; }
.mc-delivery-input-wrap { display: inline-flex; align-items: center; }
.mc-delivery-date { width: 160px !important; padding: 8px 12px; font-size: 0.9rem; }
.mc-ampel-gesamt { text-align: center; padding: 24px; margin-bottom: 20px; border-radius: var(--mc-radius); }
.mc-ampel-gesamt.gruen { background: #d4edda; border: 2px solid var(--mc-green); }
.mc-ampel-gesamt.gelb { background: #fff3cd; border: 2px solid var(--mc-yellow); }
.mc-ampel-gesamt.rot { background: #f8d7da; border: 2px solid var(--mc-red); }
.mc-ampel-gesamt .mc-ampel-icon { font-size: 3rem; margin-bottom: 8px; }
.mc-ampel-gesamt .mc-ampel-label { font-size: 1.4rem; font-weight: 800; }
.mc-ampel-gesamt.gruen .mc-ampel-label { color: #155724; }
.mc-ampel-gesamt.gelb .mc-ampel-label { color: #856404; }
.mc-ampel-gesamt.rot .mc-ampel-label { color: #721c24; }
.mc-ampel-gesamt .mc-ampel-sub { font-size: 0.9rem; color: var(--mc-text-light); margin-top: 4px; }
.mc-ampel-badge-gruen { background: #d4edda; color: #155724; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.mc-ampel-badge-gelb { background: #fff3cd; color: #856404; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.mc-ampel-badge-rot { background: #f8d7da; color: #721c24; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.mc-report-table { background: #ffffff; }
.mc-report-table td.mc-cell-gruen { color: var(--mc-green); font-weight: 700; }
.mc-report-table td.mc-cell-gelb { color: var(--mc-yellow); font-weight: 700; }
.mc-report-table td.mc-cell-rot { color: var(--mc-red); font-weight: 700; }
.mc-finding-card { padding: 12px 16px; border-radius: 8px; margin-bottom: 10px; font-size: 0.9rem; }
.mc-finding-card.formal { background: #f8d7da; border-left: 4px solid var(--mc-red); color: #721c24; }
.mc-finding-card.plausibility { background: #fff3cd; border-left: 4px solid var(--mc-yellow); color: #856404; }
.mc-finding-card.plausibility.severe { background: #f8d7da; border-left-color: var(--mc-red); color: #721c24; }
.mc-finding-card strong { display: block; margin-bottom: 3px; }
.mc-result-summary { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.mc-result-summary .mc-stat { background: #ffffff; border: 1px solid var(--mc-border); border-radius: var(--mc-radius); padding: 16px; }
.mc-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* === v4 Einspruch + Signatur Styles === */
.mc-einspruch-wizard { background: #ffffff; }
.mc-reasons-list { display: grid; gap: 8px; }
.mc-reason-item { transition: background 0.15s; }
.mc-reason-item:hover { background: #f8f9fa !important; }
.mc-reason-item.rot { border-left: 4px solid var(--mc-red); }
.mc-reason-item.gelb { border-left: 4px solid var(--mc-yellow); }
.mc-reason-item.gruen { border-left: 4px solid var(--mc-green); }
.mc-reason-check { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--mc-primary); cursor: pointer; }
.mc-reason-template { line-height: 1.5; }
.mc-signature-wrap { max-width: 520px; }
#mc-signature-pad { touch-action: none; display: block; }

@media (max-width: 768px) {
    .mc-hamburger { display: block; }
    .mc-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--mc-white); flex-direction: column; padding: 10px 20px; border-bottom: 1px solid var(--mc-border); box-shadow: var(--mc-shadow); }
    .mc-nav.open { display: flex; }
    .mc-nav a { padding: 12px 0; }
    .mc-hero h1 { font-size: 1.8rem; }
    .mc-features, .mc-pricing { grid-template-columns: 1fr; }
    .mc-grid-2, .mc-grid-3 { grid-template-columns: 1fr; }
    .mc-form-row { grid-template-columns: 1fr; }
    .mc-price-card.featured { transform: none; }
    .mc-documents-head, .mc-doc-item, .mc-doc-list-head { flex-direction: column; align-items: stretch; }
    .mc-year-select-wrap { min-width: 0; }
    .mc-doc-status { align-items: flex-start; min-width: 0; }
    .mc-dropzone { padding: 26px 16px; }
    .mc-upload-actions .mc-btn { width: 100%; }
    .mc-result-summary { grid-template-columns: 1fr; }
    .mc-delivery-date { width: 140px !important; }
}


/* === Language Switcher === */
.mc-lang-switch { display: flex; gap: 4px; align-items: center; margin-right: 8px; }
.mc-lang-switch a { text-decoration: none; font-size: 1.2rem; opacity: 0.5; transition: opacity 0.2s; padding: 2px 4px; border-radius: 4px; }
.mc-lang-switch a:hover, .mc-lang-switch a.active { opacity: 1; }

/* Trust-Badges */
.mc-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    padding: 20px 16px;
    margin: 0 auto;
    max-width: 900px;
}
.mc-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #334155;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mc-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mc-trust-icon {
    font-size: 1.2rem;
}
.mc-trust-text {
    font-weight: 500;
}
@media (max-width: 600px) {
    .mc-trust-badges { gap: 8px 12px; }
    .mc-trust-badge { padding: 6px 12px; font-size: 0.78rem; }
}
.mc-logo { gap: 10px; }
.mc-logo small { display: block; color: #64748b; font-size: 0.72rem; font-weight: 700; line-height: 1; }
.mc-landing-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: 54px; align-items: center; padding: 72px 0 46px; }
.mc-landing-copy h1 { margin: 18px 0 20px; color: #0b2a5b; font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: 0.98; letter-spacing: -0.065em; }
.mc-landing-copy h1 span, .mc-landing-copy h1 strong { display: block; }
.mc-landing-copy h1 strong { color: #f97316; font-weight: 900; }
.mc-leading-badge { display: inline-flex; padding: 9px 16px; border-radius: 999px; background: #fff7ed; color: #c2410c; font-size: 0.86rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(249,115,22,0.18); }
.mc-landing-subheadline { max-width: 720px; margin: 0 0 26px; color: #475569; font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.65; }
.mc-benefits-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.mc-benefit { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 999px; background: #ffffff; color: #0f172a; font-weight: 800; box-shadow: 0 10px 28px rgba(15,23,42,0.08); }
.mc-benefit span { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: #eff6ff; color: #0b2a5b; }
.mc-landing-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 26px; border-radius: 16px; background: #f97316; color: #ffffff; font-size: 1.05rem; font-weight: 900; text-decoration: none; box-shadow: 0 18px 36px rgba(249,115,22,0.32); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mc-landing-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(249,115,22,0.38); }
.mc-price-note { margin-top: 13px; color: #166534; font-size: 0.95rem; font-weight: 900; }
.mc-landing-visual { position: relative; min-height: 520px; padding: 34px; border-radius: 34px; background: linear-gradient(145deg, #0b2a5b, #123f7d); box-shadow: 0 30px 80px rgba(11,42,91,0.28); }
.mc-savings-counter { color: #ffffff; margin-bottom: 28px; }
.mc-savings-counter div { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 950; line-height: 0.95; letter-spacing: -0.06em; }
.mc-savings-counter span { display: block; margin-top: 8px; color: rgba(255,255,255,0.78); font-weight: 800; }
.mc-bill-mockup { position: absolute; right: 28px; bottom: 28px; left: 58px; padding: 24px; border-radius: 24px; background: #ffffff; box-shadow: 0 24px 60px rgba(0,0,0,0.24); }
.mc-bill-header, .mc-bill-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.mc-bill-header { padding-bottom: 16px; margin-bottom: 12px; border-bottom: 1px solid #e2e8f0; color: #0b2a5b; font-weight: 900; }
.mc-bill-header strong { color: #f97316; }
.mc-bill-line { padding: 13px 0; color: #475569; border-bottom: 1px solid #f1f5f9; }
.mc-warning { color: #dc2626; }
.mc-potential-box { margin-top: 18px; padding: 18px; border-radius: 18px; background: #ecfdf5; color: #166534; }
.mc-potential-box span, .mc-potential-box strong { display: block; }
.mc-potential-box strong { margin-top: 4px; font-size: 1.8rem; }
.mc-trust-bar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 18px 0 72px; }
.mc-trust-bar div { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 74px; padding: 14px; border-radius: 18px; background: #ffffff; color: #0f172a; font-weight: 900; text-align: center; box-shadow: 0 12px 34px rgba(15,23,42,0.08); }
.mc-section-heading { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.mc-section-heading span, .mc-info-card span, .mc-footer-band span { color: #f97316; font-weight: 950; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.mc-section-heading h2, .mc-info-card h2, .mc-footer-band h2 { margin: 8px 0 0; color: #0b2a5b; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.04em; }
.mc-steps-grid, .mc-about-faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.mc-step-card, .mc-info-card { padding: 28px; border-radius: 24px; background: #ffffff; box-shadow: 0 16px 42px rgba(15,23,42,0.08); }
.mc-step-number { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 14px; background: #0b2a5b; color: #ffffff; font-weight: 950; }
.mc-step-card h3 { margin: 0 0 10px; color: #0b2a5b; font-size: 1.35rem; }
.mc-step-card p, .mc-info-card p, .mc-footer-band p { color: #64748b; line-height: 1.65; }
.mc-about-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 72px 0; }
.mc-footer-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 40px 0 20px; padding: 42px; border-radius: 30px; background: #0b2a5b; }
.mc-footer-band h2, .mc-footer-band p { color: #ffffff; }
.mc-footer-band p { margin-bottom: 0; color: rgba(255,255,255,0.78); }
@media (max-width: 900px) { .mc-landing-hero, .mc-trust-bar, .mc-steps-grid, .mc-about-faq-grid { grid-template-columns: 1fr; } .mc-landing-visual { min-height: 470px; } .mc-footer-band { align-items: flex-start; flex-direction: column; } }
/* === mieterkosten.online Landing Page (Vorlage v2) === */

/* HERO */
.nk-hero{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;padding:48px 0 40px;max-width:1100px;margin:0 auto;}
.nk-hero-left{padding-right:20px;}
.nk-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;border-radius:8px;background:#e8f0fe;color:#1e3a8a;font-size:.85rem;font-weight:700;margin-bottom:24px;}
.nk-hero h1{font-size:clamp(2.4rem,5vw,3.8rem);line-height:1.05;color:#0b2a5b;font-weight:900;margin:0 0 20px;letter-spacing:-.03em;}
.nk-orange{color:#f97316;}
.nk-sub{color:#475569;font-size:1.1rem;line-height:1.6;margin-bottom:28px;max-width:480px;}
.nk-benefits{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:32px;}
.nk-benefit{display:inline-flex;align-items:center;gap:8px;font-size:.88rem;color:#334155;font-weight:600;}
.nk-benefit-icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#e8f0fe;color:#1e3a8a;font-size:.85rem;font-weight:700;}
.nk-cta{display:inline-flex;align-items:center;gap:12px;padding:16px 32px;border-radius:12px;background:#f97316;color:#fff;font-size:1.1rem;font-weight:800;text-decoration:none;box-shadow:0 8px 24px rgba(249,115,22,.3);transition:transform .2s,box-shadow .2s;}
.nk-cta:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(249,115,22,.4);}
.nk-cta span{font-size:1.3rem;}
.nk-price-hint{margin-top:14px;color:#166534;font-size:.9rem;font-weight:600;}

/* HERO RIGHT — Counter + Document */
.nk-hero-right{position:relative;background:linear-gradient(160deg,#0b2a5b 0%,#1a4a8a 100%);border-radius:24px;padding:32px 28px 28px;min-height:560px;overflow:visible;}
.nk-counter-label{color:rgba(255,255,255,.85);font-size:.82rem;font-weight:700;text-align:center;margin-bottom:10px;text-transform:uppercase;letter-spacing:.04em;}
.nk-counter-row{display:flex;align-items:center;justify-content:center;gap:6px;margin-bottom:6px;}
.nk-counter-euro{color:#fff;font-size:1.6rem;font-weight:800;margin-right:4px;}
.nk-flip{display:inline-flex;align-items:center;justify-content:center;width:54px;height:68px;background:#1a2e5a;border-radius:10px;color:#fff;font-size:2.8rem;font-weight:900;box-shadow:0 4px 12px rgba(0,0,0,.3);border:2px solid rgba(255,255,255,.15);position:relative;}
.nk-flip::after{content:'';position:absolute;left:2px;right:2px;top:50%;height:1px;background:rgba(0,0,0,.3);}
.nk-counter-unit{color:#fff;font-size:1.8rem;font-weight:900;margin-left:6px;}
.nk-counter-sub{text-align:center;color:rgba(255,255,255,.75);font-size:.82rem;font-weight:600;padding:6px 14px;background:rgba(255,255,255,.12);border-radius:6px;display:inline-block;margin:8px auto 0;width:auto;}
.nk-hero-right{display:flex;flex-direction:column;align-items:center;}
.nk-arrow-down{color:rgba(255,255,255,.5);font-size:1.8rem;margin:8px 0;font-weight:300;}

/* Document Mockup */
.nk-doc-mockup{background:#fff;border-radius:16px;padding:24px;box-shadow:0 16px 48px rgba(0,0,0,.2);width:100%;max-width:420px;position:relative;margin-top:4px;}
.nk-doc-title{font-size:1.05rem;font-weight:800;color:#0b2a5b;margin-bottom:12px;}
.nk-doc-meta{font-size:.78rem;color:#64748b;margin-bottom:16px;line-height:1.8;}
.nk-doc-meta span{color:#64748b;}
.nk-doc-meta strong{color:#334155;font-weight:600;}
.nk-doc-section-title{font-size:.82rem;font-weight:700;color:#0b2a5b;margin-bottom:8px;padding-bottom:6px;border-bottom:2px solid #e2e8f0;}
.nk-doc-table{width:100%;border-collapse:collapse;font-size:.8rem;margin-bottom:14px;}
.nk-doc-table td{padding:5px 0;color:#475569;border-bottom:1px solid #f1f5f9;}
.nk-doc-amount{text-align:right;font-weight:600;white-space:nowrap;}
.nk-doc-warn td{color:#f97316;font-weight:700;background:rgba(249,115,22,.06);}
.nk-warn-badge{display:inline-block;color:#f97316;font-size:.75rem;margin-left:4px;}
.nk-doc-total td{font-weight:800;color:#0b2a5b;border-top:2px solid #e2e8f0;border-bottom:none;padding-top:8px;}
.nk-doc-result{display:flex;align-items:center;gap:12px;padding:12px 16px;background:#fff7ed;border:1px solid #fed7aa;border-radius:10px;margin-top:6px;}
.nk-doc-result-icon{font-size:1.4rem;color:#f97316;}
.nk-doc-result div{font-size:.78rem;color:#92400e;line-height:1.4;}
.nk-doc-savings{color:#ea580c;font-size:.95rem;font-weight:800;}

/* Stempel */
.nk-stamp{position:absolute;bottom:16px;right:16px;width:80px;height:80px;border:3px solid #1e3a8a;border-radius:50%;display:flex;align-items:center;justify-content:center;transform:rotate(-15deg);opacity:.85;}
.nk-stamp-inner{text-align:center;line-height:1.1;}
.nk-stamp-top,.nk-stamp-bottom{display:block;font-size:.45rem;font-weight:800;color:#1e3a8a;text-transform:uppercase;letter-spacing:.08em;}
.nk-stamp-main{display:block;font-size:.75rem;font-weight:900;color:#1e3a8a;text-transform:uppercase;letter-spacing:.06em;}

/* TRUST BAR */
.nk-trust-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:1100px;margin:32px auto 48px;padding:0 20px;}
.nk-trust-item{display:flex;align-items:center;gap:14px;padding:18px 16px;background:#fff;border-radius:14px;box-shadow:0 4px 16px rgba(0,0,0,.06);border:1px solid #e8ecf2;}
.nk-trust-icon-wrap{display:flex;align-items:center;justify-content:center;min-width:44px;height:44px;border-radius:12px;background:#e8f0fe;}
.nk-trust-item strong{display:block;color:#0b2a5b;font-size:.82rem;line-height:1.3;}
.nk-trust-item small{color:#64748b;font-size:.72rem;line-height:1.3;}

/* STEPS */
.nk-steps-section{max-width:1100px;margin:0 auto 48px;padding:0 20px;text-align:center;}
.nk-steps-title{font-size:1.6rem;font-weight:900;color:#0b2a5b;margin-bottom:36px;}
.nk-steps-row{display:flex;align-items:flex-start;justify-content:center;gap:16px;}
.nk-step{flex:1;max-width:280px;text-align:center;padding:8px 16px;}
.nk-step-num{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#1e3a8a;color:#fff;font-size:.8rem;font-weight:800;margin-bottom:12px;}
.nk-step-icon{margin-bottom:14px;}
.nk-step-icon svg{display:block;margin:0 auto;}
.nk-step h3{font-size:1rem;font-weight:800;color:#0b2a5b;margin-bottom:8px;}
.nk-step p{font-size:.82rem;color:#64748b;line-height:1.5;}
.nk-step-arrow{display:flex;align-items:center;font-size:1.5rem;color:#c7d2e0;font-weight:300;padding-top:60px;}

/* FOOTER BAND */
.nk-footer-band{display:flex;align-items:center;justify-content:space-between;gap:24px;max-width:1100px;margin:0 auto 32px;padding:28px 36px;border-radius:18px;background:#0b2a5b;}
.nk-footer-band-left{display:flex;align-items:center;gap:16px;color:#fff;}
.nk-footer-band-left strong{display:block;font-size:.92rem;color:#fff;}
.nk-footer-band-left span{font-size:.8rem;color:rgba(255,255,255,.7);}
.nk-footer-cta{display:inline-flex;align-items:center;gap:10px;padding:14px 28px;border-radius:10px;background:#f97316;color:#fff;font-size:.95rem;font-weight:800;text-decoration:none;white-space:nowrap;transition:transform .2s;}
.nk-footer-cta:hover{transform:translateY(-2px);}

/* RESPONSIVE */
@media(max-width:900px){
  .nk-hero{grid-template-columns:1fr;gap:32px;padding:32px 20px;}
  .nk-hero-left{padding-right:0;}
  .nk-hero-right{min-height:auto;}
  .nk-trust-bar{grid-template-columns:1fr 1fr;gap:12px;}
  .nk-steps-row{flex-direction:column;align-items:center;}
  .nk-step-arrow{display:none;}
  .nk-footer-band{flex-direction:column;align-items:flex-start;padding:24px;}
}
@media(max-width:560px){
  .nk-trust-bar{grid-template-columns:1fr;}
  .nk-hero h1{font-size:2rem;}
  .nk-benefits{flex-direction:column;gap:10px;}
  .nk-flip{width:42px;height:52px;font-size:2rem;}
}
