/* ============================================================
   KRISCHER IMMOBILIEN — Ubuntu Font / 3D Hero
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:      #0a0a0a;
    --bg2:     #111111;
    --bg3:     #181818;
    --green:   #8DC63F;
    --green2:  #aad95a;
    --white:   #f4f4f2;
    --gray:    #6e6e6e;
    --gray2:   #2a2a2a;
    --font:    'Ubuntu', system-ui, sans-serif;
    --ease:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-io: cubic-bezier(0.85, 0, 0.15, 1);
}

html { font-size: 16px; scroll-behavior: auto; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: var(--font); }

/* Ubuntu bold green — applied via class */
.green-bold {
    color: var(--green);
    font-weight: 700;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── CURSOR ────────────────────────────────── */
#c-dot {
    position: fixed; z-index: 9999;
    width: 7px; height: 7px;
    background: var(--green); border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

#c-ring {
    position: fixed; z-index: 9998;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(141,198,63,.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease), border-color .3s, background .3s;
}

#c-ring.hover { width: 68px; height: 68px; border-color: var(--green); background: rgba(141,198,63,.06); }
#c-ring.click { width: 24px; height: 24px; }

/* ── PRELOADER ─────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
}
.pre-bg { position: absolute; inset: 0; background: var(--bg); }
.pre-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.pre-logo-wrap { overflow: hidden; }
.pre-logo-img { height: 56px; width: auto; display: block; transform: translateY(100%); }
.pre-bar-wrap { width: 180px; height: 1px; background: var(--gray2); overflow: hidden; }
.pre-bar { height: 100%; width: 0; background: var(--green); }
.pre-counter { font-size: 11px; letter-spacing: .2em; color: var(--gray); }
.pre-counter span:first-child { color: var(--green); font-weight: 700; }

/* ── HEADER ────────────────────────────────── */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    background: rgba(10,10,10,.93);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(141,198,63,.15);
}
.header-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; gap: 40px; height: 76px;
}
.logo { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; }
.main-nav { display: flex; gap: 36px; margin-left: auto; }
.nav-link {
    font-family: var(--font); font-size: 13px; font-weight: 400;
    letter-spacing: .08em; color: rgba(244,244,242,.65);
    position: relative; transition: color .3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--green);
    transition: width .4s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.header-cta {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(141,198,63,.4);
    font-family: var(--font); font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: var(--green);
    transition: background .3s, border-color .3s, color .3s; flex-shrink: 0;
}
.header-cta:hover { background: var(--green); border-color: var(--green); color: var(--bg); }

.burger { display: none; flex-direction: column; gap: 6px; width: 26px; padding: 3px 0; }
.burger span { display: block; height: 1px; background: var(--white); transition: transform .4s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* MOBILE MENU */
#mobile-menu {
    position: fixed; inset: 0; z-index: 700;
    display: flex; flex-direction: column; justify-content: center;
    padding: 96px 40px 56px; pointer-events: none; visibility: hidden;
}
#mobile-menu.open { pointer-events: all; visibility: visible; }
.mm-bg { position: absolute; inset: 0; background: var(--bg); transform: scaleY(0); transform-origin: top; }
.mm-nav { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.mm-link {
    font-family: var(--font); font-size: clamp(28px, 6vw, 52px); font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid var(--gray2); padding: 14px 0;
    transform: translateY(50px); opacity: 0; display: block; transition: color .3s;
}
.mm-link:hover { color: var(--green); }
.mm-footer { position: relative; z-index: 1; margin-top: auto; font-size: 12px; color: var(--gray); display: flex; flex-direction: column; gap: 4px; }

/* ── BUTTONS ───────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 38px;
    background: var(--green); color: var(--bg);
    font-family: var(--font); font-size: 13px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    position: relative; overflow: hidden; transition: background .3s;
}
.btn-primary .btn-text {
    display: block;
    clip-path: inset(0);
    transition: clip-path .4s var(--ease);
}
.btn-primary .btn-hover-text {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .4s var(--ease);
}
.btn-primary:hover .btn-text { clip-path: inset(100% 0 0 0); }
.btn-primary:hover .btn-hover-text { clip-path: inset(0); }
.btn-primary:hover { background: var(--green2); }
.btn-primary.large { padding: 18px 52px; font-size: 14px; }
.btn-primary.full { width: 100%; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 38px;
    border: 1px solid rgba(244,244,242,.25); color: var(--white);
    font-family: var(--font); font-size: 12px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    transition: border-color .3s, color .3s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ── HERO — FOTO LAYERS ────────────────────── */
#hero {
    position: relative; height: 100vh; min-height: 600px;
    overflow: hidden;
}

