/* ============================================================
   ZuchtDigital – Globales Stylesheet
   Marine (Vertrauen) · Gold/Beige (Premium) · Grau (Struktur)
   ============================================================ */

/* ============ SCHRIFTEN (selbst gehostet, DSGVO-konform) ============ */
/* Inter – Sans */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;
  src:url('schriften/inter-v20-latin-regular.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;
  src:url('schriften/inter-v20-latin-500.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;
  src:url('schriften/inter-v20-latin-600.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;
  src:url('schriften/inter-v20-latin-700.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;
  src:url('schriften/inter-v20-latin-800.woff2') format('woff2')}
/* Source Serif 4 – Serif */
@font-face{font-family:'Source Serif 4';font-style:normal;font-weight:600;font-display:swap;
  src:url('schriften/source-serif-4-v14-latin-ext-600.woff2') format('woff2')}
@font-face{font-family:'Source Serif 4';font-style:normal;font-weight:700;font-display:swap;
  src:url('schriften/source-serif-4-v14-latin-ext-700.woff2') format('woff2')}

/* ============ DESIGN TOKENS ============ */
:root{
  --navy-900:#0a1a30;
  --navy-800:#0f2544;
  --navy-700:#173561;
  --navy-600:#22497f;
  --navy-100:#e7edf6;
  --gold-600:#b8893f;
  --gold-500:#c99b52;
  --gold-400:#d9b378;
  --beige-100:#f6efe2;
  --beige-50:#faf6ee;
  --grey-50:#f7f8fa;
  --grey-100:#eef1f5;
  --grey-200:#e2e7ee;
  --grey-300:#cbd3de;
  --grey-500:#697588;
  --grey-700:#3c4657;
  --ink:#14203a;
  --white:#ffffff;
  --success:#1f7a52;

  --maxw:1140px;
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 1px 2px rgba(15,37,68,.06),0 2px 8px rgba(15,37,68,.05);
  --shadow-md:0 6px 24px rgba(15,37,68,.10);
  --shadow-lg:0 18px 50px rgba(15,37,68,.16);
  --font-sans:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --font-serif:'Source Serif 4',Georgia,serif;
}

/* ============ RESET ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-y:scroll}
body{
  font-family:var(--font-sans);color:var(--ink);background:var(--white);
  line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
h1,h2,h3{line-height:1.15;letter-spacing:-.02em;color:var(--navy-800)}

/* ============ LAYOUT ============ */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
section{padding:84px 0}
.eyebrow{display:inline-block;font-size:.82rem;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:var(--gold-600);margin-bottom:14px}
.section-head{max-width:720px;margin:0 auto 54px;text-align:center}
.section-head h2{font-size:clamp(1.7rem,3.6vw,2.5rem);margin-bottom:16px}
.section-head p{color:var(--grey-500);font-size:1.08rem}

/* ============ BUTTONS ============ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-weight:700;font-size:1.02rem;padding:16px 30px;border-radius:12px;min-height:56px;
  transition:transform .15s ease,box-shadow .2s ease,background .2s ease;text-align:center}
.btn-primary{background:linear-gradient(180deg,var(--gold-500),var(--gold-600));
  color:#241603;box-shadow:0 6px 18px rgba(184,137,63,.35)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(184,137,63,.45)}
.btn-ghost{background:var(--white);color:var(--navy-800);border:1.5px solid var(--grey-300)}
.btn-ghost:hover{border-color:var(--navy-600);background:var(--grey-50)}
.btn-lg{padding:19px 40px;font-size:1.1rem;min-height:62px}
.btn:focus-visible,a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:3px solid var(--navy-600);outline-offset:3px;border-radius:12px}

/* ============ NAV ============ */
.skip{position:absolute;left:-999px;top:0;background:var(--navy-800);color:#fff;
  padding:12px 18px;z-index:100;border-radius:0 0 8px 0}
.skip:focus{left:0}
header.nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--grey-200)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:70px}
.logo{display:flex;align-items:center;gap:11px;font-weight:800;font-size:1.2rem;color:var(--navy-800)}
.logo .mark{width:38px;height:38px;border-radius:10px;display:grid;place-items:center;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400);flex-shrink:0}
.logo .mark svg{width:22px;height:22px}
.logo span b{color:var(--gold-600)}
.logo-img{height:52px;width:auto;display:block}
@media(max-width:600px){.logo-img{height:42px}}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-links a{font-weight:500;color:var(--grey-700);font-size:.98rem}
.nav-links a:hover,.nav-links a.active{color:var(--navy-800)}
.nav-cta{padding:11px 22px;min-height:44px;font-size:.95rem}
.nav-cta:hover{color:#241603}
.burger{display:none;width:46px;height:46px;border-radius:10px;border:1.5px solid var(--grey-300);
  flex-direction:column;gap:5px;align-items:center;justify-content:center}
.burger span{width:20px;height:2px;background:var(--navy-800);border-radius:2px;transition:.2s}

/* ============ HERO ============ */
.hero{background:
  radial-gradient(900px 500px at 85% -10%,rgba(201,155,82,.12),transparent 60%),
  linear-gradient(170deg,var(--navy-800) 0%,var(--navy-900) 100%);
  color:#fff;position:relative;overflow:hidden;padding:76px 0 88px}
.hero::after{content:"";position:absolute;inset:0;opacity:.5;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px);background-size:26px 26px}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.hero h1{color:#fff;font-size:clamp(2.05rem,4.6vw,3.35rem);margin-bottom:20px}
.hero h1 em{color:var(--gold-400);font-style:normal}
.hero .lead{font-size:1.16rem;color:#cdd8e8;max-width:540px;margin-bottom:28px}
.hero-badge{display:inline-flex;align-items:center;gap:9px;background:rgba(201,155,82,.14);
  border:1px solid rgba(201,155,82,.4);color:var(--gold-400);font-weight:600;font-size:.86rem;
  padding:8px 15px;border-radius:100px;margin-bottom:22px;letter-spacing:.02em}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:26px}
.hero-trust{display:flex;flex-wrap:wrap;gap:22px;color:#aebdd2;font-size:.92rem}
.hero-trust span{display:flex;align-items:center;gap:8px}
.hero-trust svg{width:18px;height:18px;color:var(--gold-400);flex-shrink:0}
.hero-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;
  box-shadow:var(--shadow-lg);color:var(--ink)}
.hero-card h3{font-size:1.12rem;margin-bottom:4px}
.hero-card .sub{color:var(--grey-500);font-size:.9rem;margin-bottom:18px}
.checklist{list-style:none;display:flex;flex-direction:column;gap:13px}
.checklist li{display:flex;gap:12px;align-items:flex-start;font-size:.97rem;font-weight:500}
.checklist .tick{width:24px;height:24px;border-radius:50%;background:var(--beige-100);color:var(--gold-600);
  display:grid;place-items:center;flex-shrink:0;font-weight:800;font-size:.8rem;margin-top:1px}
.hero-card .foot{margin-top:20px;padding-top:18px;border-top:1px solid var(--grey-200);
  display:flex;align-items:center;justify-content:space-between}
.hero-card .price{font-weight:800;font-size:1.5rem;color:var(--navy-800)}
.hero-card .price s{font-weight:500;font-size:1rem;color:var(--grey-500);margin-right:8px}
.hero-card .once{font-size:.82rem;color:var(--grey-500)}

/* ============ SUB-HERO (Unterseiten) ============ */
.subhero{background:
  radial-gradient(700px 400px at 88% -30%,rgba(201,155,82,.14),transparent 60%),
  linear-gradient(170deg,var(--navy-800),var(--navy-900));
  color:#fff;padding:64px 0 60px;position:relative;overflow:hidden}
.subhero .wrap{position:relative;z-index:2}
.subhero h1{color:#fff;font-size:clamp(1.9rem,4vw,2.8rem);margin-bottom:14px;max-width:760px}
.subhero p{color:#cdd8e8;font-size:1.1rem;max-width:640px}
.crumbs{display:flex;gap:8px;align-items:center;color:#9fb0c8;font-size:.9rem;margin-bottom:18px}
.crumbs a:hover{color:var(--gold-400)}
.crumbs span{opacity:.6}

/* ============ TRUST STRIP ============ */
.strip{background:var(--grey-50);border-bottom:1px solid var(--grey-200);padding:26px 0}
.strip-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px 40px;text-align:center}
.strip p{width:100%;text-align:center;color:var(--grey-500);font-size:.82rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:4px}
.strip .item{color:var(--navy-700);font-weight:700;font-size:1.05rem;opacity:.75;display:flex;align-items:center;gap:8px}
.strip .item svg{width:20px;height:20px;color:var(--gold-600)}

/* ============ PROBLEM ============ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.prob-card{background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--radius);padding:30px 26px}
.prob-card .ic{width:50px;height:50px;border-radius:12px;background:#fdeee9;color:#c0492c;
  display:grid;place-items:center;margin-bottom:16px}
.prob-card .ic svg{width:26px;height:26px}
.prob-card h3{font-size:1.15rem;margin-bottom:8px}
.prob-card p{color:var(--grey-500);font-size:.98rem}

/* ============ MODULES ============ */
.modules{background:var(--grey-50);border-top:1px solid var(--grey-200);border-bottom:1px solid var(--grey-200)}
.mod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.mod-card{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);
  padding:30px 26px;box-shadow:var(--shadow-sm);transition:transform .18s ease,box-shadow .2s ease;
  display:flex;flex-direction:column}
.mod-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--gold-400)}
.mod-num{font-family:var(--font-serif);font-size:.95rem;font-weight:700;color:var(--gold-600);margin-bottom:14px}
.mod-card .ic{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;margin-bottom:18px;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400)}
.mod-card .ic svg{width:28px;height:28px}
.mod-card h3{font-size:1.18rem;margin-bottom:9px}
.mod-card p{color:var(--grey-500);font-size:.97rem;flex:1}
.mod-card .tag{margin-top:16px;font-size:.83rem;font-weight:600;color:var(--navy-700);
  display:inline-flex;align-items:center;gap:7px}
.mod-card .tag svg{width:15px;height:15px;color:var(--success)}

/* ============ BENEFIT SPLIT ============ */
.ben-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.ben-copy h2{font-size:clamp(1.6rem,3.4vw,2.35rem);margin-bottom:18px}
.ben-copy>p{color:var(--grey-500);font-size:1.06rem;margin-bottom:26px}
.ben-list{list-style:none;display:flex;flex-direction:column;gap:20px}
.ben-list li{display:flex;gap:16px;align-items:flex-start}
.ben-list .ic{width:44px;height:44px;border-radius:11px;background:var(--beige-100);color:var(--gold-600);
  display:grid;place-items:center;flex-shrink:0}
.ben-list .ic svg{width:22px;height:22px}
.ben-list h4{font-size:1.05rem;color:var(--navy-800);margin-bottom:3px}
.ben-list p{color:var(--grey-500);font-size:.96rem}
.ben-visual{background:linear-gradient(160deg,var(--navy-800),var(--navy-900));border-radius:var(--radius-lg);
  padding:40px 34px;color:#fff;box-shadow:var(--shadow-lg)}
.roi-box{text-align:center}
.roi-box .big{font-size:3.2rem;font-weight:800;color:var(--gold-400);line-height:1;margin-bottom:8px}
.roi-box .lbl{color:#c6d2e4;font-size:1rem;margin-bottom:28px}
.roi-row{display:flex;justify-content:space-between;padding:15px 0;border-top:1px solid rgba(255,255,255,.12);font-size:.98rem}
.roi-row span:first-child{color:#aebdd2}
.roi-row span:last-child{font-weight:700}
.roi-row.total span{color:var(--gold-400);font-size:1.1rem}

/* ============ TESTIMONIALS ============ */
.social{background:var(--beige-50);border-top:1px solid var(--grey-200)}
.tst-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.tst{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
.stars{color:var(--gold-500);margin-bottom:14px;letter-spacing:2px;font-size:1.05rem}
.tst p{font-size:1rem;color:var(--grey-700);flex:1;margin-bottom:20px}
.tst .who{display:flex;align-items:center;gap:12px}
.tst .av{width:46px;height:46px;border-radius:50%;background:linear-gradient(150deg,var(--navy-600),var(--navy-800));
  color:var(--gold-400);display:grid;place-items:center;font-weight:700;flex-shrink:0}
.tst .who b{display:block;color:var(--navy-800);font-size:.96rem}
.tst .who small{color:var(--grey-500);font-size:.85rem}

/* ============ PRICING ============ */
.pricing{background:linear-gradient(170deg,var(--navy-800),var(--navy-900));color:#fff}
.pricing .section-head h2{color:#fff}
.pricing .section-head p{color:#c6d2e4}
.price-card{max-width:560px;margin:0 auto;background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow-lg)}
.price-top{padding:38px 40px 30px;text-align:center;border-bottom:1px solid var(--grey-200);position:relative}
.price-flag{position:absolute;top:20px;right:20px;background:var(--beige-100);color:var(--gold-600);
  font-weight:700;font-size:.78rem;padding:6px 13px;border-radius:100px;letter-spacing:.04em}
.price-top h3{font-size:1.35rem;margin-bottom:6px}
.price-top .desc{color:var(--grey-500);font-size:.96rem;margin-bottom:22px}
.price-amount{display:flex;align-items:baseline;justify-content:center;gap:10px;margin-bottom:6px}
.price-amount .num{font-size:3.6rem;font-weight:800;color:var(--navy-800);line-height:1}
.price-amount s{color:var(--grey-500);font-size:1.3rem;font-weight:500}
.price-top .note{color:var(--grey-500);font-size:.9rem}
.price-body{padding:32px 40px 38px}
.price-body ul{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:28px}
.price-body li{display:flex;gap:12px;align-items:flex-start;font-size:1rem;font-weight:500;color:var(--ink)}
.price-body .tick{width:24px;height:24px;border-radius:50%;background:var(--beige-100);color:var(--gold-600);
  display:grid;place-items:center;flex-shrink:0;font-weight:800;font-size:.78rem;margin-top:1px}
.price-body .btn{width:100%}
.price-secure{text-align:center;margin-top:16px;color:var(--grey-500);font-size:.86rem;
  display:flex;align-items:center;justify-content:center;gap:8px}
.price-secure svg{width:16px;height:16px;color:var(--success)}
.guarantee{max-width:560px;margin:26px auto 0;display:flex;gap:16px;align-items:center;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);padding:20px 24px}
.guarantee .seal{width:56px;height:56px;flex-shrink:0;border-radius:50%;background:var(--gold-500);color:#241603;
  display:grid;place-items:center;font-weight:800;text-align:center;font-size:.72rem;line-height:1.05}
.guarantee p{font-size:.95rem;color:#dbe4f0}
.guarantee b{color:#fff}

/* ============ FAQ ============ */
.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--grey-200);border-radius:var(--radius);overflow:hidden;background:var(--grey-50)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:22px 24px;font-weight:600;font-size:1.05rem;color:var(--navy-800);text-align:left;cursor:pointer;list-style:none}
.faq-q::-webkit-details-marker{display:none}
.faq-q .chev{width:26px;height:26px;flex-shrink:0;transition:transform .25s ease;color:var(--gold-600)}
.faq-item[open] .chev{transform:rotate(180deg)}
.faq-a{padding:0 24px;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease;
  color:var(--grey-500);font-size:1rem}
.faq-item[open] .faq-a{padding:0 24px 24px;max-height:500px}

/* ============ FINAL CTA ============ */
.final{background:var(--beige-50);text-align:center;border-top:1px solid var(--grey-200)}
.final h2{font-size:clamp(1.8rem,4vw,2.6rem);max-width:760px;margin:0 auto 18px}
.final p{color:var(--grey-500);font-size:1.1rem;max-width:600px;margin:0 auto 30px}

/* ============ CURRICULUM (kurs.html) ============ */
.audience{background:var(--white)}
.aud-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.aud-card{border:1px solid var(--grey-200);border-radius:var(--radius);padding:28px;background:var(--grey-50)}
.aud-card .ic{width:50px;height:50px;border-radius:12px;background:var(--beige-100);color:var(--gold-600);
  display:grid;place-items:center;margin-bottom:15px}
.aud-card .ic svg{width:26px;height:26px}
.aud-card h3{font-size:1.12rem;margin-bottom:8px}
.aud-card p{color:var(--grey-500);font-size:.96rem}

.curriculum{background:var(--grey-50);border-top:1px solid var(--grey-200);border-bottom:1px solid var(--grey-200)}
.cur-list{max-width:860px;margin:0 auto;display:flex;flex-direction:column;gap:18px}
.cur-mod{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);
  box-shadow:var(--shadow-sm);overflow:hidden}
.cur-head{display:flex;gap:18px;align-items:flex-start;padding:26px 28px;border-bottom:1px solid var(--grey-100)}
.cur-badge{width:52px;height:52px;flex-shrink:0;border-radius:13px;display:grid;place-items:center;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400);font-weight:800;font-size:1.15rem}
.cur-head .meta{flex:1}
.cur-head h3{font-size:1.22rem;margin-bottom:5px}
.cur-head .lead{color:var(--grey-500);font-size:.98rem}
.cur-head .dur{font-size:.82rem;font-weight:600;color:var(--gold-600);white-space:nowrap;margin-top:4px;display:inline-block}
.cur-lessons{list-style:none;padding:22px 28px;display:grid;grid-template-columns:1fr 1fr;gap:12px 26px}
.cur-lessons li{display:flex;gap:11px;align-items:flex-start;font-size:.96rem;color:var(--grey-700)}
.cur-lessons svg{width:18px;height:18px;color:var(--success);flex-shrink:0;margin-top:3px}
.cur-out{background:var(--beige-50);padding:16px 28px;font-size:.92rem;color:var(--navy-700)}
.cur-out b{color:var(--navy-800)}

/* ============ RICH CONTENT / LEGAL ============ */
.doc{background:var(--white);padding:56px 0 80px}
.doc-wrap{max-width:780px;margin:0 auto;padding:0 22px}
.doc-note{background:var(--beige-50);border:1px solid var(--gold-400);border-left:4px solid var(--gold-500);
  border-radius:10px;padding:16px 20px;font-size:.95rem;color:var(--navy-700);margin-bottom:36px}
.doc-note b{color:var(--navy-800)}
.doc h2{font-size:1.5rem;margin:38px 0 14px}
.doc h2:first-of-type{margin-top:0}
.doc h3{font-size:1.15rem;margin:26px 0 10px}
.doc p{margin-bottom:14px;color:var(--grey-700)}
.doc ul{margin:0 0 16px 22px;color:var(--grey-700)}
.doc li{margin-bottom:8px}
.doc a{color:var(--navy-600);text-decoration:underline}
.doc .ph{background:var(--grey-100);border-radius:5px;padding:1px 7px;font-weight:600;color:var(--navy-700);font-size:.94em}
.doc-meta{color:var(--grey-500);font-size:.9rem;margin-top:40px;border-top:1px solid var(--grey-200);padding-top:18px}

/* ============ CONTACT ============ */
.contact{background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:start}
.contact-info h2{font-size:1.6rem;margin-bottom:14px}
.contact-info>p{color:var(--grey-500);margin-bottom:26px}
.contact-info .row{display:flex;gap:14px;align-items:flex-start;margin-bottom:20px}
.contact-info .ic{width:46px;height:46px;border-radius:11px;background:var(--beige-100);color:var(--gold-600);
  display:grid;place-items:center;flex-shrink:0}
.contact-info .ic svg{width:22px;height:22px}
.contact-info h4{font-size:1rem;color:var(--navy-800);margin-bottom:2px}
.contact-info p{color:var(--grey-500);font-size:.96rem;margin:0}
.form-card{background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--radius-lg);
  padding:34px;box-shadow:var(--shadow-sm)}
.field{margin-bottom:18px}
.field label{display:block;font-weight:600;font-size:.92rem;color:var(--navy-800);margin-bottom:7px}
.field input,.field textarea{width:100%;font-family:inherit;font-size:1rem;padding:13px 15px;
  border:1.5px solid var(--grey-300);border-radius:10px;background:var(--white);color:var(--ink)}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--navy-600);
  box-shadow:0 0 0 3px rgba(34,73,127,.15)}
.field textarea{min-height:130px;resize:vertical}
.form-check{display:flex;gap:10px;align-items:flex-start;font-size:.9rem;color:var(--grey-500);margin-bottom:20px}
.form-check input{margin-top:3px;width:18px;height:18px;flex-shrink:0}
.form-check a{color:var(--navy-600);text-decoration:underline}
.form-note{text-align:center;font-size:.85rem;color:var(--grey-500);margin-top:14px}

/* ============ FOOTER ============ */
footer{background:var(--navy-900);color:#a9b8cf;padding:56px 0 30px;font-size:.94rem}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;margin-bottom:40px}
footer .logo{color:#fff;margin-bottom:14px}
footer .logo span b{color:var(--gold-400)}
.foot-about{color:#8b9cb6;max-width:280px;font-size:.92rem}
footer h5{color:#fff;font-size:.9rem;letter-spacing:.05em;text-transform:uppercase;margin-bottom:16px}
footer ul{list-style:none;display:flex;flex-direction:column;gap:11px}
footer ul a:hover{color:var(--gold-400)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:24px;display:flex;
  justify-content:space-between;flex-wrap:wrap;gap:12px;color:#7286a3;font-size:.86rem}

/* ============ RESPONSIVE ============ */
@media (max-width:940px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-card{max-width:480px}
  .ben-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
  .prob-grid,.mod-grid,.tst-grid,.aud-grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  section{padding:60px 0}
  .nav-links{position:fixed;top:70px;left:0;right:0;background:var(--white);flex-direction:column;
    align-items:stretch;gap:0;padding:10px 20px 24px;border-bottom:1px solid var(--grey-200);
    box-shadow:var(--shadow-md);transform:translateY(-140%);transition:transform .28s ease;height:auto}
  .nav-links.open{transform:translateY(0)}
  .nav-links a{padding:15px 4px;border-bottom:1px solid var(--grey-100);font-size:1.05rem}
  .nav-links .nav-cta{margin-top:12px;text-align:center;border-bottom:none}
  .burger{display:flex}
  .prob-grid,.mod-grid,.tst-grid,.aud-grid,.foot-grid,.cur-lessons{grid-template-columns:1fr}
  .hero-cta .btn{width:100%}
  .foot-bottom{flex-direction:column}
  .cur-head{flex-wrap:wrap}
}
/* ============================================================
   KURSBEREICH (Dashboard + Modulseiten)
   ============================================================ */

/* Fortschritts-Balken (global) */
.pbar{height:8px;background:var(--grey-200);border-radius:100px;overflow:hidden}
.pbar>span{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--gold-500),var(--gold-400));
  border-radius:100px;transition:width .4s ease}

/* --- Dashboard --- */
.dash{background:var(--grey-50);padding:44px 0 80px}
.dash-top{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius-lg);
  padding:30px 34px;box-shadow:var(--shadow-sm);margin-bottom:34px;display:flex;
  gap:28px;align-items:center;flex-wrap:wrap}
.dash-top .txt{flex:1;min-width:240px}
.dash-top h2{font-size:1.4rem;margin-bottom:6px}
.dash-top p{color:var(--grey-500);font-size:.98rem}
.dash-ring{display:flex;align-items:center;gap:16px}
.dash-ring .num{font-size:2.6rem;font-weight:800;color:var(--navy-800);line-height:1}
.dash-ring .lbl{color:var(--grey-500);font-size:.86rem;max-width:120px}
.dash-progress{width:100%;margin-top:16px}
.dash-progress .meta{display:flex;justify-content:space-between;font-size:.85rem;color:var(--grey-500);margin-bottom:7px}

.mgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.mcard{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--grey-200);
  border-radius:var(--radius);box-shadow:var(--shadow-sm);overflow:hidden;
  transition:transform .18s ease,box-shadow .2s ease;text-decoration:none;color:inherit}
.mcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--gold-400)}
.mcard-head{display:flex;gap:16px;align-items:flex-start;padding:24px 26px 18px}
.mcard-badge{width:50px;height:50px;flex-shrink:0;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400);font-weight:800;font-size:1.1rem}
.mcard-head .meta{flex:1}
.mcard-head h3{font-size:1.12rem;margin-bottom:4px}
.mcard-head p{color:var(--grey-500);font-size:.92rem}
.mcard-foot{margin-top:auto;padding:14px 26px 20px}
.mcard-foot .meta{display:flex;justify-content:space-between;font-size:.82rem;color:var(--grey-500);margin-bottom:7px}
.mcard-foot .meta .done{font-weight:700;color:var(--success)}
.mcard .lessons-n{font-size:.82rem;color:var(--gold-600);font-weight:600}
.mcard.done{border-color:var(--success)}
.mcard.done .mcard-badge{background:var(--success);color:#fff;font-size:1.5rem}
.mcard.done .mcard-foot .meta .val{color:var(--success);font-weight:700}

/* --- Modul-Layout --- */
.course-layout{display:grid;grid-template-columns:260px 1fr;gap:40px;align-items:start;
  max-width:var(--maxw);margin:0 auto;padding:44px 22px 80px}
.course-side{position:sticky;top:90px}
.course-side .box{background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--radius);padding:20px}
.course-side h4{font-size:.82rem;letter-spacing:.06em;text-transform:uppercase;color:var(--grey-500);margin-bottom:14px}
.course-side ol{list-style:none;counter-reset:les;display:flex;flex-direction:column;gap:4px}
.course-side li a{display:flex;gap:10px;align-items:flex-start;padding:9px 10px;border-radius:8px;
  font-size:.92rem;color:var(--grey-700);line-height:1.35}
