/* home.css — Stile der Startseite (ausgelagert aus index.html
   fuer besseres Text-zu-Code-Verhaeltnis und Browser-Caching).
   Scroll-Reveals greifen nur mit js-Klasse am html-Element —
   ohne JavaScript (Crawler) ist der gesamte Inhalt sichtbar. */
/* -- Reset and Tokens -- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { background-color: #f7f9fc !important; color-scheme: light; }
    body { background-color: #f7f9fc !important; color: #0d1f3c !important; }
    :root {
      --bg: #ffffff; --bg2: #f4f7fb; --bg3: #edf0f7;
      --navy: #0d2b4e; --navy2: #163d6b;
      --teal: #0f7bc8; --teal2: #0762b0; --tglow: rgba(15,123,200,.10);
      --gold: #e8860f; --gold2: #d4760a; --blue: #1a6bc4;
      --white: #ffffff; --text: #0d1f3c; --muted: #4e5a70; --muted2: #94a3b8;
      --glass: rgba(13,43,78,.035); --gb: rgba(13,43,78,.09); --gb2: rgba(13,43,78,.18);
      --shadow: 0 2px 16px rgba(13,43,78,.07); --shadow-md: 0 4px 28px rgba(13,43,78,.11);
      --r: 14px; --rsm: 8px; --ease: cubic-bezier(.25,.46,.45,.94); --spring: cubic-bezier(.34,1.56,.64,1);
    }
    html { font-size: 15px; }
    body { font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    .page-wrap { width: 100%; }
    ::selection { background: var(--teal); color: #fff; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    a:focus-visible, button:focus-visible, input:focus-visible, .quiz-opt:focus-visible, .faq-q:focus-visible {
      outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px;
    }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg2); }
    ::-webkit-scrollbar-thumb { background: var(--teal2); border-radius: 9px; }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeLeft { from{opacity:0;transform:translateX(-28px)} to{opacity:1;transform:translateX(0)} }
    @keyframes fadeRight { from{opacity:0;transform:translateX(28px)} to{opacity:1;transform:translateX(0)} }
    /* Layout - Mobile Base */
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
    .sec { padding: 64px 0; }
    .sec-sm { padding: 48px 0; }
    .center { text-align: center; }
    .js .r { opacity:0; transform:translateY(22px) scale(.985); transition: opacity .55s var(--ease), transform .7s var(--spring); }
    .js .r.lft { transform:translateX(-26px); }
    .js .r.rgt { transform:translateX(26px); }
    .js .r.vis { opacity:1; transform:none; }
    .gt { color: var(--teal); }
    .gt-o { color: var(--gold); }
    .tag { display: inline-flex; align-items: center; gap: 10px; background: none; border: none; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 0; margin-bottom: 16px; }
    .tag::before { content: ''; display: inline-block; width: 26px; height: 2px; background: var(--gold); }
    /* Buttons - mobile base */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-weight: 700; cursor: pointer; border: none; border-radius: 8px; position: relative; overflow: hidden; transition: transform .2s var(--ease), box-shadow .25s, background .2s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; text-decoration: none; min-height: 48px; }
    .btn:hover { transform:translateY(-2px); }
    .btn:active { transform:scale(.97); }
    .btn-p { background: var(--navy); color:#fff; box-shadow: 0 2px 8px rgba(13,43,78,.18); font-size:15px; padding:14px 28px; letter-spacing:.01em; }
    .btn-p:hover { background: var(--navy2); box-shadow: 0 4px 16px rgba(13,43,78,.28); }
    .btn-o { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); font-size:15px; padding:13px 28px; letter-spacing:.01em; }
    .btn-o:hover { background: rgba(13,43,78,.05); }
    .btn-sm { font-size:14px; padding:10px 20px; min-height: 44px; }
    .btn svg { flex-shrink: 0; }
    /* Section head - mobile base */
    .sh { margin-bottom: 40px; }
    .sh .title { font-size: clamp(24px, 7.5vw, 46px); font-weight: 900; letter-spacing: -.035em; line-height: 1.08; color: var(--text); text-rendering: optimizeLegibility; }
    .sh .sub { font-size: 15px; color: var(--muted); margin-top: 12px; max-width: 600px; line-height: 1.7; }
    .sh.center .sub { margin-left:auto; margin-right:auto; }
    /* NAV - mobile base: hamburger only */
    nav { position: fixed; top:0; left:0; right:0; z-index:1000; padding: 14px 0; background: var(--navy); transition: background .4s, backdrop-filter .4s, padding .3s, box-shadow .4s; }
    nav.sc { background: rgba(255,255,255,.96); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border-bottom: 1px solid var(--gb); padding: 10px 0; box-shadow: 0 2px 20px rgba(13,43,78,.07); }
    .nav-i { display:flex; align-items:center; justify-content:space-between; gap:16px; }
    .nav-logo { display:flex; align-items:center; height:44px; }
    .nav-logo img { height:42px; width:auto; object-fit:contain; }
    .nav-links { display:none; }
    .nav-cta-d { display:none; }
    .hbg { display:flex; flex-direction:column; gap:5px; cursor:pointer; padding:6px; background:none; border:none; min-height:44px; min-width:44px; align-items:center; justify-content:center; }
    .hbg span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:.3s; }
    nav:not(.sc) .hbg span { background: #fff; }
    /* Mobile menu */
    .mob { position:fixed; inset:0; background:rgba(255,255,255,.97); z-index:999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; opacity:0; pointer-events:none; visibility:hidden; transition:opacity .3s, visibility .3s; }
    .mob.open { opacity:1; pointer-events:all; visibility:visible; backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); }
    .mob a { font-size:26px; font-weight:700; color:var(--muted); transition:color .22s; }
    .mob a:hover { color:var(--navy); }
    .mob-close { position:absolute; top:20px; right:20px; width:44px; height:44px; border-radius:10px; cursor:pointer; background:var(--glass); border:1px solid var(--gb); color:var(--text); font-size:18px; display:flex; align-items:center; justify-content:center; transition:background .22s; }
    .mob-close:hover { background:var(--tglow); }
    /* HERO - mobile base: single column */
    /* Mobile: Hoehe waechst mit dem Inhalt – kein Abschneiden des Quiz */
    .hero { position:relative; display:flex; align-items:flex-start; padding:92px 0 150px; overflow:hidden; background: radial-gradient(1100px 620px at 82% 10%, rgba(15,123,200,.32) 0%, transparent 60%), radial-gradient(900px 540px at 4% 92%, rgba(245,170,28,.10) 0%, transparent 58%), linear-gradient(142deg, #07102a 0%, #0d2b4e 58%, #0a3a6e 100%); }
    .hero-g { position:relative; z-index:1; display:flex; flex-direction:column; gap:32px; }
    .hero-l { animation: fadeUp .9s var(--ease) both; }
    .hero-hl { font-size: clamp(28px, 8vw, 62px); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; margin-bottom: 18px; color:#fff; text-rendering: optimizeLegibility; }
    .hero-sub { font-size: clamp(14px, 3.8vw, 18px); color:rgba(255,255,255,.82); line-height:1.6; margin:0 0 24px; }
    .hero-sub strong { color:#fff; }
    .hero-ctas { display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
    .hero-ctas .btn { width:100%; justify-content:center; }
    .hero-trust { display:flex; flex-wrap:wrap; gap:6px 14px; }
    .ht-chip { display:inline-flex; align-items:center; gap:8px; font-size:12px; color:rgba(255,255,255,.75); background:none; border:none; padding:0; }
    .ht-chip span { color:#38bdf8; font-size:11px; }
    .hero .btn-p { background:#0f7bc8; color:#fff; box-shadow:0 2px 10px rgba(14,165,233,.3); }
    .hero .btn-p:hover { background:#0d6db0; box-shadow:0 4px 18px rgba(14,165,233,.4); }
    .hero .btn-o { border-color:rgba(255,255,255,.35); color:#fff; }
    .hero .btn-o:hover { background:rgba(255,255,255,.08); }
    /* Hero photo - mobile */
    .hero-img-frame { position:relative; border-radius:16px; overflow:hidden; box-shadow:0 16px 40px rgba(0,0,0,.35); }
    .hero-img-frame img { width:100%; height:240px; object-fit:cover; object-position:top center; display:block; }
    .hero-img-stats { display:flex; gap:0; background:rgba(8,25,51,.88); backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,.10); flex-wrap:wrap; }
    .hstat { flex:0 0 50%; padding:12px 10px; text-align:center; }
    .hstat:nth-child(1),.hstat:nth-child(2) { border-bottom:1px solid rgba(255,255,255,.08); }
    .hstat:nth-child(2) { border-left:1px solid rgba(255,255,255,.08); }
    .hstat strong { display:block; font-size:18px; font-weight:900; color:#fff; letter-spacing:-.03em; line-height:1; }
    .hstat span { display:block; font-size:10px; color:rgba(255,255,255,.52); margin-top:4px; letter-spacing:.02em; }
    /* PROBLEM - editorial numbered list */
    .prob-sec { background:var(--bg2); }
    .prob-list { display:grid; grid-template-columns:1fr; border-top:1px solid var(--gb2); }
    .prob-item { padding:22px 0 24px; border-bottom:1px solid var(--gb); }
    .prob-n { display:flex; align-items:center; gap:9px; margin-bottom:10px; }
    .prob-n::before { content:''; width:22px; height:3px; border-radius:3px; background:linear-gradient(90deg, var(--gold), var(--teal)); flex-shrink:0; }
    .prob-n span { font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
    .prob-item h3 { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text); letter-spacing:-.01em; }
    .prob-item p { font-size:14px; color:var(--muted); line-height:1.68; max-width:560px; }
    .prob-good { margin-top:40px; background:linear-gradient(120deg,#0d2b4e 0%,#0e3a66 55%,#0f6bb0 120%); border-radius:var(--r); padding:30px 24px; color:#fff; display:flex; flex-direction:column; gap:20px; position:relative; overflow:hidden; }
    .prob-good::before { content:''; position:absolute; top:-70px; right:-50px; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle, rgba(245,170,28,.22), transparent 65%); pointer-events:none; }
    .pg-tag { display:block; font-size:11.5px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:#f5c542; margin-bottom:10px; }
    .prob-good h3 { font-size:19px; font-weight:800; letter-spacing:-.02em; line-height:1.25; margin-bottom:8px; }
    .prob-good p { font-size:14px; color:rgba(255,255,255,.72); line-height:1.6; max-width:520px; }
    .prob-good .btn { flex-shrink:0; position:relative; z-index:1; background:#0f7bc8; color:#fff; }
    .prob-good .btn:hover { background:#0d6db0; }
    /* SAEUL - mobile: 1 column */
    .saeul-sec { background:var(--bg); }
    .saeul-grid { display:grid; grid-template-columns:1fr; gap:18px; }
    .saeul-card { background:var(--white); border:1px solid var(--gb); border-radius:var(--r); padding:22px 18px; transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease; box-shadow:var(--shadow); border-left:3px solid transparent; }
    .saeul-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
    .saeul-card:nth-child(1) { border-left-color:var(--teal); }
    .saeul-card:nth-child(2) { border-left-color:var(--gold); }
    .saeul-card:nth-child(3) { border-left-color:var(--navy); }
    .saeul-card:nth-child(1):hover { border-color:rgba(15,123,200,.4); }
    .saeul-card:nth-child(2):hover { border-color:rgba(232,134,15,.4); }
    .saeul-card:nth-child(3):hover { border-color:rgba(13,43,78,.4); }
    .saeul-ill { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
    .saeul-ill svg { width:32px; height:32px; display:block; }
    .saeul-card:nth-child(1) .saeul-ill { background:linear-gradient(140deg, rgba(15,123,200,.16), rgba(15,123,200,.04)); }
    .saeul-card:nth-child(2) .saeul-ill { background:linear-gradient(140deg, rgba(232,134,15,.18), rgba(232,134,15,.04)); }
    .saeul-card:nth-child(3) .saeul-ill { background:linear-gradient(140deg, rgba(13,43,78,.13), rgba(13,43,78,.04)); }
    .saeul-card h3 { font-size:16px; font-weight:700; margin-bottom:10px; line-height:1.25; color:var(--text); letter-spacing:-.01em; }
    .saeul-card p { font-size:14px; color:var(--muted); line-height:1.6; }
    .feat-list { margin-top:14px; display:flex; flex-direction:column; gap:8px; }
    .feat-li { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--muted); line-height:1.55; }
    .feat-li::before { content:'\2713'; color:var(--teal); font-weight:700; font-size:12px; flex-shrink:0; margin-top:1px; }
    /* PHOTO STRIP - mobile: 1 column */
    .pstrip-sec { background:var(--bg); padding:0 0 56px; }
    .pstrip-grid { display:grid; grid-template-columns:1fr; gap:12px; }
    .ps-item { position:relative; border-radius:14px; overflow:hidden; box-shadow:var(--shadow); }
    .ps-item picture { display:block; }
    .ps-item img { width:100%; height:210px; object-fit:cover; display:block; transition:transform .5s var(--ease); }
    .ps-item:hover img { transform:scale(1.04); }
    .ps-label { position:absolute; bottom:0; left:0; right:0; padding:36px 18px 16px; background:linear-gradient(to top,rgba(8,25,51,.88) 0%,rgba(8,25,51,.25) 65%,transparent 100%); color:#fff; font-size:14px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
    .ps-more { font-size:11.5px; font-weight:700; letter-spacing:.06em; color:#5fcde3; text-transform:uppercase; opacity:0; transform:translateX(-6px); transition:opacity .25s var(--ease), transform .25s var(--ease); white-space:nowrap; }
    a.ps-item:hover .ps-more, a.ps-item:focus-visible .ps-more { opacity:1; transform:none; }
    /* USP - mobile: 1 column */
    .usp-sec { background:var(--bg); }
    .usp-grid { display:grid; grid-template-columns:1fr; gap:0; border:1px solid var(--gb); border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow); }
    .usp-card { background:var(--white); border:none; border-bottom:1px solid var(--gb); border-radius:0; padding:20px 16px; display:flex; flex-direction:row; gap:14px; transition:background .18s ease; box-shadow:none; min-width:0; }
    .usp-card:last-child { border-bottom:none; }
    .usp-card:hover { background:var(--bg2); transform:none; box-shadow:none; }
    .usp-ic { width:42px; height:42px; border-radius:12px; background:linear-gradient(140deg, rgba(15,123,200,.14), rgba(15,123,200,.04)); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
    .usp-ic svg { width:22px; height:22px; display:block; }
    .usp-card:nth-child(2) .usp-ic, .usp-card:nth-child(4) .usp-ic, .usp-card:nth-child(6) .usp-ic { background:linear-gradient(140deg, rgba(232,134,15,.16), rgba(232,134,15,.04)); }
    .usp-card > div { min-width:0; }
    .usp-card h4 { font-size:15px; font-weight:700; margin-bottom:5px; color:var(--text); letter-spacing:-.01em; }
    .usp-card p { font-size:13.5px; color:var(--muted); line-height:1.6; }
    /* STATS - mobile: 2x2 grid */
    .stats-sec { background:#0d2b4e; }
    .stats-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
    .stat-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:var(--r); padding:22px 16px; text-align:left; transition:background .2s ease; }
    .stat-card:hover { background:rgba(255,255,255,.11); }
    .stat-n { font-size:28px; font-weight:900; letter-spacing:-.04em; line-height:1; margin-bottom:10px; color:#fff; }
    .stat-l { font-size:12px; color:rgba(255,255,255,.78); line-height:1.45; }
    /* PROCESS - mobile: vertical list with icon left */
    .proc-sec { background:var(--bg2); }
    .proc-steps { display:flex; flex-direction:column; gap:24px; position:relative; }
    .proc-steps::before { display:none; }
    .proc-step { display:flex; flex-direction:row; align-items:flex-start; gap:18px; padding:0; position:relative; min-width:0; }
    .proc-num { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:19px; font-weight:900; letter-spacing:-.03em; margin-bottom:0; position:relative; z-index:1; flex-shrink:0; color:#fff; transition:transform .2s ease; }
    .proc-step:hover .proc-num { transform:scale(1.08); }
    .proc-step:nth-child(1) .proc-num { background:var(--navy); }
    .proc-step:nth-child(2) .proc-num { background:var(--teal); }
    .proc-step:nth-child(3) .proc-num { background:var(--gold); }
    .proc-body { display:flex; flex-direction:column; align-items:flex-start; }
    .proc-body h3 { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text); letter-spacing:-.01em; line-height:1.25; }
    .proc-body p { font-size:14px; color:var(--muted); line-height:1.65; }
    .proc-badge { display:inline-flex; align-items:center; gap:5px; margin-top:10px; font-size:11.5px; color:var(--teal); text-transform:uppercase; letter-spacing:.05em; font-weight:700; }
    .proc-badge::before { content:'\2192'; font-weight:700; }
    /* ABOUT - mobile: photo top, text below */
    .about-sec { background:var(--bg2); }
    .about-g { display:flex; flex-direction:column; gap:24px; }
    .photo-wrap { position:relative; display:flex; justify-content:center; align-items:center; }
    .photo-frame { position:relative; width:100%; max-width:240px; border-radius:var(--r); overflow:hidden; box-shadow:0 16px 48px rgba(13,43,78,.18); }
    .photo-frame::before { content:''; position:absolute; inset:0; border-radius:inherit; border:1px solid var(--gb2); z-index:3; pointer-events:none; }
    .photo-frame picture { display:block; }
    .photo-frame img { width:100%; height:auto; display:block; object-fit:cover; border-radius:inherit; }
    .photo-badge { position:absolute; bottom:-14px; left:20px; background:var(--white); border:1px solid var(--gb2); padding:8px 14px; border-radius:8px; white-space:nowrap; font-size:11.5px; font-weight:600; color:var(--text); display:flex; align-items:center; gap:8px; z-index:5; letter-spacing:.02em; box-shadow:var(--shadow); }
    .photo-badge::before { content:''; width:6px; height:6px; background:var(--teal); border-radius:50%; }
    .about-h { font-size:clamp(22px,6vw,36px); font-weight:800; letter-spacing:-.02em; line-height:1.15; margin-bottom:14px; color:var(--text); text-rendering:optimizeLegibility; }
    .about-p { font-size:14px; color:var(--muted); line-height:1.75; margin-bottom:14px; }
    .about-p strong { color:var(--text); font-weight:700; }
    .check-list { display:flex; flex-direction:column; gap:10px; margin-top:18px; padding-top:18px; border-top:1px solid var(--gb); }
    .check-li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--muted); line-height:1.5; }
    .ck { width:22px; height:22px; border-radius:50%; flex-shrink:0; margin-top:0; background:rgba(15,123,200,.10); display:flex; align-items:center; justify-content:center; }
    .ck svg { width:11px; height:11px; stroke:var(--teal); fill:none; stroke-width:2.5; }
    /* FAQ - mobile: full-width accordion */
    .faq-sec { background:var(--bg2); }
    .faq-list { display:flex; flex-direction:column; gap:10px; max-width:780px; margin:0 auto; }
    .faq-item { background:var(--white); border:1px solid var(--gb); border-radius:var(--r); overflow:hidden; transition:border-color .2s ease, box-shadow .2s ease; box-shadow:var(--shadow); }
    .faq-item.op { border-color:var(--teal); box-shadow:var(--shadow-md); border-left:3px solid var(--teal); }
    .faq-q { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 18px; cursor:pointer; font-size:14px; font-weight:600; user-select:none; -webkit-user-select:none; -webkit-tap-highlight-color:transparent; transition:color .15s; background:none; border:none; width:100%; color:var(--text); text-align:left; min-height:52px; }
    .faq-q:hover { color:var(--teal); }
    .faq-chev { width:20px; height:20px; flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:transform .25s ease; }
    .faq-chev svg { width:13px; height:13px; stroke:var(--muted2); fill:none; stroke-width:1.8; }
    .faq-item.op .faq-chev { transform:rotate(180deg); }
    .faq-item.op .faq-chev svg { stroke:var(--teal); }
    .faq-a { max-height:0; overflow:hidden; padding:0 18px; font-size:14px; color:var(--muted); line-height:1.7; transition:max-height .35s ease, padding .25s ease; }
    .faq-a.op { max-height:500px; padding:0 18px 18px; }
    .faq-a strong { color:var(--navy); }
    /* CTA - mobile */
    .cta-band { background:#0d2b4e; border:none; border-radius:16px; padding:40px 20px; text-align:center; position:relative; overflow:hidden; margin:0; }
    .cta-band::before { display:none; }
    .cta-band h2 { font-size:clamp(24px,7vw,46px); font-weight:900; letter-spacing:-.035em; line-height:1.08; margin-bottom:14px; position:relative; z-index:1; color:#fff; }
    .cta-band p { font-size:15px; color:rgba(255,255,255,.82); margin-bottom:26px; position:relative; z-index:1; }
    .cta-btns { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; z-index:1; }
    .cta-btns .btn { width:100%; }
    .cta-band .btn-p { background:#0f7bc8; color:#fff; box-shadow:0 2px 10px rgba(14,165,233,.28); }
    .cta-band .btn-p:hover { background:#0d6db0; box-shadow:0 4px 18px rgba(14,165,233,.38); }
    .cta-band .btn-o { border-color:rgba(255,255,255,.35); color:#fff; }
    .cta-band .btn-o:hover { background:rgba(255,255,255,.08); }
    .cta-note { font-size:12px; color:rgba(255,255,255,.68); margin-top:14px; position:relative; z-index:1; display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap; }
    .cta-note::before { content:'\2013'; color:rgba(255,255,255,.4); font-weight:400; }
    /* FOOTER - mobile: stacked */
    footer { background:var(--navy); border-top:none; padding:48px 0 24px; }
    .foot-g { display:grid; grid-template-columns:1fr; gap:32px; margin-bottom:32px; }
    .foot-logo { display:flex; align-items:center; height:42px; margin-bottom:14px; }
    .foot-logo img { height:40px; width:auto; filter:brightness(10); }
    .foot-desc { font-size:13px; color:rgba(255,255,255,.62); line-height:1.72; margin-bottom:18px; max-width:300px; }
    .foot-col h4 { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:rgba(255,255,255,.58); margin-bottom:14px; }
    .foot-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
    .foot-col ul li a { font-size:13px; color:rgba(255,255,255,.68); transition:color .22s; }
    .foot-col ul li a:hover { color:#fff; }
    .foot-bot { display:flex; align-items:flex-start; flex-direction:column; gap:6px; padding-top:20px; border-top:1px solid rgba(255,255,255,.10); font-size:12px; color:rgba(255,255,255,.32); }
    /* QUIZ PRE */
    .quiz-pre { display:flex; align-items:center; gap:12px; margin-bottom:10px; flex-wrap:wrap; }
    .quiz-pre-badge { font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:#34d399; background:rgba(52,211,153,.12); border:1px solid rgba(52,211,153,.25); padding:3px 10px; border-radius:4px; white-space:nowrap; }
    .quiz-pre-line { font-size:13px; color:rgba(255,255,255,.6); margin:0; line-height:1.4; }
    /* QUIZ - mobile base */
    .quiz-wrap { background:rgba(255,255,255,.06); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,.14); border-radius:20px; padding:22px 16px 18px; color:#fff; box-shadow:0 24px 64px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.12); }
    .quiz-progress-wrap { height:7px; background:rgba(255,255,255,.12); border-radius:99px; margin-bottom:10px; overflow:hidden; }
    .quiz-progress-bar { height:100%; width:25%; background:linear-gradient(90deg,#38bdf8,#0f7bc8); border-radius:99px; transition:width .45s cubic-bezier(.25,.46,.45,.94); box-shadow:none; }
    .quiz-step-label { font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:rgba(255,255,255,.38); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
    .quiz-step-label::before { content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:#0ea5e9; box-shadow:none; }
    .quiz-h { font-size:20px; font-weight:800; letter-spacing:-.03em; line-height:1.22; margin-bottom:6px; color:#fff; text-wrap:balance; }
    .quiz-sub { font-size:12px; color:rgba(255,255,255,.42); margin-bottom:12px; }
    .quiz-step { display:none; }
    .quiz-step.active { display:block; animation:qfade .3s ease both; }
    @keyframes qfade { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
    /* Quiz options - mobile: 2 cols for touch-friendly targets */
    /* Auswahlkarten im Funnel-Stil: gestapelt, grosse Tippflaeche, Haken rechts */
    .quiz-opts { display:flex; flex-direction:column; gap:10px; margin:16px 0 10px; }
    .quiz-opt { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 18px; min-height:60px; background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.16); border-radius:16px; cursor:pointer; font-size:15px; font-weight:600; text-align:left; color:rgba(255,255,255,.88); line-height:1.35; transition:background .2s var(--ease), border-color .2s var(--ease), transform .22s var(--spring), box-shadow .2s; user-select:none; -webkit-tap-highlight-color:transparent; position:relative; }
    .quiz-opt > span { flex:1; min-width:0; }
    /* Auswahlkreis rechts */
    .quiz-opt::after { content:''; width:24px; height:24px; border-radius:50%; border:2px solid rgba(255,255,255,.26); flex-shrink:0; transition:border-color .2s, background .2s, transform .25s var(--spring); background-position:center; background-repeat:no-repeat; background-size:13px; }
    .quiz-opt:hover { background:rgba(15,123,200,.20); border-color:rgba(56,189,248,.55); color:#fff; transform:translateY(-2px); box-shadow:0 8px 22px rgba(0,0,0,.18); }
    .quiz-opt:active { transform:scale(.985); }
    .quiz-opt.sel { background:rgba(15,123,200,.30); border-color:#38bdf8; color:#fff; box-shadow:0 6px 20px rgba(14,165,233,.25); }
    .quiz-opt.sel::after { border-color:#38bdf8; background-color:#38bdf8; transform:scale(1.06);
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2b4e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
    .quiz-fields { display:flex; flex-direction:column; gap:12px; margin:12px 0 8px; }
    .quiz-field { display:flex; flex-direction:column; gap:5px; }
    .quiz-field label { font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.72); }
    .quiz-field input { background:rgba(255,255,255,.09); border:1.5px solid rgba(255,255,255,.18); border-radius:10px; padding:12px 14px; font-family:inherit; font-size:14px; color:#fff; outline:none; transition:border-color .2s,background .2s; min-height:48px; }
    .quiz-field input::placeholder { color:rgba(255,255,255,.3); }
    .quiz-field input:focus { border-color:#0ea5e9; background:rgba(255,255,255,.13); }
    .quiz-check { display:flex; align-items:flex-start; gap:10px; font-size:12px; color:rgba(255,255,255,.72); cursor:pointer; line-height:1.5; }
    .quiz-check input[type="checkbox"] { width:18px; height:18px; flex-shrink:0; margin-top:2px; accent-color:#0ea5e9; cursor:pointer; }
    .quiz-nav { display:flex; align-items:center; justify-content:space-between; margin-top:14px; padding-top:12px; border-top:1px solid rgba(255,255,255,.10); }
    .quiz-btn-back { background:none; border:none; cursor:pointer; padding:8px 0; font-family:inherit; font-size:13px; font-weight:600; color:rgba(255,255,255,.5); transition:color .2s; min-height:44px; }
    .quiz-btn-back:hover { color:#fff; }
    .quiz-btn-next { background:linear-gradient(135deg,#38bdf8 0%,#0f7bc8 100%); border:none; border-radius:99px; cursor:pointer; font-family:inherit; font-size:15px; font-weight:700; color:#fff; padding:14px 30px; min-height:52px; box-shadow:0 6px 22px rgba(14,165,233,.38); transition:transform .22s var(--spring), box-shadow .2s, filter .2s; }
    .quiz-btn-next:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(14,165,233,.52); filter:brightness(1.06); }
    .quiz-btn-next:active { transform:scale(.97); }
    .quiz-btn-next:disabled { opacity:.45; cursor:not-allowed; transform:none; box-shadow:none; }
    .quiz-thanks { display:none; text-align:center; padding:20px 0; }
    .quiz-thanks.active { display:block; animation:qfade .4s ease both; }
    .qt-icon { width:56px; height:56px; border-radius:50%; background:rgba(15,123,200,.25); border:2px solid #0ea5e9; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
    .qt-icon svg { width:26px; height:26px; stroke:#0ea5e9; }
    .quiz-thanks h3 { font-size:20px; font-weight:800; color:#fff; margin-bottom:8px; }
    .quiz-thanks p { font-size:15px; color:rgba(255,255,255,.7); }
    .quiz-thanks strong { color:#fff; }

    /* ======= QUALITY REFINEMENTS ======= */

    /* Photo badge pulse dot */
    @keyframes blink { 0%,100% { box-shadow:0 0 0 0 rgba(15,123,200,.55); } 60% { box-shadow:0 0 0 6px rgba(15,123,200,0); } }
    .photo-badge::before { animation: blink 2.6s ease-in-out infinite; }

    /* "0 €" stat — gold gradient like the others */
    .stat-n.gold { background: linear-gradient(135deg, #f5c542 0%, #d4760a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    /* Hero outline button — more presence */
    .hero .btn-o { border-color: rgba(255,255,255,.55); }
    .hero .btn-o:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); }

    /* stat-l: slightly larger for readability */
    .stat-l { font-size: 13px; }

    /* Stat cards: brand-colored top accents */
    .stat-card { border-top: 3px solid rgba(255,255,255,.14); }
    .stats-grid .stat-card:nth-child(odd) { border-top-color: #38bdf8; }
    .stats-grid .stat-card:nth-child(even) { border-top-color: #f5aa1c; }

    /* Wave divider: white section flows into the navy stats band */
    .stats-sec { position: relative; overflow: hidden; }
    .stats-wave { position: absolute; top: 0; left: 0; width: 100%; height: 44px; pointer-events: none; z-index: 1; }
    .stats-wave svg { display: block; width: 100%; height: 100%; }

    /* Anchor jumps land below the fixed nav */
    section[id] { scroll-margin-top: 84px; }

    /* ======= PLAYFUL MOTION LAYER ======= */

    /* Buttons: glossy light sweep on hover */
    .btn::after { content:''; position:absolute; top:0; left:-120%; width:60%; height:100%; background:linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform:skewX(-18deg); transition:none; pointer-events:none; }
    .btn:hover::after { animation: btnSweep .7s var(--ease); }
    @keyframes btnSweep { from { left:-120%; } to { left:150%; } }

    /* Section tag: gold line grows in when revealed */
    .js .r .tag::before { width:0; transition: width .6s .15s var(--ease); }
    .js .r.vis .tag::before { width:26px; }

    /* Illustration tiles: playful tilt + lift on hover */
    @keyframes floaty { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
    .saeul-ill, .usp-ic { transition: transform .38s var(--spring); will-change:transform; }
    .saeul-card:hover .saeul-ill { transform:translateY(-4px) rotate(-5deg) scale(1.05); }
    .usp-card:hover .usp-ic { transform:rotate(-6deg) scale(1.08); }
    /* Problem marker: line extends on hover */
    .prob-n::before { transition: width .3s var(--spring); }
    .prob-item:hover .prob-n::before { width:34px; }

    /* Cards: springier lift */
    .saeul-card { transition: transform .32s var(--spring), box-shadow .3s ease, border-color .25s ease; }
    .usp-card { transition: background .18s ease, transform .3s var(--spring); }
    .usp-card:hover { transform:translateX(3px); }

    /* Hero primary CTA: soft attention pulse */
    @keyframes ctaGlow { 0%,100% { box-shadow:0 4px 16px rgba(14,165,233,.32), inset 0 1px 0 rgba(255,255,255,.14); } 50% { box-shadow:0 6px 26px rgba(14,165,233,.5), inset 0 1px 0 rgba(255,255,255,.14); } }
    .hero-ctas .btn-p { animation: ctaGlow 3.2s ease-in-out infinite; }
    .hero-ctas .btn-p:hover { animation:none; }

    /* Photo badge: floats subtly */
    .photo-badge { animation: floaty 4.5s ease-in-out infinite; }

    /* Stat numbers: pop when they scroll in */
    .stat-card.vis .stat-n { animation: statPop .6s var(--spring) both; }
    @keyframes statPop { 0% { transform:scale(.6); opacity:0; } 60% { transform:scale(1.08); } 100% { transform:scale(1); opacity:1; } }

    /* Process number circles: pop + gentle ring on hover */
    .proc-num { transition: transform .3s var(--spring), box-shadow .3s ease; }
    .proc-step:hover .proc-num { transform:scale(1.12) rotate(-4deg); }

    /* FAQ chevron: springy rotate already; add row nudge on hover */
    .faq-q { transition: color .15s, padding-left .2s var(--ease); }
    .faq-q:hover { padding-left:22px; }

    /* Freebie PDF mock: playful straighten on hover */
    .freebie-pdf { transition: transform .4s var(--spring), box-shadow .3s ease; }
    .freebie-visual:hover .freebie-pdf { transform:rotate(0deg) scale(1.03); box-shadow:0 14px 44px rgba(13,43,78,.22); }

    /* Nav logo: subtle wiggle on hover */
    .nav-logo .brand-svg { transition: transform .35s var(--spring); transform-origin:left center; }
    .nav-logo:hover .brand-svg { transform:scale(1.04); }

    @media (prefers-reduced-motion: reduce) {
      .hero-ctas .btn-p, .photo-badge, .stat-card.vis .stat-n { animation:none !important; }
      .btn:hover::after { animation:none !important; }
    }

    /* Hero: brand deco layer (dot grid texture, logo motifs, wave) */
    .hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: linear-gradient(165deg, rgba(0,0,0,.7) 0%, transparent 62%); mask-image: linear-gradient(165deg, rgba(0,0,0,.7) 0%, transparent 62%); pointer-events:none; }
    .hero-deco { position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
    .hero-deco svg { position:absolute; display:block; }
    .hd-wave { left:0; bottom:-2px; width:100%; height:clamp(110px, 20vw, 260px); }
    /* Punktbogen: auf Mobil dezent oben rechts, ab Desktop gross */
    .hd-dots { display:block; top:-26px; right:-96px; width:78vw; height:auto; opacity:.45; will-change:transform; }
    @media (min-width: 1024px) { .hd-dots { top:64px; right:-70px; width:min(44vw, 540px); opacity:1; } }

    /* ======= MOBILE HERO REFINEMENT ======= */
    @media (max-width: 767px) {
      .hero-hl { font-size: clamp(30px, 8.6vw, 40px); line-height:1.06; margin-bottom:14px; }
      .hero-sub { font-size: 15.5px; line-height:1.62; margin-bottom:22px; }

      /* Klare Hierarchie: ein starker CTA, der zweite als schlanker Textlink */
      .hero-ctas { gap:4px; margin-bottom:20px; }
      .hero-ctas .btn-o {
        background:none; border:none; box-shadow:none; min-height:44px;
        font-size:14.5px; font-weight:600; color:rgba(255,255,255,.68); padding:8px 0;
      }
      .hero-ctas .btn-o::after { content:'→'; margin-left:2px; transition:transform .2s var(--ease); display:inline-block; }
      .hero-ctas .btn-o:hover { background:none; color:#fff; transform:none; }
      .hero-ctas .btn-o:hover::after { transform:translateX(3px); }

      /* Vertrauenssignale: eigene Zeile mit feiner Trennlinie */
      .hero-trust { flex-direction:column; gap:9px; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); }
      .ht-chip { font-size:13px; color:rgba(255,255,255,.8); gap:10px; }
      .ht-chip span {
        width:17px; height:17px; border-radius:50%; background:rgba(56,189,248,.16);
        display:inline-flex; align-items:center; justify-content:center; font-size:9.5px; flex-shrink:0;
      }

      /* Abstand zwischen Textblock und Quiz vergroessern */
      .hero-g { gap:40px; }
      .quiz-pre { gap:8px; margin-bottom:12px; }
      .quiz-pre-line { font-size:12.5px; }
    }

    /* ======= PREMIUM LAYER: Parallax, Progress, Depth ======= */

    /* Scroll progress bar */
    .scroll-progress { position:fixed; top:0; left:0; width:100%; height:3px; z-index:2000; pointer-events:none; }
    .scroll-progress b { display:block; height:100%; background:linear-gradient(90deg,#f5aa1c 0%,#0f7bc8 55%,#5fcde3 100%); transform-origin:left; transform:scaleX(0); }

    /* Sections that carry parallax decor */
    .prob-sec, .saeul-sec, .proc-sec, .about-sec, .faq-sec, .freebie-sec { position:relative; overflow:hidden; }
    .sec > .wrap, .sec-sm > .wrap { position:relative; z-index:1; }
    .sec-deco { position:absolute; pointer-events:none; z-index:0; will-change:transform; display:none; }
    @media (min-width: 1024px) { .sec-deco { display:block; } }

    /* Hero headline: premium gradient on the teal line + balanced wrapping */
    .hero-hl { text-wrap: balance; }
    .sh .title { text-wrap: balance; }
    .hero-hl .gt { background:linear-gradient(100deg,#8fdcef 0%,#38bdf8 45%,#57b6e8 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

    /* Method cards: accent-matched hover glow */
    .saeul-card:nth-child(1):hover { box-shadow: 0 6px 14px rgba(13,43,78,.06), 0 20px 48px rgba(15,123,200,.15); }
    .saeul-card:nth-child(2):hover { box-shadow: 0 6px 14px rgba(13,43,78,.06), 0 20px 48px rgba(232,134,15,.15); }
    .saeul-card:nth-child(3):hover { box-shadow: 0 6px 14px rgba(13,43,78,.06), 0 20px 48px rgba(13,43,78,.15); }

    /* Footer: wave divider mirrors the stats band */
    footer { position:relative; overflow:hidden; padding-top:84px; }
    .foot-wave { position:absolute; top:0; left:0; width:100%; height:42px; pointer-events:none; }
    .foot-wave svg { display:block; width:100%; height:100%; }
    footer .wrap { position:relative; z-index:1; }

    /* Cards: layered shadows for more depth */
    .saeul-card { box-shadow: 0 1px 2px rgba(13,43,78,.05), 0 4px 18px rgba(13,43,78,.08); }
    .saeul-card:hover { box-shadow: 0 4px 10px rgba(13,43,78,.08), 0 14px 38px rgba(13,43,78,.15); }
    .usp-grid { box-shadow: 0 1px 2px rgba(13,43,78,.04), 0 4px 20px rgba(13,43,78,.09); border-color: rgba(13,43,78,.08); }
    .faq-item { box-shadow: 0 1px 2px rgba(13,43,78,.04), 0 2px 12px rgba(13,43,78,.06); }

    /* Process step: glow on number circles */
    .proc-step:nth-child(1) .proc-num { box-shadow: 0 6px 20px rgba(13,43,78,.30); }
    .proc-step:nth-child(2) .proc-num { box-shadow: 0 6px 20px rgba(15,123,200,.38); }
    .proc-step:nth-child(3) .proc-num { box-shadow: 0 6px 20px rgba(232,134,15,.38); }

    /* Stats section: richer background + gradient numbers */
    .stats-sec { background: linear-gradient(135deg, #08152d 0%, #0d2b4e 55%, #0e3260 100%); }
    .stat-n.gt { background: linear-gradient(135deg, #60d8ee 0%, #0f7bc8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .stat-n.gt-o { background: linear-gradient(135deg, #f5c542 0%, #d4760a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .stat-card { border-color: rgba(255,255,255,.14); }
    .stat-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.22); }

    /* CTA band: decorative orb glows */
    .cta-band::before {
      display: block; content: ''; position: absolute;
      top: -90px; right: -90px; width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,123,200,.30) 0%, transparent 66%);
      pointer-events: none; z-index: 0;
    }
    .cta-band::after {
      content: ''; position: absolute;
      bottom: -70px; left: -70px; width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,134,15,.18) 0%, transparent 66%);
      pointer-events: none; z-index: 0;
    }

    /* About: deeper photo shadow */
    .photo-frame { box-shadow: 0 8px 24px rgba(13,43,78,.12), 0 28px 68px rgba(13,43,78,.20); }

    /* Nav scrolled: crisper border + shadow */
    nav.sc { box-shadow: 0 1px 0 rgba(13,43,78,.08), 0 4px 24px rgba(13,43,78,.09); }

    /* Quiz wrap: richer glass */
    .quiz-wrap { box-shadow: 0 20px 60px rgba(0,0,0,.30), 0 8px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(0,0,0,.08); }

    /* Buttons: gold primary style for hero */
    .hero .btn-p { background: linear-gradient(135deg, #0f7bc8 0%, #0d6db0 100%); box-shadow: 0 4px 16px rgba(14,165,233,.32), inset 0 1px 0 rgba(255,255,255,.14); }
    .hero .btn-p:hover { box-shadow: 0 8px 28px rgba(14,165,233,.45), inset 0 1px 0 rgba(255,255,255,.14); }
    .btn-p { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); box-shadow: 0 2px 8px rgba(13,43,78,.20), inset 0 1px 0 rgba(255,255,255,.08); }
    .btn-p:hover { box-shadow: 0 6px 20px rgba(13,43,78,.28), inset 0 1px 0 rgba(255,255,255,.08); }

    /* About on white for section rhythm (bg2 → white → bg2) */
    .about-sec { background: var(--bg); }

    /* ======= FREEBIE SECTION ======= */
    /* FREEBIE SECTION */
    .freebie-sec { background: var(--bg); }
    .freebie-g { display: grid; grid-template-columns: 1fr; gap: 32px; }
    .freebie-visual { background: var(--bg2); border: 1px solid var(--gb); border-radius: var(--r); padding: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; min-height: 280px; }
    .freebie-pdf { background: var(--bg); border: 1px solid var(--gb); border-radius: 10px; box-shadow: 0 8px 32px rgba(13,43,78,.14); padding: 22px 20px; width: 200px; transform: rotate(-2deg); }
    .freebie-pdf .freebie-tag { display: inline-block; background: var(--gold); color: white; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; padding: 3px 9px; border-radius: 4px; margin-bottom: 12px; text-transform: uppercase; }
    .freebie-pdf .freebie-title { font-size: 13.5px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 12px; }
    .freebie-pdf .freebie-line { height: 7px; background: var(--bg3); border-radius: 3px; margin-bottom: 7px; }
    .freebie-pdf .freebie-line:nth-child(4) { width: 75%; }
    .freebie-pdf .freebie-line:nth-child(5) { width: 55%; }
    .freebie-dl-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 1.5px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 8px; text-decoration: none; transition: all .2s; box-shadow: 0 2px 8px rgba(13,43,78,.12); }
    .freebie-dl-btn:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
    .freebie-content h2 { font-size: clamp(22px,6vw,38px); font-weight: 900; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 14px; color: var(--text); }
    .freebie-content > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
    .freebie-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding: 0; }
    .freebie-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
    .freebie-list li::before { content: '\2713'; color: var(--teal); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
    .freebie-actions { display: flex; flex-direction: column; gap: 10px; }
    .freebie-alt-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--teal); transition: gap .2s; }
    .freebie-alt-link:hover { gap: 11px; }

    /* ====================================================
       TABLET  @media (min-width: 768px)
    ==================================================== */
    @media (min-width: 768px) {
      html { font-size: 16px; }
      .wrap { padding: 0 24px; }
      .sec { padding: 80px 0; }
      .sec-sm { padding: 56px 0; }
      .sh { margin-bottom: 46px; }
      .sh .title { font-size: clamp(28px,4.5vw,46px); }
      .sh .sub { font-size: 16px; }
      .hero { min-height:100dvh; align-items:center; padding: 90px 0 0; }
      .hero-hl { font-size: clamp(32px,5.5vw,62px); margin-bottom: 20px; }
      .hero-sub { font-size: clamp(15px,2vw,18px); margin-bottom: 28px; }
      .hero-ctas { flex-direction: row; flex-wrap: wrap; }
      .hero-ctas .btn { width: auto; }
      .hero-trust { gap: 8px 20px; }
      .ht-chip { font-size: 13px; }
      .hero-img-frame img { height: 320px; }
      .hstat { flex:1; padding:14px 16px; border-right:1px solid rgba(255,255,255,.08); }
      .hstat:last-child { border-right: none; }
      .hstat:nth-child(1), .hstat:nth-child(2) { border-bottom: none; }
      .hstat:nth-child(2) { border-left: none; }
      .hstat strong { font-size: 20px; }
      .hstat span { font-size: 11px; }
      .prob-list { grid-template-columns: 1fr 1fr; column-gap: 56px; }
      .prob-item.wide { grid-column: 1 / -1; }
      .prob-item.wide p { max-width: 720px; }
      .prob-good { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px 40px; gap: 32px; }
      .prob-good h3 { font-size: 21px; }
      .saeul-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
      .saeul-card { padding: 24px; }
      .pstrip-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
      .pstrip-sec { padding: 0 0 68px; }
      .ps-item img { height: 250px; }
      .usp-grid { grid-template-columns: repeat(2,1fr); }
      .usp-card { border-right:1px solid var(--gb); border-bottom:1px solid var(--gb); padding:22px 24px; }
      .usp-card:nth-child(even) { border-right: none; }
      .usp-card:last-child, .usp-card:nth-last-child(2) { border-bottom: none; }
      .stat-n { font-size: 32px; }
      .stat-card { padding: 26px 20px; }
      .about-g { flex-direction: row; gap: 44px; align-items: center; }
      .photo-frame { max-width: 280px; }
      .cta-band { padding: 56px 44px; border-radius: 20px; }
      .cta-band p { font-size: 16px; }
      .cta-btns .btn { width: auto; }
      .foot-g { grid-template-columns: 1fr 1fr; gap: 36px; }
      .foot-brand { grid-column: 1 / -1; }
      .foot-bot { flex-direction: row; align-items: center; justify-content: space-between; }
      .quiz-opts { gap: 11px; }
      .quiz-wrap { padding: 26px 24px 22px; }
      .lmodal { padding: 40px 44px; border-radius: 18px; }
      .freebie-actions { flex-direction: row; flex-wrap: wrap; }
    }

    /* ====================================================
       DESKTOP  @media (min-width: 1024px)
    ==================================================== */
    @media (min-width: 1024px) {
      .sec { padding: 100px 0; }
      .sec-sm { padding: 64px 0; }
      .sh { margin-bottom: 52px; }
      .sh .title { font-size: clamp(28px,3.8vw,46px); }
      .sh .sub { font-size: 17px; }
      nav { padding: 16px 0; }
      .nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
      .nav-links a { font-size:14px; font-weight:600; color:var(--muted); padding:8px 14px; border-radius:0; transition:color .22s; position:relative; }
      .nav-links a::after { content:''; position:absolute; bottom:2px; left:14px; right:14px; height:1.5px; background:var(--teal); transform:scaleX(0); transform-origin:left; transition:transform .22s var(--ease); }
      .nav-links a:hover { color:var(--text); background:none; }
      .nav-links a:hover::after { transform:scaleX(1); }
      nav:not(.sc) .nav-links a { color:rgba(255,255,255,.75); }
      nav:not(.sc) .nav-links a:hover { color:#fff; background:none; }
      nav:not(.sc) .nav-links a::after { background:rgba(255,255,255,.6); }
      nav:not(.sc) .nav-cta-d { background:var(--teal); box-shadow:0 2px 10px rgba(15,123,200,.35); }
      nav:not(.sc) .nav-cta-d:hover { background:var(--teal2); }
      .nav-cta-d { display: inline-flex; }
      .hbg { display: none; }
      .hero { padding-top: 90px; }
      /* Hero ist einspaltig, seit die Check-Karte entfernt wurde. */
      .hero-g { display:block; }
      .hero-l { max-width: 760px; }
      .hero-l { animation: fadeLeft .9s var(--ease) both; }
      .hero-hl { font-size:clamp(36px,5vw,62px); margin-bottom:22px; }
      .hero-sub { font-size:clamp(15px,1.4vw,18px); margin-bottom:32px; }
      .hero-ctas { margin-bottom: 30px; }
      .hero-img-frame { border-radius: 20px; }
      .hero-img-frame img { height: 440px; }
      .hstat { padding: 16px 18px; }
      .hstat strong { font-size: 22px; }
      .hstat span { font-size: 11px; }
      .prob-list { column-gap: 80px; }
      .prob-item { padding: 26px 0 28px; }
      .saeul-grid { grid-template-columns: repeat(3,1fr); gap:26px; }
      .saeul-card { padding: 28px; }
      .saeul-card h3 { font-size: 17px; }
      .pstrip-grid { grid-template-columns: repeat(3,1fr); gap:16px; }
      .pstrip-sec { padding: 0 0 80px; }
      .ps-item img { height: 280px; }
      .usp-card { padding: 26px 28px; }
      .usp-card:nth-child(5), .usp-card:nth-child(6) { border-bottom: none; }
      .stats-grid { grid-template-columns: repeat(4,1fr); gap:22px; }
      .stat-card { padding: 32px 24px; }
      .stat-n { font-size: 38px; }
      .stat-l { font-size: 13px; }
      .proc-steps { display:grid; grid-template-columns:repeat(3,1fr); flex-direction:unset; gap:0; }
      .proc-steps::before { content:''; display:block; position:absolute; top:24px; left:calc(16.66% + 24px); width:calc(66.66% - 48px); height:2px; background:var(--gb2); z-index:0; }
      .proc-step { flex-direction:column; align-items:center; text-align:center; padding:0 28px; gap:0; }
      .proc-num { margin-bottom: 28px; }
      .proc-body { align-items: center; }
      .proc-body h3 { font-size: 17px; }
      .freebie-g { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
      .about-g { display:grid; grid-template-columns:1fr 1.15fr; gap:70px; align-items:center; }
      .photo-frame { max-width: 340px; }
      .about-h { font-size: clamp(24px,2.6vw,36px); }
      .about-p { font-size: 15px; }
      .cta-band { padding:80px 60px; margin:0 24px; }
      .cta-band p { font-size: 17px; }
      .cta-btns .btn { width: auto; }
      .foot-g { grid-template-columns:2fr 1fr 1fr; gap:48px; }
      .foot-brand { grid-column: unset; }
      .foot-bot { flex-direction: row; justify-content: space-between; }
      .quiz-wrap { padding: 36px 32px 28px; border-radius: 24px; }
      .lmodal { padding: 48px 52px; border-radius: 20px; }
    }

    /* ====================================================
       LARGE DESKTOP  @media (min-width: 1100px)
    ==================================================== */
    @media (min-width: 1100px) {
      .hero-g { gap: 60px; }
      .foot-g { gap: 48px; }
    }

/* ---- Recruiting-Check-Karte im Hero (ersetzt das fruehere Quiz) ---- */
.check-karte{display:block;position:relative;background:rgba(255,255,255,.07);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.16);border-radius:20px;padding:26px 22px 22px;color:#fff;text-align:center;overflow:hidden;
  box-shadow:0 24px 64px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.12);
  transition:transform .3s var(--spring),box-shadow .3s,border-color .3s}
.check-karte:hover{transform:translateY(-5px);border-color:rgba(95,205,227,.45);box-shadow:0 32px 76px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.18)}
.check-karte:active{transform:translateY(-2px) scale(.995)}
.check-karte::after{content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);transform:skewX(-18deg);transition:left .7s var(--ease)}
.check-karte:hover::after{left:130%}
.ck-bild{width:112px;height:112px;margin:0 auto 14px;display:block;animation:ckSchweben 5s ease-in-out infinite}
@keyframes ckSchweben{0%,100%{transform:translateY(0) rotate(-1.5deg)}50%{transform:translateY(-8px) rotate(1.5deg)}}
.check-karte:hover .ck-bild{animation-play-state:paused}
.ck-label{display:inline-block;font-size:11.5px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#5fcde3;margin-bottom:9px}
.ck-hl{display:block;font-size:clamp(19px,4.4vw,24px);font-weight:850;letter-spacing:-.028em;line-height:1.18;margin-bottom:9px;color:#fff}
.ck-sub{font-size:14.5px;line-height:1.55;color:rgba(255,255,255,.74);margin:0 auto 20px;max-width:38ch}
.ck-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:100%;min-height:54px;padding:15px 26px;
  font-size:16px;font-weight:800;color:#0d2b4e;background:linear-gradient(135deg,#f5aa1c,#e8860f);border-radius:11px;
  box-shadow:0 6px 20px rgba(232,134,15,.38);transition:filter .2s,box-shadow .25s}
.check-karte:hover .ck-btn{filter:brightness(1.07);box-shadow:0 10px 28px rgba(232,134,15,.48)}
@media(min-width:900px){ .check-karte{padding:32px 30px 26px} .ck-bild{width:126px;height:126px} }
@media(prefers-reduced-motion:reduce){ .ck-bild{animation:none} .check-karte::after{display:none} }

/* ---- Zweizeiliger Aufruf: Frage oben, Handlung unten ---- */
.btn-zwei{flex-direction:column;gap:3px;padding:13px 26px;min-height:62px;line-height:1.25;text-align:center}
.btn-zwei .btn-frage{font-size:13px;font-weight:600;opacity:.82;letter-spacing:.005em}
.btn-zwei .btn-tun{display:inline-flex;align-items:center;gap:8px;font-size:16px;font-weight:800;letter-spacing:-.01em}
.btn-zwei .btn-tun svg{transition:transform .22s var(--ease)}
.btn-zwei:hover .btn-tun svg{transform:translateX(4px)}
@media(max-width:519px){
  .btn-zwei{padding:12px 18px;min-height:60px}
  .btn-zwei .btn-frage{font-size:12.5px}
  .btn-zwei .btn-tun{font-size:15px}
}
@media(min-width:900px){
  .btn-zwei{padding:15px 34px;min-height:68px}
  .btn-zwei .btn-tun{font-size:17px}
}

/* ---- Was eine offene Stelle im Monat kostet ---- */
.preis-hinweis{display:flex;flex-direction:column;align-items:center;gap:8px;max-width:640px;margin:22px auto 0;
  padding:20px 22px;background:rgba(232,134,15,.07);border:1px solid rgba(232,134,15,.22);border-radius:14px;text-align:center}
.preis-zahl{font-size:clamp(28px,6vw,40px);font-weight:900;letter-spacing:-.035em;line-height:1;
  color:var(--gold);font-variant-numeric:tabular-nums}
.preis-text{font-size:14.5px;line-height:1.55;color:var(--muted);max-width:52ch}
.preis-text strong{color:var(--text);font-weight:750}
.preis-text a{color:var(--teal);font-weight:650;text-decoration:underline;text-underline-offset:2px}
@media(min-width:760px){
  .preis-hinweis{flex-direction:row;gap:20px;text-align:left;padding:22px 26px}
  .preis-zahl{flex:0 0 auto}
}

/* ---- Hero-Illustration ----
   Unter 1160px laeuft das Bild als eigene Karte im Textfluss (siehe
   .hero-visual-m weiter unten). hero-l wird erst ab 1024px auf
   max-width:760px begrenzt, bis 1160px waere links neben der Karte
   also noch nicht sicher genug Platz - deshalb zeigt sich das
   seitliche Panel selbst erst ab 1160px, weil dort auch
   .wrap an seine max-width stoesst und sich der freie Platz rechts von
   der Textspalte einfach berechnen laesst: Restbreite = 50vw - 252px.
   Das haelt bei jeder Fensterbreite konstant 48px Abstand zum Text. */
.hero-visual { display: none; }
@media (min-width: 1160px) {
  .hero-visual {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(300px, calc(50vw - 252px), 760px);
    z-index: 0;
    pointer-events: none;
  }
  .hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 12%, #000 26%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 12%, #000 26%);
  }
}

/* ---- Hero-Illustration als Karte, unter 1160px ----
   Eigener, engerer Zuschnitt als beim seitlichen Panel (weniger leerer
   Rand), weil das Bild hier als abgesetzte Karte mit sichtbarer Kante
   auftritt statt in den Hintergrund auszublenden. */
.hero-visual-m { margin: 28px 0 0; }
.hero-visual-m picture, .hero-visual-m img {
  display: block; width: 100%; height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,.32), 0 2px 10px rgba(0,0,0,.2);
}
@media (min-width: 560px) { .hero-visual-m { max-width: 460px; margin-left: auto; margin-right: auto; } }
@media (min-width: 1160px) { .hero-visual-m { display: none; } }