.h-layer {
    position: absolute; inset: 0; overflow: hidden;
}

/* Interior starts hidden */
#hInt {
    opacity: 0;
}

/* Extra size for zoom without showing edges */
.h-img-wrap {
    position: absolute; inset: -10%;
    will-change: transform;
}

.h-img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Scroll-driven video — fills layer */
.h-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.h-grad-bottom {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.3) 40%, transparent 70%);
    pointer-events: none;
}

.h-int-tint {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35); pointer-events: none; z-index: 1;
}

/* ── INTERIOR TEXT OVERLAY ───────────────────── */
.int-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
}

.int-overlay-inner {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.int-logo { height: 36px; width: auto; display: block; opacity: .9; }

.int-pre {
    font-family: var(--font); font-size: clamp(13px, 1.4vw, 18px); font-weight: 400;
    color: #fff; letter-spacing: .15em; text-transform: uppercase; margin: 0;
}

.int-headline {
    font-family: var(--font); font-size: clamp(52px, 8vw, 110px);
    font-weight: 700; color: #fff; line-height: .95; margin: 0;
    text-shadow: 0 2px 32px rgba(0,0,0,.6);
}

.int-sub {
    font-family: var(--font); font-size: clamp(10px, 1vw, 14px); font-weight: 700;
    color: var(--green); letter-spacing: .22em; text-transform: uppercase; margin: 0;
}

/* Door flash */
#doorFlash {
    position: absolute; inset: 0; z-index: 20;
    background: #000; opacity: 0; pointer-events: none;
}

/* Hero UI overlay */
.hero-ui {
    position: absolute; inset: 0; z-index: 10; pointer-events: none;
}

.hero-intro {
    position: absolute; bottom: 80px; left: 80px; max-width: 680px;
}

.hero-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
.hero-eyebrow span { font-size: 13px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.7); }

.hero-h1 {
    font-family: var(--font); font-size: clamp(52px, 9vw, 120px);
    font-weight: 300; line-height: .92; margin-bottom: 28px;
}
.tl { overflow: hidden; }
.tl-i { display: block; transform: translateY(110%); }

.hero-sub { font-size: 16px; font-weight: 300; color: rgba(244,244,242,.6); margin-bottom: 32px; }

.scroll-hint { display: flex; align-items: center; gap: 12px; }
.scroll-mouse { width: 22px; height: 36px; border: 1.5px solid rgba(244,244,242,.7); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 7px; background: var(--green); border-radius: 2px; animation: sdown 2s ease-in-out infinite; }
@keyframes sdown { 0% { transform:translateY(0); opacity:1; } 100% { transform:translateY(12px); opacity:0; } }
.scroll-hint span { font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: rgba(244,244,242,.85); text-shadow: 0 1px 6px rgba(0,0,0,.6); }

/* Interior CTA */
.hero-int-cta {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    opacity: 0; pointer-events: none; text-align: center; white-space: nowrap;
}
.hero-int-cta.visible { pointer-events: all; }
.int-cta-note { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,244,242,.45); }

/* Hero scroll progress */
.hero-progress-wrap {
    position: absolute; bottom: 24px; right: 32px; z-index: 12;
    display: flex; align-items: center; gap: 10px; opacity: .6;
}
.hero-progress-track { width: 80px; height: 1px; background: rgba(255,255,255,.2); }
.hero-progress-bar { height: 100%; width: 0%; background: var(--green); }
.hero-progress-label { font-family: var(--font); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,244,242,.4); }

