/* ============================================================
   Sales-Seite Workbook (workbook.melicus-akademie.de)

   Grundgestaltung: Auszug aus assets/css/style.css des Funnels
   (nur, was die Seite braucht). Das Angebot selbst gestaltet
   workbook-angebot.css – unverändert von der Dankeseite übernommen.
   Diese Datei wird NACH workbook-angebot.css geladen und darf dort überschreiben.

   Die Schrift liegt lokal in fonts/, damit beim Aufruf keine
   Verbindung zu Google entsteht (kein Consent nötig).
   ============================================================ */

@font-face {
    font-family: 'Instrument Sans';
    font-style: normal; font-weight: 400 700; font-display: swap;
    src: url('../fonts/instrument-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Instrument Sans';
    font-style: normal; font-weight: 400 700; font-display: swap;
    src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Grundlagen (wie style.css) ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: var(--body-line);
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    letter-spacing: var(--head-spacing);
    line-height: var(--head-line);
    color: var(--color-dark);
    margin: 0 0 0.5em;
}
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { margin: 0 0 1em; }
a { color: var(--color-accent); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.dpage { background: var(--color-cream); min-height: 100vh; padding: 28px 16px 80px; color: var(--color-text); }
.dpage .container { max-width: 1080px; margin: 0 auto; }

/* ---- Kopfzeile: nur der Absender ---- */
.sp-top {
    max-width: 1080px; margin: 0 auto 24px; padding: 0 20px;
    font-weight: 700; font-size: 1.05rem; color: #0e1a33; letter-spacing: -0.01em;
}
.sp-top span { color: #8a6429; }

/* ---- Titel: dieselbe Navy-Fläche wie „Aber warte" auf der Dankeseite ---- */
.wb { margin-top: 0; }
.wb .wb-stop h1 {
    margin: 0 auto; max-width: 24ch; color: #fff; font-weight: 700;
    font-size: clamp(1.85rem, 4.8vw, 3.1rem); line-height: 1.1; letter-spacing: -0.03em;
    text-wrap: balance;
}
.sp-kicker {
    display: block; margin: 0 auto 12px; max-width: none;
    color: #f6dcae; font-size: clamp(.85rem, 1.6vw, 1rem); font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; line-height: 1.3;
}

/* ---- Fuß ---- */
.sp-foot {
    border-top: 1px solid #e4ded1; margin-top: 72px; padding: 28px 20px 40px;
    text-align: center; font-size: .9rem; color: #6b7386;
}
.sp-foot nav { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.sp-foot a { color: #3d475b; }