.course-side li a:hover{background:var(--white);color:var(--navy-800)}
.course-side li a::before{counter-increment:les;content:counter(les);width:22px;height:22px;flex-shrink:0;
  border-radius:6px;background:var(--white);border:1px solid var(--grey-300);display:grid;place-items:center;
  font-size:.72rem;font-weight:700;color:var(--navy-700)}
.course-side .back{display:inline-flex;align-items:center;gap:7px;margin-top:16px;font-size:.88rem;
  font-weight:600;color:var(--navy-600)}
.course-side .back svg{width:16px;height:16px}
.side-prog{margin-top:16px}
.side-prog .meta{display:flex;justify-content:space-between;font-size:.8rem;color:var(--grey-500);margin-bottom:6px}

.course-main{min-width:0}
.course-main>.intro{border-bottom:1px solid var(--grey-200);padding-bottom:26px;margin-bottom:10px}
.course-main .kicker{color:var(--gold-600);font-weight:700;font-size:.8rem;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:10px}
.course-main h1{font-size:clamp(1.7rem,3.6vw,2.4rem);margin-bottom:12px}
.course-main .intro p{color:var(--grey-500);font-size:1.05rem}

/* --- Lektion --- */
.lesson{padding:34px 0;border-bottom:1px solid var(--grey-200)}
.lesson:last-of-type{border-bottom:none}
.lesson-head{display:flex;gap:14px;align-items:flex-start;margin-bottom:16px}
.lesson-no{width:40px;height:40px;flex-shrink:0;border-radius:10px;display:grid;place-items:center;
  background:var(--beige-100);color:var(--gold-600);font-weight:800;font-size:.95rem}