/* ── MARQUEE ───────────────────────────────── */
.marquee-wrap { border-top: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2); overflow: hidden; padding: 16px 0; }
.marquee-inner { display: flex; }
.marquee-track {
    display: flex; align-items: center; gap: 44px; white-space: nowrap;
    animation: marquee 28s linear infinite; flex-shrink: 0;
}
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.marquee-track span { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(244,244,242,.35); }
.marquee-track i { color: var(--green); font-style: normal; font-size: 7px; }

/* ── CONTAINER ─────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 80px; }

/* ── SECTION COMMON ────────────────────────── */
.section-tag {
    font-family: var(--font); font-size: 10px; font-weight: 700;
    letter-spacing: .35em; text-transform: uppercase; color: var(--green);
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.section-tag::before { content:''; display:block; width:28px; height:1px; background:var(--green); flex-shrink:0; }

.section-heading {
    font-family: var(--font); font-size: clamp(34px, 4vw, 62px);
    font-weight: 300; line-height: 1.08; margin-bottom: 28px;
}

.body-text { font-family: var(--font); font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(244,244,242,.6); margin-bottom: 18px; max-width: 460px; }

/* ── WARUM ─────────────────────────────────── */
.section-warum { padding: 130px 0; }
.warum-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--gray2); border:1px solid var(--gray2); margin-top:56px; }
.warum-card { background:var(--bg); padding:48px 32px; display:flex; flex-direction:column; gap:16px; position:relative; overflow:hidden; transition:background .4s; }
.warum-card::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:2px; background:var(--green); transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease); }
.warum-card:hover { background:var(--bg2); }
.warum-card:hover::after { transform:scaleX(1); }
.wc-num { font-family:var(--font); font-size:11px; font-weight:700; letter-spacing:.2em; color:var(--green); }
.wc-icon { width:44px; height:44px; color:var(--green); }
.wc-icon svg { width:100%; height:100%; }
.warum-card h3 { font-family:var(--font); font-size:18px; font-weight:700; color:var(--white); }
.warum-card p { font-size:14px; font-weight:300; color:var(--gray); line-height:1.75; }

/* ── SPLIT VISUAL ──────────────────────────── */
.split-visual { display:grid; grid-template-columns:1fr 1fr; min-height:640px; }
.sv-left { position:relative; overflow:hidden; }
.sv-img-wrap { position:absolute; inset:-5%; will-change:transform; }
.sv-right { background:var(--bg2); display:flex; align-items:center; padding:80px; }
.sv-content { max-width:520px; }
.sv-stats { display:flex; gap:44px; margin:40px 0; padding:32px 0; border-top:1px solid var(--gray2); border-bottom:1px solid var(--gray2); }
.sv-stat { display:flex; flex-direction:column; gap:4px; }
.sv-num { font-family:var(--font); font-size:clamp(32px,3.5vw,48px); font-weight:700; line-height:1; color:var(--green); }
.sv-sfx { font-family:var(--font); font-size:18px; font-weight:700; color:var(--green); }
.sv-stat p { font-size:11px; font-weight:400; color:var(--gray); letter-spacing:.04em; }

/* ── ABLAUF ────────────────────────────────── */
.section-ablauf { padding:130px 0; background:var(--bg2); }
.steps-wrap { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gray2); border:1px solid var(--gray2); margin-top:56px; }
.step-card { background:var(--bg2); padding:52px 44px; transition:background .4s; }
.step-card:hover { background:var(--bg3); }
.step-num-big { font-family:var(--font); font-size:64px; font-weight:700; color:rgba(141,198,63,.2); line-height:1; margin-bottom:20px; transition:color .4s; }
.step-card:hover .step-num-big { color:rgba(141,198,63,.45); }
.step-card h4 { font-family:var(--font); font-size:20px; font-weight:700; color:var(--white); margin-bottom:12px; }
.step-card p { font-size:14px; font-weight:300; color:var(--gray); line-height:1.75; }
.ab-cta-row { margin-top:56px; display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.ab-note { font-size:12px; font-weight:400; color:var(--gray); }

/* ── RATINGEN ──────────────────────────────── */
.section-ratingen { position:relative; min-height:600px; display:flex; align-items:center; padding:120px 0; overflow:hidden; }
.ratingen-bg { position:absolute; inset:0; }
.ratingen-overlay { position:absolute; inset:0; background:rgba(10,10,10,.78); }
.ratingen-content { position:relative; z-index:1; width:100%; }
.ratingen-facts { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(141,198,63,.2); border:1px solid rgba(141,198,63,.15); margin:52px 0 28px; }
.rf-item { background:rgba(10,10,10,.65); backdrop-filter:blur(10px); padding:36px 28px; transition:background .3s; display:flex; flex-direction:column; gap:4px; }
.rf-item:hover { background:rgba(141,198,63,.08); }
.rf-num { font-family:var(--font); font-size:clamp(32px,4vw,52px); font-weight:700; color:var(--green); line-height:1; }
.rf-unit { font-size:14px; font-weight:700; color:rgba(141,198,63,.7); }
.rf-item p { font-size:12px; font-weight:400; color:rgba(244,244,242,.5); letter-spacing:.03em; }
.ratingen-note { font-size:12px; font-weight:300; color:rgba(244,244,242,.3); max-width:600px; line-height:1.7; }

/* ── BEWERTUNG ─────────────────────────────── */
.section-bewertung { position:relative; padding:130px 0; overflow:hidden; }
.bewertung-bg { position:absolute; inset:0; }
.bewertung-overlay { position:absolute; inset:0; background:rgba(10,10,10,.88); }
.bewertung-container { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.bew-benefits { list-style:none; margin-top:36px; display:flex; flex-direction:column; gap:12px; }
.bew-benefits li { display:flex; align-items:flex-start; gap:12px; font-size:15px; font-weight:300; color:rgba(244,244,242,.8); }
.bb-check { color:var(--green); font-size:14px; font-weight:700; flex-shrink:0; margin-top:2px; }

/* ── GOOGLE BEWERTUNGS-BADGE ─────────────────── */
.g-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 16px; border-radius: 40px;
    margin-top: 4px;
}
.g-badge--dark {
    background: var(--bg3);
    border-color: var(--gray2);
    backdrop-filter: none;
    margin-top: 0;
}
.g-logo { width: 18px; height: 18px; flex-shrink: 0; }
.g-stars { display: flex; gap: 1px; }
.g-star { color: #FBBC05; font-size: 14px; line-height: 1; }
.g-score {
    font-family: var(--font); font-size: 14px; font-weight: 700;
    color: var(--white); letter-spacing: .02em;
}
.g-count {
    font-family: var(--font); font-size: 12px; font-weight: 400;
    color: rgba(244,244,242,.55);
}

/* Bottimmo Widget Container */
.bewertung-form-wrap { min-height: 400px; }
btm-widget { display: block; width: 100%; }

/* ── ÜBER UNS ──────────────────────────────── */
.section-ueber { padding:130px 0; }
.ueber-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:center; }

/* Team-Foto mit transparentem Hintergrund */
.ueber-img-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 28px;
    background: var(--bg2);
    border: 1px solid var(--gray2);
    padding: 40px 32px 32px;
}
.ueber-team-img {
    width: 100%; max-width: 480px; height: auto;
    display: block; object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.ueber-names {
    display: flex; align-items: center; gap: 24px; width: 100%;
    padding-top: 20px; border-top: 1px solid var(--gray2);
}
.ueber-name-item { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ueber-name { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--white); }
.ueber-title { font-size: 11px; font-weight: 400; color: var(--green); letter-spacing: .06em; }
.ueber-name-divider { width: 1px; height: 36px; background: var(--gray2); flex-shrink: 0; }

.reveal-img img { transform:scale(1.08); }
.ueber-text { padding-right:20px; }
.ueber-logo-wrap { margin:36px 0; padding:28px 0; border-top:1px solid var(--gray2); border-bottom:1px solid var(--gray2); display:flex; flex-direction:column; gap:10px; }
.ueber-logo { height:40px; width:auto; max-width:180px; display:block; object-fit:contain; }
.ueber-claim { font-size:13px; font-weight:700; color:var(--green); letter-spacing:.06em; }
.ueber-contact { display:flex; flex-direction:column; gap:12px; }
.ueber-contact-item { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:400; color:rgba(244,244,242,.7); transition:color .3s; }
.ueber-contact-item:hover { color:var(--green); }
.ueber-contact-item svg { color:var(--green); flex-shrink:0; }

/* ── FOOTER ────────────────────────────────── */
#footer { background:var(--bg2); border-top:1px solid var(--gray2); padding:80px 0 0; }
.footer-top { display:flex; gap:56px; padding-bottom:48px; border-bottom:1px solid var(--gray2); }
.footer-logo-col { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }
.footer-logo-img { height:auto; max-height:72px; width:auto; max-width:200px; display:block; object-fit:contain; }
.footer-logo-col p { font-size:12px; font-weight:300; color:var(--gray); }
.footer-domain { color:var(--green) !important; font-weight:700 !important; font-size:11px !important; letter-spacing:.06em; }
.footer-links-col { display:flex; flex-direction:column; gap:10px; flex:1; }
.footer-links-col h5 { font-family:var(--font); font-size:10px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--green); margin-bottom:4px; }
.footer-links-col a { font-size:13px; font-weight:300; color:var(--gray); transition:color .3s; line-height:1.6; }
.footer-links-col a:hover { color:var(--white); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:22px 0; font-size:11px; font-weight:300; color:var(--gray); }
.footer-bottom a { color:var(--gray); transition:color .3s; }
.footer-bottom a:hover { color:var(--white); }
.footer-domain-bottom { color:rgba(141,198,63,.4); font-weight:700; letter-spacing:.05em; }