.lesson-head h2{font-size:1.35rem;margin:0;flex:1;padding-top:5px}
.lesson-body p{color:var(--grey-700);margin-bottom:15px}
.lesson-body h3{font-size:1.08rem;color:var(--navy-800);margin:22px 0 10px}
.lesson-body ul,.lesson-body ol{margin:0 0 16px 4px;list-style:none;display:flex;flex-direction:column;gap:10px}
.lesson-body ol{counter-reset:step}
.lesson-body ul li,.lesson-body ol li{display:flex;gap:11px;align-items:flex-start;color:var(--grey-700)}
.lesson-body ul li::before{content:"";width:20px;height:20px;flex-shrink:0;margin-top:2px;border-radius:50%;
  background:var(--beige-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8893f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat}
.lesson-body ol li{counter-increment:step}
.lesson-body ol li::before{content:counter(step);width:24px;height:24px;flex-shrink:0;border-radius:50%;
  background:var(--navy-800);color:#fff;display:grid;place-items:center;font-size:.78rem;font-weight:700;margin-top:1px}

/* Info-Boxen */
.box-tip,.box-warn,.box-result,.box-tpl{border-radius:12px;padding:18px 20px;margin:20px 0;font-size:.97rem}
.box-tip{background:#eef6f1;border-left:4px solid var(--success)}
.box-tip b{color:var(--success)}
.box-warn{background:#fdf0ec;border-left:4px solid #c0492c}
.box-warn b{color:#c0492c}
.box-result{background:var(--beige-50);border-left:4px solid var(--gold-500)}
.box-result b{color:var(--gold-600)}
.box-tip p:last-child,.box-warn p:last-child,.box-result p:last-child{margin-bottom:0}
.box-tpl{background:var(--navy-800);color:#dbe4f0;display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.box-tpl .i{width:44px;height:44px;flex-shrink:0;border-radius:11px;background:rgba(217,179,120,.16);
  color:var(--gold-400);display:grid;place-items:center}
.box-tpl .i svg{width:22px;height:22px}
.box-tpl .t{flex:1;min-width:180px}
.box-tpl .t b{color:#fff;display:block;margin-bottom:2px}
.box-tpl .t span{font-size:.88rem}
.box-tpl .btn{min-height:46px;padding:12px 22px;font-size:.92rem}

/* Erledigt-Markierung */
.lesson-done{display:flex;align-items:center;gap:11px;margin-top:22px;padding:14px 18px;
  background:var(--grey-50);border:1px solid var(--grey-200);border-radius:10px;cursor:pointer;
  font-weight:600;color:var(--navy-800);font-size:.95rem;user-select:none;width:fit-content}
.lesson-done input{width:22px;height:22px;flex-shrink:0;accent-color:var(--success);cursor:pointer}
.lesson-done.checked{background:#eef6f1;border-color:var(--success);color:var(--success)}

/* Modul-Navigation unten */
.mod-nav{display:flex;justify-content:space-between;gap:16px;margin-top:40px;flex-wrap:wrap}
.mod-nav a{flex:1;min-width:200px;display:flex;flex-direction:column;gap:3px;padding:18px 22px;
  border:1px solid var(--grey-200);border-radius:var(--radius);background:var(--grey-50);transition:.2s}
.mod-nav a:hover{border-color:var(--gold-400);background:var(--white);box-shadow:var(--shadow-sm)}
.mod-nav a.next{text-align:right;align-items:flex-end}
.mod-nav .dir{font-size:.78rem;color:var(--grey-500);text-transform:uppercase;letter-spacing:.06em}
.mod-nav .ttl{font-weight:700;color:var(--navy-800)}
.mod-nav a.disabled{opacity:.45;pointer-events:none}

/* ============================================================
   TOOLS (Bonus-Kapitel)
   ============================================================ */
.tool{padding:34px 0;border-bottom:1px solid var(--grey-200)}
.tool:last-of-type{border-bottom:none}
.tool-head{display:flex;gap:14px;align-items:flex-start;margin-bottom:14px}
.tool-ic{width:46px;height:46px;flex-shrink:0;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400)}
.tool-ic svg{width:24px;height:24px}
.tool-head h2{font-size:1.35rem;margin:0;flex:1;padding-top:3px}
.tool>p.lead{color:var(--grey-500);margin-bottom:20px}
.tool-card{background:var(--grey-50);border:1px solid var(--grey-200);border-radius:var(--radius);padding:26px}
.tool-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px 20px}
.tool-grid .full{grid-column:1/-1}
.tool .field{margin-bottom:0}
.tool .field select{width:100%;font-family:inherit;font-size:1rem;padding:13px 15px;border:1.5px solid var(--grey-300);
  border-radius:10px;background:var(--white);color:var(--ink)}
.tool .field select:focus{outline:none;border-color:var(--navy-600);box-shadow:0 0 0 3px rgba(34,73,127,.15)}
.tool-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.tool-result{margin-top:22px;display:none}
.tool-result.show{display:block}

.res-table{width:100%;border-collapse:collapse;background:var(--white);border:1px solid var(--grey-200);
  border-radius:var(--radius);overflow:hidden}
.res-table th,.res-table td{text-align:left;padding:13px 16px;border-bottom:1px solid var(--grey-100);font-size:.96rem}
.res-table th{background:var(--navy-800);color:#fff;font-weight:600;font-size:.85rem;letter-spacing:.02em}
.res-table tr:last-child td{border-bottom:none}
.res-table td.date{font-weight:700;color:var(--navy-800);white-space:nowrap}
.res-table tr.hl td{background:var(--beige-50)}

.ampel{display:flex;align-items:center;gap:14px;padding:20px 22px;border-radius:12px;margin-bottom:16px;background:var(--white);border:1px solid var(--grey-200)}
.ampel .dot{width:46px;height:46px;border-radius:50%;flex-shrink:0;display:grid;place-items:center;color:#fff;font-weight:800;font-size:1.05rem}
.ampel.green .dot{background:var(--success)}
.ampel.amber .dot{background:#c99b52}
.ampel.red .dot{background:#c0492c}
.ampel .txt b{display:block;font-size:1.05rem;color:var(--navy-800);margin-bottom:2px}
.ampel .txt span{color:var(--grey-500);font-size:.94rem}
.big-num{font-size:2.4rem;font-weight:800;line-height:1}

.coi-row{display:grid;grid-template-columns:1fr auto auto auto;gap:10px;align-items:end;margin-bottom:10px}
.coi-row .rm{background:#fdeee9;color:#c0492c;border-radius:8px;width:44px;height:46px;font-size:1.2rem;font-weight:700}
.coi-row .rm:hover{background:#f8ddd4}
@media (max-width:560px){.coi-row{grid-template-columns:1fr 1fr;gap:8px}}

.contract-out{background:var(--white);border:1px solid var(--grey-300);border-radius:10px;padding:22px;
  font-family:'Source Serif 4',Georgia,serif;font-size:.95rem;line-height:1.7;color:var(--ink);white-space:pre-wrap;
  max-height:520px;overflow:auto}
.copy-note{font-size:.85rem;color:var(--success);margin-top:10px;display:none}
.copy-note.show{display:block}

.check-list{display:flex;flex-direction:column;gap:10px}
.check-list label{display:flex;gap:12px;align-items:flex-start;padding:14px 16px;background:var(--white);
  border:1px solid var(--grey-200);border-radius:10px;cursor:pointer;font-size:.97rem;color:var(--grey-700)}
.check-list label:hover{border-color:var(--gold-400)}
.check-list input{width:20px;height:20px;flex-shrink:0;accent-color:var(--success);margin-top:2px;cursor:pointer}
.check-missing{margin-top:16px}
.check-missing h4{font-size:1rem;color:var(--navy-800);margin-bottom:8px}
.check-missing ul{margin:0 0 0 4px;list-style:none;display:flex;flex-direction:column;gap:8px}
.check-missing li{display:flex;gap:10px;align-items:flex-start;color:var(--grey-700);font-size:.94rem}
.check-missing li::before{content:"!";width:20px;height:20px;flex-shrink:0;border-radius:50%;background:#fdeee9;
  color:#c0492c;font-weight:800;font-size:.8rem;display:grid;place-items:center;margin-top:2px}

.q{margin-bottom:20px}
.q>p{font-weight:600;color:var(--navy-800);margin-bottom:10px;font-size:.98rem}
.q .opts{display:flex;flex-direction:column;gap:8px}
.q .opts label{display:flex;gap:10px;align-items:center;padding:11px 14px;background:var(--white);
  border:1.5px solid var(--grey-200);border-radius:9px;cursor:pointer;font-size:.95rem;color:var(--grey-700)}
.q .opts label:hover{border-color:var(--gold-400)}
.q .opts input{accent-color:var(--navy-700);width:18px;height:18px}

.tool-disclaimer{font-size:.86rem;color:var(--grey-500);margin-top:14px;font-style:italic}

@media (max-width:900px){
  .mgrid{grid-template-columns:1fr}
  .course-layout{grid-template-columns:1fr;gap:20px}
  .course-side{position:static}
  .course-side .box{display:none}
  .course-side .box.mobile-toc{display:block}
  .tool-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}

/* ============================================================
   LEKTIONS-SLIDER (Modulseiten)
   Ohne JS (kein .ls-ready) bleiben alle Lektionen sichtbar.

/* ============ SEITEN-BILDER (Fotos) ============ */
/* Kurs-Curriculum: Bild oben in jeder Modulkarte (Karte hat overflow:hidden → runde Ecken) */
.cur-thumb{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
/* Wide-Banner in der dunklen Kurs-Subhero */
.subhero-banner{display:block;width:100%;aspect-ratio:16/9;max-height:380px;object-fit:cover;
  border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);margin-top:28px}
/* Banner oben auf den Modul-Detailseiten */
.module-banner{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;
  border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);margin-bottom:24px}

/* ============ FINAL-CTA MIT FOTO-HINTERGRUND ============ */
.final-photo{position:relative;background-size:cover;background-position:center;
  background-repeat:no-repeat;border-top:none;isolation:isolate}
.final-photo::before{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(10,26,48,.74),rgba(10,26,48,.84))}
.final-photo .wrap{position:relative;z-index:1}
.final-photo .eyebrow{color:var(--gold-400)}
.final-photo h2{color:#fff}
.final-photo p{color:#e7edf6}

/* ============ LOGIN-SEITE ============ */
.login-wrap{max-width:460px;margin:0 auto;padding:64px 20px 88px}
.login-card{background:var(--white);border:1px solid var(--grey-200);
  border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:42px 34px;text-align:center}
.login-ic{width:60px;height:60px;margin:0 auto 20px;border-radius:16px;display:grid;place-items:center;
  background:linear-gradient(150deg,var(--navy-700),var(--navy-800));color:var(--gold-400)}
.login-ic svg{width:28px;height:28px}
.login-card h1{font-size:1.5rem;margin-bottom:10px}
.login-card .sub{color:var(--grey-500);font-size:.98rem;margin-bottom:26px}
.login-card form{text-align:left}
.login-card .btn{width:100%;margin-top:6px}
.login-status{margin-top:14px;font-size:.92rem;min-height:1.2em}
.login-status.error{color:#c0392b}
.login-status.ok,.login-status.success{color:var(--success)}
.login-hint{margin-top:22px;font-size:.92rem;color:var(--grey-500)}