/* ── REVEAL (initial states) ───────────────── */
.reveal-img { overflow:hidden; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
    .container { padding:0 48px; }
    .warum-grid { grid-template-columns:repeat(2,1fr); }
    .split-visual { grid-template-columns:1fr; }
    .sv-left { height:380px; }
    .sv-right { padding:60px 48px; }
    .ratingen-facts { grid-template-columns:repeat(2,1fr); }
    .bewertung-container { grid-template-columns:1fr; gap:52px; }
    .ueber-grid { grid-template-columns:1fr; }
    .footer-top { flex-wrap:wrap; gap:44px; }
}
@media (max-width: 900px) {
    .header-inner { padding:0 24px; }
    .main-nav, .header-cta { display:none; }
    .burger { display:flex; margin-left:auto; }
    .container { padding:0 24px; }
    .hero-intro { left:24px; right:24px; bottom:60px; }
    .hero-h1 { font-size:clamp(40px,12vw,72px); }
    .section-warum, .section-ablauf, .section-ueber, .section-bewertung { padding:80px 0; }
    .section-ratingen { padding:80px 0; }
    .warum-grid, .steps-wrap, .ratingen-facts { grid-template-columns:1fr; }
    .sv-right { padding:48px 24px; }
    .form-card { padding:28px 20px; }
    .form-grid { grid-template-columns:1fr; }
    .form-group.full-col { grid-column:span 1; }
    .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
    .ab-cta-row { flex-direction:column; align-items:flex-start; }
    #footer { padding:60px 0 0; }
}
@media (max-width: 600px) {
    .type-selector { grid-template-columns:1fr; }
    .sv-stats { flex-direction:column; gap:24px; }
    .step-nav-row { flex-direction:column; }
    .step-nav-row .btn-outline, .step-nav-row .btn-primary { width:100%; justify-content:center; }
}
