@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;700;800&display=swap');

:root {
    --color-primary: #ff0055;
    --color-primary-dark: #d90049;
    --color-accent: #FDD700;
    --color-accent-dark: #eccf4f;
    --color-success: #ff0055;
    --color-error: #e74c3c;
    --color-warning: #F59E0B;
    --color-bg: #f7f7f7;
    --color-white: #FFFFFF;
    --color-text: #1a1a1a;
    --color-text-secondary: #666666;
    --color-border: #E5E7EB;
    --radius: 12px;
    --radius-small: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --plyr-color-main: #ff0055;
    --plyr-video-control-color: #fff;
    --plyr-video-control-background-hover: rgba(255, 0, 85, 0.72);
    --plyr-range-fill-background: #ff0055;
    --plyr-badge-background: #ff0055;
    --plyr-captions-background: rgba(0, 0, 0, 0.7);
    --plyr-captions-text-color: #fff;
    --plyr-font-size-base: 15px;
    --plyr-font-size-small: 13px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.logo:hover {
    text-decoration: none !important;
    opacity: 0.7;
}

.logo-name {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-name {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.header-xp {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-accent);
    padding: 6px 12px;
    border-radius: 16px;
}

.header-xp .xp-star {
    color: #b8860b;
}

.main {
    min-height: calc(100vh - 140px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: #ff0055;
    color: var(--color-white);
    border: 1px solid #ff0055;
    box-shadow: none;
}

.btn-primary:hover {
    background: #d90049;
    border-color: #d90049;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-text-secondary);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-completed {
    background: var(--color-success);
}

.btn-completed:hover {
    background: #d90049;
}

.access-ended-page {
    background: var(--color-bg);
}

.access-ended-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
    color: var(--color-text);
}

.access-ended-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: var(--color-border);
}

.access-ended-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    grid-template-areas:
        "title portrait"
        "copy portrait";
    align-items: center;
    column-gap: 56px;
    row-gap: 18px;
    padding: 48px 0 54px;
}

.access-ended-title {
    grid-area: title;
    align-self: end;
    max-width: 860px;
    animation: accessEndedCopyIn 0.7s ease-out both;
}

.access-ended-kicker {
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.access-ended-title h1 {
    max-width: 840px;
    margin-bottom: 0;
    color: var(--color-text);
    font-family: 'DM Serif Display', serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 0.98;
}

.access-ended-copy {
    grid-area: copy;
    align-self: start;
    max-width: 690px;
    animation: accessEndedCopyIn 0.7s 0.04s ease-out both;
}

.access-ended-copy p {
    max-width: 660px;
    margin-bottom: 14px;
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.58;
}

.access-ended-copy .access-ended-lead {
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.45;
}

.access-ended-note {
    position: relative;
    margin-top: 20px;
    padding-left: 16px;
    color: var(--color-text-secondary) !important;
}

.access-ended-note::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    bottom: 0.25em;
    width: 3px;
    background: var(--color-primary);
}

.access-ended-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.access-ended-actions .btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.access-ended-actions .btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    text-decoration: none;
}

.access-ended-portrait {
    grid-area: portrait;
    position: relative;
    align-self: center;
    min-height: 0;
    animation: accessEndedPortraitIn 0.8s 0.12s ease-out both;
}

.access-ended-portrait::before {
    content: none;
}

.access-ended-portrait img {
    display: block;
    width: min(340px, 100%);
    margin-left: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

@keyframes accessEndedCopyIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accessEndedPortraitIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1180px) {
    .access-ended-inner {
        column-gap: 44px;
        padding: 44px 0 50px;
    }

    .access-ended-title h1 {
        font-size: 64px;
    }

    .access-ended-portrait img {
        width: min(300px, 100%);
    }
}

@media (max-width: 980px) {
    .access-ended-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "portrait"
            "title"
            "copy";
        min-height: 0;
        row-gap: 24px;
        padding: 36px 0 64px;
    }

    .access-ended-title {
        align-self: start;
        text-align: center;
        margin: 0 auto;
    }

    .access-ended-title h1 {
        max-width: 720px;
        margin: 0 auto;
        font-size: 54px;
    }

    .access-ended-kicker {
        text-align: center;
    }

    .access-ended-copy {
        margin: 0 auto;
    }

    .access-ended-copy p {
        font-size: 17px;
    }

    .access-ended-copy .access-ended-lead {
        font-size: 19px;
    }

    .access-ended-portrait {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .access-ended-portrait img {
        width: min(260px, 60%);
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .access-ended-inner {
        row-gap: 20px;
        padding: 28px 0 56px;
    }

    .access-ended-title h1 {
        font-size: 44px;
    }

    .access-ended-portrait img {
        width: min(220px, 56%);
    }
}

@media (max-width: 560px) {
    .access-ended-inner {
        width: min(100% - 28px, 1200px);
        row-gap: 18px;
        padding: 22px 0 56px;
    }

    .access-ended-kicker {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .access-ended-title h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .access-ended-copy p,
    .access-ended-copy .access-ended-lead {
        font-size: 16px;
    }

    .access-ended-copy .access-ended-lead {
        font-size: 17px;
    }

    .access-ended-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .access-ended-actions .btn {
        width: 100%;
    }

    .access-ended-portrait img {
        width: min(200px, 62%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .access-ended-title,
    .access-ended-copy,
    .access-ended-portrait {
        animation: none;
    }
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f7f7f7;
}

.login-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-box {
    background: var(--color-white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.login-title-small {
    font-size: 22px;
}

.login-subtitle {
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 32px;
}

.login-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.alert {
    padding: 16px;
    border-radius: var(--radius-small);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 32px;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.back-link:hover {
    color: var(--color-primary);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.course-section + .course-section {
    margin-top: 56px;
}

.academy-preview-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.academy-preview-header span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #FF0055;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.academy-preview-header h1 {
    max-width: 910px;
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

.academy-preview-header p {
    max-width: 840px;
    margin: 0;
    color: #4B5563;
    font-size: 18px;
    line-height: 1.55;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    line-height: 1.08;
    margin-bottom: 6px;
}

.settings-shell {
    max-width: 760px;
    margin: 0 auto;
}

.settings-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.settings-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F5F7FA;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.settings-lead {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.65;
    margin-top: -12px;
    margin-bottom: 24px;
}

.settings-meta {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #F8FAFC;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.settings-form {
    margin-top: 24px;
}

.settings-options {
    display: grid;
    gap: 16px;
    margin: 0 0 24px 0;
    padding: 0;
    border: 0;
}

.settings-option {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.settings-option:hover {
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.04);
    transform: translateY(-1px);
}

.settings-option input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.settings-option.is-selected {
    border-color: rgba(15, 23, 42, 0.35);
    background: #FFFCED;
}

.settings-option-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.settings-option-text {
    display: block;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.settings-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.settings-note {
    margin-top: 18px;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.settings-empty {
    text-align: center;
    padding: 20px 0 4px;
}

.settings-empty p {
    color: var(--color-text-secondary);
    max-width: 460px;
    margin: 0 auto 16px;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 14px;
    max-width: 760px;
}

.course-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.archived-course-section {
    padding-top: 4px;
}

.archived-course-grid {
    opacity: 0.9;
}

.archived-course-card {
    background: #f1f2f4;
    box-shadow: none;
    border: 1px solid #d7d9df;
    filter: saturate(0.72);
}

.archived-course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.archived-course-image {
    filter: grayscale(0.18) contrast(0.94) brightness(0.97);
}

.archived-course-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.08);
    color: #4b5563;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.archived-progress-bar {
    background: rgba(17, 24, 39, 0.08);
}

.course-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--course-color, var(--color-primary));
}

.course-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon {
    font-size: 48px;
}

.course-content {
    padding: 24px;
}

.course-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 8px;
    color: var(--color-text);
}

.course-description {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

.course-description-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.course-progress {
    margin-top: 16px;
}

.progress-bar {
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    background: #ff0055;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-bar-large {
    height: 12px;
}

.progress-text {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.progress-text-large {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-top: 12px;
    display: block;
}

.course-header {
    margin-bottom: 48px;
}

.course-description-large {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.62;
}

.course-progress-large {
    max-width: 100%;
}

.course-preview-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    max-width: 820px;
    padding: 16px;
    border: 1px solid rgba(255, 0, 85, 0.18);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.course-preview-notice strong {
    color: #111827;
    font-size: 15px;
}

.course-preview-notice span {
    flex: 1;
    min-width: 240px;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.45;
}

/* ========================================
   Aktion Lead Magnet
   ======================================== */

.aktion-buch-page {
    overflow-x: hidden;
}

.aktion-buch-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse 1100px 680px at 50% -10%, rgba(255, 0, 85, 0.28), transparent 58%),
        radial-gradient(ellipse 900px 700px at 85% 120%, rgba(255, 0, 85, 0.16), transparent 60%),
        linear-gradient(180deg, #1b1b22 0%, #0f0f14 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.3;
}

.aktion-buch-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 78%);
    pointer-events: none;
    z-index: 0;
}

.aktion-buch-page > * {
    position: relative;
    z-index: 1;
}

.aktion-buch-page input,
.aktion-buch-page select,
.aktion-buch-page button,
.aktion-buch-page textarea {
    font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.aktion-topbar {
    display: flex;
    justify-content: center;
    padding: 26px 20px 0;
}

.aktion-topbar-logo {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3.2px;
    line-height: 1;
    text-decoration: none;
}

.aktion-topbar-logo:hover {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.aktion-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    padding: 44px 20px 76px;
}

.aktion-hero {
    width: min(100%, 980px);
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

.aktion-buch-page .book-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 16px;
    padding: 7px 18px 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 85, 0.38);
    background: rgba(255, 0, 85, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.aktion-buch-page .book-promo::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff0055;
    animation: aktion-live-pulse 1.6s ease-in-out infinite;
}

@keyframes aktion-live-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.55);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(255, 0, 85, 0);
    }
}

.aktion-buch-page h1 {
    display: block;
    max-width: 960px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.84rem, 4vw, 3.22rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.aktion-hero-prefix {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(2.35rem, 5.1vw, 4.18rem);
    line-height: 0.95;
    text-shadow: 0 2px 36px rgba(255, 255, 255, 0.12), 0 2px 30px rgba(0, 0, 0, 0.32);
}

.aktion-hero-claim {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: clamp(1.12rem, 2.05vw, 1.56rem);
    font-weight: 400;
    line-height: 1.36;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.24);
}

.aktion-buch-page .teaser {
    max-width: 840px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.42rem;
    line-height: 1.42;
    text-align: center;
}

.aktion-buch-page .teaser span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78em;
    font-weight: 700;
    line-height: 1.45;
}

.aktion-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 28px;
}

.aktion-hero-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.aktion-hero-button,
.aktion-about-button {
    max-width: 420px;
    margin: 0 auto;
}

.aktion-buch-page .call-to-action {
    display: none;
}

.aktion-buch-page .form-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.aktion-buch-page .form-group {
    margin-bottom: 12px;
}

.aktion-buch-page .phone-container {
    display: flex;
    width: 100%;
}

.aktion-buch-page input[type="text"],
.aktion-buch-page input[type="email"],
.aktion-buch-page input[type="tel"] {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    line-height: 1.2;
    outline: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    -webkit-appearance: none;
}

.aktion-buch-page input[type="text"]::placeholder,
.aktion-buch-page input[type="email"]::placeholder,
.aktion-buch-page input[type="tel"]::placeholder {
    color: #6b7280;
    opacity: 0.75;
}

.aktion-buch-page input[type="text"]:focus,
.aktion-buch-page input[type="email"]:focus,
.aktion-buch-page input[type="tel"]:focus {
    border-color: #ff0055;
    background: #ffffff;
    box-shadow:
        0 0 0 3px rgba(255, 0, 85, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.aktion-buch-page .error-message {
    display: block;
    margin-top: 6px;
    color: #ffb3cb;
    font-size: 13px;
    line-height: 1.3;
}

.aktion-buch-page input.error {
    border-color: #ff4f86;
}

.aktion-buch-page .help-text {
    display: none;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.4;
}

.aktion-buch-page .form-group:focus-within .help-text {
    display: block;
}

.aktion-buch-page .form-group.error .help-text {
    display: none;
}

.aktion-buch-page .whatsapp-consent {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.aktion-buch-page .whatsapp-consent.is-visible {
    display: block;
}

.aktion-buch-page .whatsapp-consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}

.aktion-buch-page .whatsapp-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex: 0 0 18px;
    accent-color: #ff0055;
}

.aktion-buch-page .submit-button,
.aktion-buch-page .submit-button:hover,
.aktion-buch-page .submit-button:active,
.aktion-buch-page .submit-button:focus {
    display: block;
    width: 100%;
    padding: 20px 24px;
    border: 0;
    border-radius: 999px;
    background: #ff0055;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(255, 0, 85, 0.45);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    transform: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    animation: none;
}

.aktion-buch-page .submit-button:hover,
.aktion-buch-page .submit-button:focus {
    background: #cc0044;
    box-shadow: 0 16px 36px rgba(255, 0, 85, 0.55);
    transform: translateY(-1px);
}

.aktion-buch-page .submit-button:active {
    transform: translateY(0);
}

.aktion-buch-page .submit-button:disabled {
    cursor: wait;
    opacity: 0.78;
}

.aktion-button-main,
.aktion-button-proof {
    display: block;
}

.aktion-button-main {
    text-transform: none;
}

.aktion-button-proof {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: center;
    text-transform: none;
}

.aktion-buch-page .loading-message-slot {
    min-height: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aktion-buch-page #loading-message {
    display: none;
    width: 100%;
    margin-top: 12px;
    padding: 7px 10px;
    border: 1px solid #2a2d3a;
    border-radius: 8px;
    background: #11131a;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.aktion-buch-page .limited-offer-text {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.aktion-hero > .limited-offer-text {
    display: grid;
    gap: 7px;
    margin-top: 22px;
}

.aktion-sales-page .aktion-main {
    align-items: flex-start;
    min-height: auto;
    padding-top: 40px;
}

.aktion-sales-page .aktion-hero {
    width: min(100%, 1040px);
}

.aktion-sales-video {
    width: min(100%, 980px);
    margin: 30px auto 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: #050505;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.48);
}

.aktion-sales-video iframe,
.aktion-sales-video video,
.aktion-sales-video .plyr {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: #050505;
}

.aktion-sales-video .plyr {
    --plyr-color-main: #f8fafc;
    --plyr-range-fill-background: rgba(255, 255, 255, 0.94);
    --plyr-video-control-background-hover: rgba(255, 255, 255, 0.16);
}

.aktion-sales-video .plyr--video .plyr__controls,
.aktion-sales-video .plyr__progress__container,
.aktion-sales-video .plyr__progress {
    overflow: visible;
}

.aktion-sales-video .plyr__progress {
    position: relative;
    min-height: 24px;
}

.aktion-sales-player-markers {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.aktion-sales-player-marker {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    position: absolute;
    top: 50%;
    width: 6px;
    min-width: 0;
    height: 6px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
    color: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.aktion-sales-player-marker:hover,
.aktion-sales-player-marker:focus-visible,
.aktion-sales-player-marker.is-active {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16), 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.2);
}

.aktion-sales-player-marker.is-active {
    opacity: 1;
}

.aktion-sales-player-hover-topic {
    position: absolute;
    z-index: 6;
    bottom: 22px;
    left: 50%;
    width: max-content;
    max-width: min(300px, calc(100vw - 44px));
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 8, 10, 0.92);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    white-space: normal;
}

.aktion-sales-player-hover-topic::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(8, 8, 10, 0.92);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateX(-50%) rotate(45deg);
}

.aktion-sales-player-progress.is-hovering-topic .aktion-sales-player-hover-topic {
    opacity: 1;
    transform: translate(-50%, 0);
}

.aktion-sales-player-marker:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.aktion-sales-player-hover-topic.is-start {
    left: 0;
    text-align: left;
    transform: translate(0, 4px);
}

.aktion-sales-player-progress.is-hovering-topic .aktion-sales-player-hover-topic.is-start {
    transform: translate(0, 0);
}

.aktion-sales-player-hover-topic.is-start::after {
    left: 14px;
}

.aktion-sales-player-hover-topic.is-end {
    left: auto;
    right: 0;
    text-align: right;
    transform: translate(0, 4px);
}

.aktion-sales-player-progress.is-hovering-topic .aktion-sales-player-hover-topic.is-end {
    transform: translate(0, 0);
}

.aktion-sales-player-hover-topic.is-end::after {
    left: auto;
    right: 14px;
}

.aktion-sales-video .plyr__video-wrapper {
    background: #050505;
}

.aktion-checkout-button-video {
    margin: 0 auto 26px;
}

.aktion-checkout-button-summary {
    margin: 0 auto;
}

.aktion-sales-chapters {
    width: min(100%, 980px);
    margin: 0 auto 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    text-align: left;
}

.aktion-sales-chapters-header {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.aktion-sales-chapters h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.1vw, 1.8rem);
    line-height: 1.15;
}

.aktion-sales-chapter-list {
    display: grid;
    gap: 10px;
}

.aktion-sales-chapter-link {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.aktion-sales-chapter-link:hover,
.aktion-sales-chapter-link:focus-visible,
.aktion-sales-chapter-link.is-active {
    border-color: rgba(255, 0, 85, 0.55);
    background: rgba(255, 0, 85, 0.12);
    transform: translateY(-1px);
}

.aktion-sales-chapter-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 2px;
    border-radius: 999px;
    background: rgba(255, 0, 85, 0.2);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.aktion-sales-chapter-copy {
    display: grid;
    gap: 6px;
}

.aktion-sales-chapter-name {
    color: #ffffff;
    font-weight: 850;
    line-height: 1.25;
}

.aktion-sales-chapter-summary {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.6;
}

.aktion-sales-summary {
    width: min(100%, 860px);
    margin: 0 auto 24px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
    text-align: left;
}

.aktion-sales-summary-kicker {
    margin: 0 0 8px;
    color: #ff8fb4;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aktion-sales-summary h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.aktion-sales-summary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.68;
}

.aktion-sales-summary-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.aktion-sales-summary-point {
    position: relative;
    display: block;
    padding: 16px 18px 16px 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.aktion-sales-summary-point::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 24px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ff0055;
    box-shadow: 0 0 0 5px rgba(255, 0, 85, 0.14);
}

.aktion-sales-summary-point h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.3;
}

.aktion-sales-summary .aktion-sales-summary-point p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.55;
}

.aktion-sales-summary .aktion-sales-summary-cta {
    color: #ffffff;
    font-weight: 850;
}

.aktion-sales-page .aktion-hero-button {
    max-width: 480px;
}

.aktion-sales-page .limited-offer-text {
    margin-top: 16px;
}

@media (max-width: 640px) {
    .aktion-sales-video {
        border-radius: 14px;
    }

    .aktion-sales-video .plyr--video .plyr__controls {
        flex-wrap: wrap;
        align-items: center;
        gap: 6px 8px;
        padding: 10px;
    }

    .aktion-sales-video .plyr__controls .plyr__progress__container,
    .aktion-sales-video .plyr__controls .plyr__progress {
        order: -5;
        flex: 1 0 100%;
        width: 100%;
        min-width: 100%;
        margin: 0 0 2px;
    }

    .aktion-sales-video .plyr__controls .plyr__progress__container .plyr__progress {
        margin: 0;
    }

    .aktion-sales-video .plyr__controls .plyr__time {
        order: -4;
        margin: 0;
        font-size: 12px;
    }

    .aktion-sales-video .plyr__controls .plyr__volume {
        flex: 1 1 124px;
        min-width: 104px;
        max-width: none;
        margin-left: 0;
    }

    .aktion-sales-video .plyr__control {
        min-width: 34px;
        min-height: 34px;
    }

    .aktion-sales-player-marker {
        width: 5px;
        height: 5px;
    }

    .aktion-sales-player-hover-topic {
        display: none;
    }

    .aktion-sales-chapters,
    .aktion-sales-summary {
        padding: 20px;
        border-radius: 14px;
    }

    .aktion-sales-chapter-link {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .aktion-sales-chapter-time {
        width: max-content;
        min-height: 30px;
        padding: 0 12px;
    }

    .aktion-sales-summary-point {
        padding: 15px 15px 15px 36px;
    }

    .aktion-sales-summary-point::before {
        left: 15px;
        top: 23px;
    }
}

.aktion-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.aktion-modal.is-open {
    display: flex;
}

.aktion-modal-is-open {
    overflow: hidden;
}

.aktion-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 10, 0.78);
    backdrop-filter: blur(10px);
}

.aktion-modal-panel {
    position: relative;
    width: min(100%, 540px);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 0, 85, 0.18), transparent 52%),
        #101116;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.52);
}

.aktion-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.aktion-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.aktion-modal-panel .book-promo {
    display: flex;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto 14px;
}

.aktion-modal-panel h2 {
    max-width: 430px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.28rem, 3vw, 1.68rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
    text-align: center;
}

.aktion-modal-panel .submit-button,
.aktion-modal-panel .submit-button:hover,
.aktion-modal-panel .submit-button:focus,
.aktion-modal-panel .submit-button:active {
    letter-spacing: 0;
    text-transform: none;
}

.aktion-buch-page .limited-offer-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.55;
}

.bewerbung-page {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 0, 85, 0.24), transparent 28%),
        linear-gradient(135deg, #08090d 0%, #111217 48%, #070708 100%);
    color: #ffffff;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.bewerbung-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
    gap: clamp(32px, 5vw, 76px);
    width: min(1160px, calc(100vw - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 84px) 0;
    align-items: start;
}

.bewerbung-intro {
    position: sticky;
    top: 48px;
    padding-top: 8px;
}

.bewerbung-brand {
    display: inline-flex;
    margin-bottom: clamp(52px, 9vw, 108px);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.bewerbung-brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.bewerbung-eyebrow {
    margin-bottom: 16px;
    color: #ff4f86;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bewerbung-page h1 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.45rem, 6vw, 5.15rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
}

.bewerbung-lead,
.bewerbung-success p {
    max-width: 520px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.55;
}

.bewerbung-form-panel {
    position: relative;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #ffffff;
    color: #141414;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.bewerbung-form {
    display: grid;
    gap: 24px;
}

.bewerbung-form label,
.bewerbung-fieldset {
    display: grid;
    gap: 10px;
}

.bewerbung-form label > span,
.bewerbung-fieldset legend {
    color: #171717;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"],
.bewerbung-form textarea {
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 12px;
    background: #f6f6f6;
    color: #111111;
    font: inherit;
    font-size: 1rem;
    line-height: 1.35;
    outline: none;
    box-shadow: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    -webkit-appearance: none;
}

.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"] {
    min-height: 54px;
    padding: 14px 15px;
}

.bewerbung-form textarea {
    min-height: 126px;
    resize: vertical;
    padding: 15px;
}

.bewerbung-form input:focus,
.bewerbung-form textarea:focus {
    border-color: #ff0055;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.13);
}

.bewerbung-form input::placeholder,
.bewerbung-form textarea::placeholder {
    color: #8a8a8a;
}

.bewerbung-form small {
    color: #777777;
    font-size: 0.82rem;
    line-height: 1.35;
}

.bewerbung-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.bewerbung-grid-three {
    grid-template-columns: 1fr;
}

.bewerbung-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.bewerbung-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bewerbung-options-revenue {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bewerbung-options-investment {
    grid-template-columns: 1fr;
}

.bewerbung-options label {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background: #f6f6f6;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.bewerbung-options label:has(input:checked) {
    border-color: rgba(255, 0, 85, 0.62);
    background: #fff3f7;
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.09);
}

.bewerbung-options input[type="radio"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: #ff0055;
}

.bewerbung-options span {
    color: #242424;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
}

.bewerbung-submit {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 999px;
    background: #ff0055;
    color: #ffffff;
    cursor: pointer;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
    box-shadow: 0 16px 36px rgba(255, 0, 85, 0.34);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.bewerbung-submit:hover,
.bewerbung-submit:focus {
    background: #d90049;
    box-shadow: 0 18px 42px rgba(255, 0, 85, 0.42);
    transform: translateY(-1px);
}

.bewerbung-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.bewerbung-success {
    max-width: 660px;
}

.bewerbung-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-weight: 800;
    text-decoration: none;
}

.bewerbung-home-link:hover {
    text-decoration: none;
    background: #f2f2f2;
}

@media (max-width: 980px) {
    .bewerbung-shell {
        grid-template-columns: 1fr;
        gap: 28px;
        width: min(720px, calc(100vw - 28px));
        padding: 28px 0 48px;
    }

    .bewerbung-intro {
        position: static;
    }

    .bewerbung-brand {
        margin-bottom: 44px;
    }

    .bewerbung-page h1 {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .bewerbung-grid,
    .bewerbung-grid-three,
    .bewerbung-options,
    .bewerbung-options-revenue {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bewerbung-shell {
        width: min(100% - 22px, 720px);
        padding-top: 22px;
    }

    .bewerbung-brand {
        margin-bottom: 32px;
    }

    .bewerbung-lead,
    .bewerbung-success p {
        margin-top: 18px;
        font-size: 1rem;
    }

    .bewerbung-form-panel {
        padding: 18px;
        border-radius: 16px;
    }

    .bewerbung-form {
        gap: 20px;
    }

    .bewerbung-options label {
        min-height: 50px;
    }
}

.aktion-buch-page .limited-offer-text b {
    color: #ffffff;
}

.aktion-buch-page .regular-price {
    margin-top: 0;
    color: rgb(177, 177, 177);
    font-weight: 400;
    text-decoration: line-through;
}

.aktion-preview-section {
    position: relative;
    z-index: 1;
    padding: 8px 20px 42px;
}

.aktion-preview-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.aktion-preview-header {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}

.aktion-preview-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 7px 16px;
    border: 1px solid rgba(255, 0, 85, 0.34);
    border-radius: 999px;
    background: rgba(255, 0, 85, 0.12);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aktion-preview-header h2 {
    max-width: none;
    margin: 10px 0 12px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0;
    white-space: nowrap;
}

.aktion-preview-header p {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.55;
}

.aktion-preview-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.aktion-preview-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
}

.aktion-loom-video {
    width: 100%;
    margin: 0 0 28px;
}

.aktion-loom-play,
.aktion-loom-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 10px;
    background: #111111;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.aktion-loom-play {
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.aktion-loom-play img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.4px) brightness(0.84);
    transform: scale(1.01);
    transition: transform 0.24s ease, filter 0.24s ease;
}

.aktion-loom-play::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.66)),
        radial-gradient(circle at center, rgba(255, 0, 85, 0.28), transparent 42%);
}

.aktion-loom-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.aktion-loom-play-icon {
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: #ff0055;
    box-shadow: 0 18px 44px rgba(255, 0, 85, 0.38);
}

.aktion-loom-play-icon::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 27px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ffffff;
}

.aktion-loom-play-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 22px 11px;
    border-radius: 6px;
    background: #ff0055;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(255, 0, 85, 0.34);
    transform: translateY(0);
}

.aktion-loom-play:hover img,
.aktion-loom-play:focus-visible img {
    filter: blur(1.2px) brightness(0.78);
    transform: scale(1.025);
}

.aktion-loom-play:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.86);
    outline-offset: 4px;
}

.aktion-course-preview-list {
    display: grid;
    gap: 20px;
}

.aktion-course-preview.course-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.aktion-course-preview.course-card:hover,
.aktion-course-preview.course-card:focus-within {
    border-color: rgba(255, 0, 85, 0.52);
    transform: none;
    box-shadow:
        0 0 0 1px rgba(255, 0, 85, 0.24),
        0 0 30px rgba(255, 0, 85, 0.22),
        0 24px 60px rgba(0, 0, 0, 0.28);
}

.aktion-course-summary,
.aktion-module-summary {
    cursor: pointer;
    list-style: none;
}

.aktion-course-summary::-webkit-details-marker,
.aktion-module-summary::-webkit-details-marker {
    display: none;
}

.aktion-course-summary {
    display: grid;
    grid-template-columns: 260px 1fr 40px;
    gap: 24px;
    align-items: center;
    padding: 22px;
}

.aktion-course-image {
    display: block;
    width: 260px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background-color: #f3f4f6;
    background-size: cover;
    background-position: center;
}

.aktion-course-image-empty {
    background:
        linear-gradient(135deg, rgba(255, 0, 85, 0.18), rgba(17, 24, 39, 0.08)),
        #f3f4f6;
}

.aktion-course-summary-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.aktion-course-title {
    color: #111827;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}

.aktion-course-label {
    color: #ff0055;
}

.aktion-course-value-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.aktion-course-value {
    color: #9CA3AF;
    font-size: 15px;
    font-weight: 800;
    text-decoration: line-through;
}

.aktion-course-free {
    color: #16A34A;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.aktion-course-description {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.5;
}

.aktion-course-meta {
    color: #6B7280;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.aktion-course-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff0f5;
}

.aktion-course-toggle::before,
.aktion-course-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #ff0055;
    transform: translate(-50%, -50%);
}

.aktion-course-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.aktion-course-preview[open] .aktion-course-toggle::after {
    opacity: 0;
}

.aktion-course-modules {
    display: grid;
    gap: 12px;
    padding: 0 22px 22px;
}

.aktion-module-preview.chapter-card {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.aktion-module-preview.chapter-card:hover,
.aktion-module-preview.chapter-card:focus-within {
    border-color: rgba(255, 0, 85, 0.58);
    box-shadow:
        0 0 0 1px rgba(255, 0, 85, 0.18),
        0 0 22px rgba(255, 0, 85, 0.18);
}

.aktion-module-summary.chapter-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #F7F8FA;
    border-bottom: 1px solid #E5E7EB;
}

.aktion-module-preview:not([open]) .aktion-module-summary.chapter-header {
    border-bottom: 0;
}

.aktion-module-summary .chapter-title {
    margin: 0;
    color: #111827;
}

.aktion-module-preview .lesson-item {
    cursor: pointer;
    padding-top: 14px;
    padding-bottom: 14px;
}

.aktion-module-preview .lesson-title {
    font-size: 15px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    min-height: 28px;
}

.aktion-module-preview .lesson-item:hover {
    background: #fff0f5;
}

.aktion-module-preview .lesson-item:hover .lesson-status {
    background: #ff0055;
}

.aktion-module-preview .lesson-item:hover .lesson-number {
    color: #ffffff;
}

.aktion-module-cta {
    display: block;
    padding: 14px 24px 16px 68px;
    border-top: 1px solid #E5E7EB;
    color: #ff0055;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.aktion-module-cta:hover {
    background: #fff0f5;
    text-decoration: none;
}

.aktion-bonus-community {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 26px;
    border: 1px solid rgba(255, 0, 85, 0.28);
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 0, 85, 0.16), transparent 44%),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.aktion-bonus-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111827;
}

.aktion-bonus-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.04);
}

.aktion-bonus-copy {
    color: #ffffff;
}

.aktion-bonus-badge {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #ff0055;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
}

.aktion-bonus-copy h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.06;
}

.aktion-bonus-copy p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.55;
}

.aktion-bonus-value-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.aktion-bonus-list {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.aktion-bonus-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.45;
}

.aktion-bonus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff0055;
    transform: translateY(-50%);
}

.aktion-bonus-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: #ff0055;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.aktion-bonus-link:hover {
    background: #cc0044;
    color: #ffffff;
    text-decoration: none;
}

.aktion-about-section {
    position: relative;
    z-index: 1;
    padding: 56px 20px 28px;
}

.aktion-about-container {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    width: min(100%, 1080px);
    margin: 0 auto;
}

.aktion-about-image-wrap {
    position: relative;
}

.aktion-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 999px;
    background: #ff0055;
    filter: blur(72px);
    opacity: 0.34;
    z-index: -1;
}

.aktion-about-image {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.46);
}

.aktion-about-copy .aktion-about-name {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.aktion-about-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.aktion-about-copy p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.6;
}

.aktion-about-copy .aktion-preview-kicker {
    margin-left: 0;
}

.aktion-about-button {
    margin: 10px 0 0;
}

.aktion-footer {
    margin-top: 48px;
    padding: 20px 0 40px;
    border-top: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
}

.aktion-footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.aktion-footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.aktion-footer .aktion-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.aktion-footer .aktion-footer-social a:hover,
.aktion-footer .aktion-footer-social a:focus-visible {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.aktion-footer .aktion-footer-social a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 3px;
}

.aktion-footer .aktion-footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.aktion-about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-decoration-line: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.aktion-about-link::after {
    content: "→";
    font-weight: 700;
    transition: transform 0.2s ease;
}

.aktion-about-link:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    text-decoration-line: none;
}

.aktion-about-link:hover::after {
    transform: translateX(3px);
}

.aktion-about-link-inline {
    margin: 0 0 18px;
}

.aktion-video-main {
    flex: 1;
    padding: 48px 20px 72px;
}

.aktion-video-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.aktion-video-hero {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.aktion-video-page h1 {
    max-width: 840px;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4.35vw, 4.25rem);
    line-height: 0.98;
}

.aktion-video-page .teaser {
    max-width: 760px;
}

.aktion-video-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 22px;
    align-items: stretch;
}

.aktion-video-layout-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}

.aktion-video-youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 56px;
    padding: 18px 36px;
    border: 0;
    border-radius: 9999px;
    background: #ff0055;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(255, 0, 85, 0.24), 0 10px 24px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.aktion-video-youtube-button:hover {
    background: #cc0044;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(255, 0, 85, 0.3), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.aktion-video-redirect-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
}

.aktion-footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.aktion-footer .footer-links a,
.aktion-footer a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    text-decoration: none;
}

.aktion-footer .footer-links a:hover,
.aktion-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.aktion-footer .footer-disclaimer {
    max-width: 920px;
    margin: 0 auto;
}

.aktion-footer .collapsible-content {
    max-height: 300px;
    margin-top: 10px;
    padding: 15px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    line-height: 1.5;
}

.aktion-footer .collapsible-content p {
    margin: 0;
}

.aktion-footer .collapsible-content a,
.aktion-footer .disclaimer-link {
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================
   Course Sales Page
   ======================================== */

.sales-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px 72px;
}

.sales-hero {
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 28px;
    padding: clamp(32px, 7vw, 80px);
    border-radius: 8px;
    overflow: hidden;
    color: #FFFFFF;
    background:
        linear-gradient(90deg, rgba(5, 11, 31, 0.92) 0%, rgba(5, 11, 31, 0.76) 48%, rgba(5, 11, 31, 0.28) 100%),
        var(--sales-hero-image, linear-gradient(135deg, #111827 0%, #ff0055 100%));
    background-size: cover;
    background-position: center;
}

.sales-hero-inner {
    max-width: 760px;
}

.sales-eyebrow,
.sales-section-kicker {
    margin: 0 0 12px;
    color: #ff0055;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sales-hero h1 {
    max-width: 850px;
    margin: 0 0 20px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

.sales-lead {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.45;
}

.sales-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.sales-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.sales-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.sales-hero .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.08);
}

.sales-hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.14);
}

.sales-proof-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.1);
}

.sales-proof-strip div {
    min-height: 112px;
    padding: 20px;
    background: #FFFFFF;
}

.sales-proof-strip strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 18px;
    line-height: 1.15;
}

.sales-proof-strip span {
    display: block;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.45;
}

.sales-intro,
.sales-fit,
.sales-final {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding: clamp(34px, 6vw, 68px) 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.sales-intro h2,
.sales-fit h2,
.sales-final h2,
.sales-section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: 0;
}

.sales-intro > p {
    margin: 0;
    max-width: 680px;
    color: #374151;
    font-size: 20px;
    line-height: 1.65;
}

.sales-media-band {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 14px;
    padding: clamp(36px, 5vw, 56px) 0 0;
}

.sales-media-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
    color: #FFFFFF;
}

.sales-media-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.03);
}

.sales-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 31, 0.1) 0%, rgba(5, 11, 31, 0.86) 100%);
}

.sales-media-card figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
}

.sales-media-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.08;
}

.sales-media-card span {
    display: block;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.45;
}

.sales-section-lead {
    max-width: 780px;
    margin: 14px 0 0;
    color: #4B5563;
    font-size: 18px;
    line-height: 1.6;
}

.sales-archive {
    padding: clamp(44px, 7vw, 80px) 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.sales-archive-list {
    display: grid;
    gap: 12px;
}

.sales-archive-module {
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.04);
    overflow: hidden;
}

.sales-archive-module summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
}

.sales-archive-module summary::-webkit-details-marker {
    display: none;
}

.sales-archive-module-title {
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.sales-archive-module-meta {
    color: #FF0055;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.sales-archive-lessons {
    display: grid;
    gap: 1px;
    background: rgba(17, 24, 39, 0.08);
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.sales-archive-lesson {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 24px;
    background: #FFFFFF;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sales-archive-lesson:hover {
    background: rgba(255, 0, 85, 0.045);
    text-decoration: none;
}

.sales-archive-lesson strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 17px;
    line-height: 1.26;
}

.sales-archive-lesson small {
    display: block;
    max-width: 820px;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.45;
}

.sales-archive-lesson em {
    color: #4B5563;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.sales-outcomes {
    padding: clamp(44px, 7vw, 80px) 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.sales-outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sales-outcome {
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.05);
}

.sales-outcome span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ff0055;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sales-outcome h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    line-height: 1.14;
}

.sales-outcome p {
    margin: 0;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.62;
}

.sales-mid-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 0, 85, 0.28);
    border-radius: 8px;
    background: rgba(255, 0, 85, 0.06);
}

.sales-mid-cta p {
    max-width: 760px;
    margin: 0;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.48;
}

.sales-testimonials {
    padding: clamp(44px, 7vw, 80px) 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.sales-testimonial-wall {
    columns: 3 280px;
    column-gap: 14px;
}

.sales-testimonial {
    display: inline-block;
    width: 100%;
    margin: 0 0 14px;
    padding: 22px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
    break-inside: avoid;
}

.sales-testimonial h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 20px;
    line-height: 1.18;
}

.sales-testimonial p {
    margin: 0 0 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.58;
}

.sales-testimonial span {
    color: #FF0055;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sales-benefits,
.sales-after-signup {
    padding: clamp(44px, 7vw, 80px) 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.sales-section-heading {
    max-width: 780px;
    margin-bottom: 28px;
}

.sales-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sales-benefit {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.05);
}

.sales-benefit-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff0055;
    color: #FFFFFF;
    font-weight: 800;
}

.sales-benefit h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.2;
}

.sales-benefit p,
.sales-check-list p {
    margin: 0;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
}

.sales-check-list {
    display: grid;
    gap: 12px;
}

.sales-fit-lists {
    display: grid;
    gap: 12px;
}

.sales-check-list p {
    position: relative;
    padding: 18px 20px 18px 54px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #FFFFFF;
}

.sales-check-list p::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    width: 12px;
    height: 7px;
    border-left: 3px solid #ff0055;
    border-bottom: 3px solid #ff0055;
    transform: rotate(-45deg);
}

.sales-no-list p {
    position: relative;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #F9FAFB;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
}

.sales-after-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sales-after-grid div {
    min-height: 130px;
    padding: 22px;
    border-radius: 8px;
    background: #111827;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.sales-final {
    align-items: center;
    border-bottom: 0;
}

.sales-final .btn {
    justify-self: end;
}

.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chapter-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.chapter-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.chapter-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}

.chapter-progress {
    font-size: 14px;
    color: var(--color-text-secondary);
    background: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
}

.lessons-list {
    display: flex;
    flex-direction: column;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s;
    color: var(--color-text);
    text-decoration: none;
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-item:hover {
    background: var(--color-bg);
    text-decoration: none;
}

.lesson-item.completed {
    background: #fff0f5;
}

.lesson-item.completed:hover {
    background: #ffe1ec;
}

.lesson-status {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-border);
    flex-shrink: 0;
}

.lesson-item.completed .lesson-status {
    background: var(--color-success);
    color: var(--color-white);
}

.icon-check {
    width: 16px;
    height: 16px;
}

.lesson-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.lesson-title {
    flex: 1;
    font-weight: 500;
}

.lesson-duration {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.lesson-container {
    min-height: calc(100vh - 73px);
    padding: 40px 20px;
}

.lesson-main {
    max-width: 900px;
    margin: 0 auto;
}

.lesson-content {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
}

.lesson-content a {
    text-decoration: underline;
}

.lesson-header {
    margin-bottom: 32px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
}

.breadcrumb-course {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: underline;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--color-text-secondary);
}

.lesson-cover {
    width: 100%;
    margin: 16px 0 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.lesson-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lesson-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.lesson-description {
    font-size: 18px;
    color: var(--color-text-secondary);
}

.video-container {
    position: relative;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.video-container-embed {
    padding-bottom: 56.25%;
    height: 0;
}

.video-container-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container .plyr {
    border-radius: var(--radius);
}

.video-spacer {
    height: 24px;
}

.lesson-chapters {
    margin: 0 0 32px;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fcfcfd 0%, #f7f7f9 100%);
}

.lesson-chapters-header {
    margin-bottom: 18px;
}

.lesson-chapters-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px;
}

.lesson-chapters-help {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.lesson-chapter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lesson-chapter-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-white);
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lesson-chapter-link:hover {
    border-color: rgba(255, 0, 85, 0.35);
    box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.lesson-chapter-time {
    flex-shrink: 0;
    min-width: 78px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

.lesson-chapter-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.lesson-chapter-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.lesson-chapter-summary {
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text-secondary);
}

.lesson-chapters-prose {
    font-size: 15px;
}

.lesson-chapters-prose > h2:first-child {
    display: none;
}

.lesson-chapters-prose table {
    margin-bottom: 0;
}

.prose {
    font-size: 17px;
    line-height: 1.75;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.prose h1 {
    font-size: 2em;
    line-height: 1.15;
    margin-top: 0.4em;
    margin-bottom: 0.35em;
}

.prose h2 {
    font-size: 1.5em;
    line-height: 1.2;
    margin-top: 1.5em;
    padding-top: 1.1em;
    border-top: 1px solid var(--color-border);
}

.prose h3 {
    font-size: 1.25em;
    line-height: 1.25;
    margin-top: 1.35em;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose ul, .prose ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    margin: 1.5em 0;
    color: var(--color-text-secondary);
    font-style: italic;
}

.prose code {
    background: var(--color-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.prose pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 20px;
    border-radius: var(--radius);
    position: relative;
    overflow-x: hidden;
    margin: 1.5em 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.prose pre code {
    background: none;
    padding: 0;
    white-space: inherit;
    overflow-wrap: inherit;
    word-break: inherit;
}

.prose pre.copyable-pre {
    padding-top: 56px;
}

.copy-code-button {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #F9FAFB;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.copy-code-button:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.copy-code-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.copy-code-button.is-copied {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.4);
    color: #D1FAE5;
}

.copy-code-button.is-error {
    background: rgba(248, 113, 113, 0.18);
    border-color: rgba(248, 113, 113, 0.4);
    color: #FECACA;
}

.prose img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5em auto;
}

.prose .x-embed-wrap {
    margin: 1.6em 0;
}

.prose .x-embed-wrap .twitter-tweet {
    margin: 0 !important;
}

.prose .x-embed-fallback {
    margin: 1.6em 0;
    padding: 18px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
}

.prose .x-embed-fallback p:last-child {
    margin-bottom: 0;
}

.prose .source-card {
    margin: 1.45em 0;
    padding: 18px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.98));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.prose .source-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.prose .source-card-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-heading);
}

.prose .source-card-note {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
}

.prose .source-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    font-weight: 600;
    text-decoration: none;
}

.prose .source-card-domain {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.prose hr {
    border: none;
    height: 0;
    margin: 1.25em 0 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.prose th,
.prose td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.prose th {
    background: var(--color-bg);
    font-weight: 600;
}

.prose tr:nth-child(even) td {
    background: var(--color-bg);
}

.lesson-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.nav-btn {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 200px;
}

.nav-btn:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.nav-btn-prev {
    text-align: left;
}

.nav-btn-next {
    text-align: right;
}

.nav-direction {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.nav-title {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.complete-form {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .lesson-container {
        padding: 20px 16px;
    }

    .lesson-content {
        padding: 24px;
    }

    .lesson-title {
        font-size: 24px;
    }

    .lesson-navigation {
        flex-direction: column;
    }

    .nav-btn {
        max-width: 100%;
        width: 100%;
    }

    .lesson-chapters {
        padding: 18px;
    }

    .lesson-chapter-link {
        flex-direction: column;
        gap: 8px;
    }

    .lesson-chapter-time {
        min-width: 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .academy-preview-header {
        grid-template-columns: 1fr;
    }

    .academy-preview-header .btn {
        width: 100%;
    }

    .aktion-buch-page {
        font-size: 18px;
    }

    .aktion-topbar {
        padding: 18px 16px 0;
    }

    .aktion-topbar-logo {
        font-size: 12px;
        letter-spacing: 2.2px;
    }

    .aktion-main {
        min-height: auto;
        padding: 38px 16px 48px;
    }

    .aktion-buch-page .book-promo {
        margin-bottom: 14px;
    }

    .aktion-buch-page h1 {
        font-size: clamp(1.46rem, 6.4vw, 1.88rem);
        line-height: 1.08;
        text-align: center;
    }

    .aktion-hero-prefix {
        margin-bottom: 12px;
        font-size: clamp(2.1rem, 10.4vw, 2.85rem);
        line-height: 0.98;
    }

    .aktion-hero-claim {
        font-size: clamp(1.02rem, 4.75vw, 1.22rem);
        line-height: 1.32;
    }

    .aktion-buch-page .teaser {
        font-size: 1.16rem;
        text-align: center;
    }

    .aktion-hero-stats {
        gap: 8px;
    }

    .aktion-buch-page input[type="text"],
    .aktion-buch-page input[type="email"],
    .aktion-buch-page input[type="tel"] {
        font-size: 18px;
    }

    .aktion-preview-section {
        padding: 0 16px 36px;
    }

    .aktion-preview-header {
        margin-bottom: 20px;
    }

    .aktion-preview-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
        white-space: normal;
    }

    .aktion-course-summary {
        grid-template-columns: 1fr 34px;
        gap: 14px;
        padding: 14px;
    }

    .aktion-course-image {
        grid-column: 1 / -1;
        width: 100%;
    }

    .aktion-course-title {
        font-size: 20px;
    }

    .aktion-course-value-line {
        gap: 7px;
    }

    .aktion-course-description {
        font-size: 14px;
    }

    .aktion-course-modules {
        padding: 0 14px 14px;
    }

    .aktion-module-summary.chapter-header {
        padding: 14px;
        gap: 12px;
    }

    .aktion-module-summary .chapter-title {
        flex-basis: 100%;
        order: 3;
    }

    .aktion-module-preview .lesson-item {
        padding: 14px;
        gap: 12px;
    }

    .aktion-module-preview .lesson-title {
        font-size: 14px;
    }

    .aktion-module-cta {
        padding: 13px 14px 15px 54px;
    }

    .aktion-bonus-community {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
        padding: 16px;
    }

    .aktion-bonus-copy h3 {
        font-size: clamp(1.55rem, 8vw, 2.1rem);
    }

    .aktion-about-section {
        padding: 52px 16px 18px;
    }

    .aktion-about-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .aktion-about-copy {
        padding-top: 8px;
        text-align: center;
    }

    .aktion-about-copy .aktion-preview-kicker,
    .aktion-about-button {
        margin-left: auto;
        margin-right: auto;
    }

    .aktion-video-main {
        padding: 34px 16px 48px;
    }

    .aktion-video-hero {
        margin-bottom: 22px;
    }

    .aktion-video-page h1 {
        font-size: clamp(1.82rem, 8.5vw, 2.55rem);
        line-height: 1.03;
    }

    .aktion-video-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aktion-modal {
        align-items: flex-start;
        padding: 12px;
    }

    .aktion-modal-panel {
        padding: 28px 18px 22px;
    }

    .aktion-footer {
        margin-top: 28px;
    }

    .sales-page {
        display: grid;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 24px 16px 56px;
    }

    .sales-page > * {
        width: 100%;
        max-width: clamp(300px, 62vw, 640px);
    }

    .sales-hero {
        width: auto;
        min-width: 0;
        min-height: 520px;
        padding: 28px;
        align-items: flex-end;
        background:
            linear-gradient(180deg, rgba(5, 11, 31, 0.34) 0%, rgba(5, 11, 31, 0.94) 74%),
            var(--sales-hero-image, linear-gradient(135deg, #111827 0%, #ff0055 100%));
        background-size: cover;
        background-position: center;
    }

    .sales-hero-inner,
    .sales-hero h1,
    .sales-lead,
    .sales-actions {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .sales-hero h1 {
        font-size: clamp(28px, 6.4vw, 36px);
        line-height: 1.03;
        overflow-wrap: anywhere;
    }

    .sales-lead {
        overflow-wrap: break-word;
    }

    .sales-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sales-actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .sales-hero-points {
        gap: 8px;
    }

    .sales-hero-points span {
        width: 100%;
        justify-content: center;
    }

    .sales-proof-strip {
        grid-template-columns: 1fr;
    }

    .sales-proof-strip div {
        min-height: 0;
    }

    .sales-intro,
    .sales-fit,
    .sales-final {
        grid-template-columns: 1fr;
    }

    .sales-intro > p {
        font-size: 18px;
    }

    .sales-media-band {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .sales-media-card,
    .sales-media-card img {
        width: 100%;
        min-width: 0;
        min-height: 280px;
    }

    .sales-media-card figcaption,
    .sales-media-card span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .sales-benefit-list,
    .sales-outcome-grid,
    .sales-after-grid {
        grid-template-columns: 1fr;
    }

    .sales-archive-module summary,
    .sales-archive-lesson {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sales-archive-module-meta {
        text-align: left;
    }

    .sales-mid-cta {
        grid-template-columns: 1fr;
    }

    .sales-mid-cta .btn {
        width: 100%;
    }

    .sales-benefit {
        min-height: 0;
    }

    .sales-final .btn {
        justify-self: stretch;
    }

    .chapter-header {
        flex-wrap: wrap;
    }

    .chapter-title {
        flex-basis: 100%;
        order: 3;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .sales-page {
        padding-right: 12px;
        padding-left: 12px;
    }

    .sales-page > * {
        width: 100%;
        max-width: calc(100vw - 24px);
    }

    .sales-hero {
        padding: 24px 20px;
    }

    .sales-hero h1 {
        font-size: 30px;
    }
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-success);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.login-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-hero {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    color: var(--color-text);
    text-align: center;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-border);
    margin-bottom: 32px;
    background: var(--color-bg);
}

.hero-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.hero-headline {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
    max-width: 400px;
}

.hero-features {
    list-style: none;
    text-align: left;
    font-size: 18px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-features li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ff0055;
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.login-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    background: var(--color-bg);
    overflow-y: auto;
}

.login-content-inner {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.course-teaser-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.course-teaser-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.course-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.course-teaser-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.course-teaser-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.course-teaser-image {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.course-teaser-content {
    padding: 12px;
}

.course-teaser-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.course-teaser-card.full-width {
    grid-column: span 2;
}

.course-teaser-card.full-width .course-teaser-image {
    height: 80px;
}

@media (max-width: 1024px) {
    .login-split {
        flex-direction: column;
    }

    .login-hero {
        padding: 40px 20px;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-features {
        font-size: 16px;
    }

    .login-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .login-hero {
        padding: 32px 16px;
    }

    .hero-image {
        width: 160px;
        height: 160px;
    }

    .hero-name {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-headline {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hero-features {
        font-size: 15px;
    }

    .hero-features li {
        margin-bottom: 12px;
    }

    .hero-features li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .login-content {
        padding: 32px 16px;
    }

    .login-box {
        padding: 32px 24px;
    }

    .course-teaser-grid {
        grid-template-columns: 1fr;
    }

    .course-teaser-card.full-width {
        grid-column: span 1;
    }
}

/* ========================================
   Task List Styles
   ======================================== */

.lesson-tasks {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.tasks-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.tasks-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tasks-progress .progress-bar {
    flex: 1;
    max-width: 200px;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: background 0.2s;
}

.task-item:hover:not(.completed) {
    background: #f0f0f0;
}

.task-item.completed {
    background: #fff0f5;
}

.task-checkbox {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-success);
}

.task-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: var(--color-text-secondary);
}

.task-xp {
    font-size: 13px;
    font-weight: 600;
    color: #5a4a00;  /* Dunkles Gold/Braun für Kontrast auf gelbem Hintergrund */
    background: var(--color-accent);
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.task-item.completed .task-xp {
    opacity: 0.6;
}

/* ========================================
   XP Display
   ======================================== */

.xp-display {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-white);
    padding: 10px 16px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 90;
}

.xp-icon {
    color: var(--color-accent);
    font-size: 18px;
}

.xp-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    transition: transform 0.3s;
}

.xp-value.xp-pulse {
    animation: xpPulse 0.5s ease;
}

@keyframes xpPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); color: var(--color-success); }
}

.xp-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.xp-info-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: var(--color-text-secondary);
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xp-info-btn:hover {
    opacity: 1;
}

.xp-info-btn svg {
    width: 14px;
    height: 14px;
}

.xp-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-small);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    line-height: 1.4;
    display: none;
    z-index: 100;
}

.xp-tooltip.visible {
    display: block;
}

.xp-tooltip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.xp-tooltip p {
    margin: 0 0 6px 0;
    color: var(--color-text-secondary);
}

.xp-tooltip p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Chat Widget
   ======================================== */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.chat-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.2s;
}

.chat-toggle:hover {
    background: var(--color-primary-dark);
}

.chat-toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 620px;
    max-height: calc(100vh - 120px);
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.hidden {
    display: none;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background:
        linear-gradient(90deg, #111827 0, #111827 72%, #1F2937 100%);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-title {
    font-weight: 600;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.assistant {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.chat-message.user .message-content {
    background: var(--color-primary);
    color: var(--color-white);
    border-bottom-right-radius: 4px;
    white-space: pre-wrap;
}

.chat-message.assistant .message-content {
    background: var(--color-bg);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    white-space: normal;
}

/* Markdown Styling in Chat Messages */
.message-content p {
    margin: 0 0 0.5em 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul,
.message-content ol {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.message-content li {
    margin: 0.25em 0;
}

.message-content strong {
    font-weight: 600;
}

.message-content code {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1em 0.3em;
    border-radius: 3px;
    font-size: 0.9em;
}

.message-content pre {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5em;
    border-radius: 4px;
    overflow-x: auto;
    margin: 0.5em 0;
}

.message-content pre code {
    background: none;
    padding: 0;
}

.message-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.arturai-pitch-message {
    max-width: 92%;
}

.arturai-chat-pitch {
    width: min(360px, 100%);
    padding: 16px;
    border: 1px solid rgba(17, 24, 39, 0.88);
    border-radius: 8px;
    background:
        linear-gradient(90deg, #111827 0, #111827 6px, transparent 6px),
        linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(17, 24, 39, 0.06)),
        #FFFFFF;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
}

.arturai-chat-pitch-eyebrow {
    display: inline-flex;
    margin: 0 0 8px 8px;
    color: #FF0055;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arturai-chat-pitch strong {
    display: block;
    margin-left: 8px;
    color: #111827;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: 0;
}

.arturai-chat-pitch p {
    margin: 8px 0 14px 8px;
    color: #374151;
    font-size: 13px;
    line-height: 1.45;
}

.arturai-chat-pitch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: 8px;
    padding: 11px 16px;
    border-radius: 8px;
    background: #FF0055;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(255, 0, 85, 0.22);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.arturai-chat-pitch-button:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.22);
}

.arturai-chat-pitch small {
    display: block;
    margin: 10px 0 0 8px;
    color: #6B7280;
    font-size: 11px;
    line-height: 1.35;
}

.chat-message.loading .message-content {
    background: var(--color-bg);
    color: var(--color-text-secondary);
}

/* Typing Indicator - 3 bouncing dots */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-text-secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Chat Image Preview */
.chat-image-preview {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
    background: var(--color-bg);
}

.chat-image-preview[hidden] {
    display: none;
}

.image-preview-item {
    position: relative;
    width: 60px;
    height: 60px;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.image-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--color-error);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-image-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color 0.2s;
    flex-shrink: 0;
}

.chat-image-btn:hover {
    color: var(--color-primary);
}

.chat-image-btn svg {
    width: 20px;
    height: 20px;
}

/* Chat Message Images */
.chat-message-images {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.chat-image {
    position: relative;
    max-width: 200px;
}

.chat-image img {
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.chat-image-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-image:hover .chat-image-delete {
    opacity: 1;
}

.chat-input-container {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

#chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-small);
    font-size: 16px; /* min 16px um iOS auto-zoom zu verhindern */
    outline: none;
    transition: border-color 0.2s;
}

#chat-input:focus {
    border-color: var(--color-primary);
}

.chat-send-btn {
    padding: 12px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-send-btn:hover:not(:disabled) {
    background: var(--color-primary-dark);
}

.chat-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chat-input-gated {
    background: #FFF7D6;
}

.chat-input-gated #chat-input {
    background: #FFFFFF;
    color: var(--color-text-secondary);
}

/* Chat Fullscreen Mode */
.chat-widget.fullscreen .chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    z-index: 10000;
}

.chat-widget.fullscreen .chat-toggle {
    display: none;
}

.chat-widget.fullscreen .chat-messages {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.chat-widget.fullscreen .chat-input-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-fullscreen-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.chat-fullscreen-btn:hover {
    color: var(--color-white);
}

.chat-fullscreen-btn svg {
    width: 18px;
    height: 18px;
}

/* Toast variants */
.toast-success {
    background: var(--color-success);
}

.toast-error {
    background: var(--color-error);
}

.toast-info {
    background: var(--color-primary);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .nav {
        gap: 8px;
    }

    .user-name {
        display: none;
    }

    .header-xp {
        padding: 4px 8px;
        font-size: 12px;
    }

    .btn-small {
        padding: 6px 10px;
        font-size: 12px;
    }

    .prose table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-toggle {
        padding: 12px 16px;
        font-size: 14px;
    }

    .chat-toggle-text {
        display: none;
    }

    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }

    .chat-input-container {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .xp-display {
        top: auto;
        bottom: 80px;
        right: 16px;
    }

    .task-item {
        padding: 12px;
    }

    .task-xp {
        font-size: 12px;
        padding: 3px 8px;
    }
}

/* ========================================
   Report Course Overview (NeumannReport)
   ======================================== */

.year-group {
    border-radius: var(--radius);
    overflow: hidden;
}

.year-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s;
}

.year-header::-webkit-details-marker {
    display: none;
}

.year-header:hover {
    background: var(--color-primary-dark);
}

.year-title {
    font-size: 22px;
    font-weight: 700;
}

.year-count {
    font-size: 14px;
    opacity: 0.8;
}

.year-header::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-left: 12px;
    flex-shrink: 0;
}

.year-group[open] > .year-header::after {
    transform: rotate(-135deg);
}

.year-chapters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

.year-group .chapter-card {
    border-radius: var(--radius);
}

.year-group .chapter-number {
    width: auto;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 12px;
    white-space: nowrap;
}

.latest-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-success);
    padding: 2px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.lesson-item.latest-lesson {
    background: #FFFBEB;
    border-left: 3px solid var(--color-accent);
}

.lesson-item.latest-lesson:hover {
    background: #FEF3C7;
}

/* ========================================
   Search
   ======================================== */

.search-container {
    position: relative;
    flex: 1;
    max-width: 360px;
    margin: 0 24px;
}

.search-container input {
    width: 100%;
    height: 40px;
    padding: 0 16px 0 38px;
    font-size: 14px;
    font-family: inherit;
    background: #f0f1f3;
    border: 2px solid transparent;
    border-radius: 20px;
    outline: none;
    transition: all 0.2s ease;
    color: var(--color-text);
}

.search-container input::placeholder {
    color: #999;
}

.search-container input:focus {
    background: var(--color-white);
    border-color: var(--color-primary);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
    transition: color 0.2s ease;
}

.search-container input:focus ~ .search-icon,
.search-container:focus-within .search-icon {
    color: var(--color-primary);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 380px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    max-height: 420px;
    overflow-y: auto;
    z-index: 200;
    display: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.search-results.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.search-group-header {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    padding: 12px 16px 6px;
}

.search-group-border {
    border-top: 1px solid var(--color-border);
}

.search-result-item {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.15s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.search-result-item:hover,
.search-result-item.active {
    background: var(--color-bg);
    text-decoration: none;
}

.search-result-item.active {
    border-left-color: var(--color-primary);
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-snippet {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-snippet mark {
    background: rgba(253, 215, 0, 0.4);
    border-radius: 2px;
    font-weight: 600;
    padding: 0;
}

.search-loading {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search-loading span {
    width: 8px;
    height: 8px;
    background: var(--color-text-secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.search-loading span:nth-child(2) { animation-delay: 0.2s; }
.search-loading span:nth-child(3) { animation-delay: 0.4s; }

.search-empty {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 14px;
    padding: 24px 16px;
}

.search-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: 8px;
    transition: color 0.2s;
}

.search-mobile-toggle:hover {
    color: var(--color-primary);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.search-close-btn {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    transition: color 0.2s;
    z-index: 1;
}

.search-close-btn:hover {
    color: var(--color-text);
}

.search-overlay-open .search-close-btn {
    display: flex;
}

.search-overlay-open .search-container {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    max-width: 100%;
    margin: 0;
    padding: 12px 16px;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideDown 0.2s ease;
}

.search-overlay-open .search-container input {
    border-radius: 8px;
    padding-right: 48px;
}

.search-overlay-open .search-icon {
    left: 28px;
}

.search-overlay-open .search-results {
    min-width: auto;
    left: 16px;
    right: 16px;
    max-height: 60vh;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }

    .search-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .search-overlay-open .search-results .search-result-snippet {
        display: none;
    }
}

.lesson-item.lesson-coming-soon {
    opacity: 0.5;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
}

.lesson-item.lesson-coming-soon:hover {
    background: transparent;
}

.lesson-badge-soon {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-border);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .year-header {
        padding: 14px 16px;
    }

    .year-title {
        font-size: 18px;
    }

    .year-chapters {
        padding: 12px 0;
        gap: 12px;
    }

    .settings-card {
        padding: 24px;
        border-radius: 18px;
    }

    .settings-option {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .settings-option input {
        margin-top: 0;
    }
}

/* ========================================
   KI-Umsetzungs-Club Sales Page (dark theme)
   ======================================== */

.club-sales-page {
    background:
        radial-gradient(ellipse 1100px 680px at 50% -10%, rgba(255, 0, 85, 0.28), transparent 58%),
        radial-gradient(ellipse 900px 700px at 85% 120%, rgba(255, 0, 85, 0.16), transparent 60%),
        linear-gradient(180deg, #1b1b22 0%, #0f0f14 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.club-sales-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 50% 18%, black 18%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 18%, black 18%, transparent 78%);
    pointer-events: none;
    z-index: 0;
}

.club-sales-page > *,
.club-sales-page .header,
.club-sales-page .main {
    position: relative;
    z-index: 1;
}

.club-sales-page .header {
    background: transparent;
    border-bottom: 0;
    padding: 14px 0 8px;
    backdrop-filter: none;
}

.club-sales-page .header-container {
    max-width: min(1200px, calc(100% - 32px));
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.club-sales-page .logo-name,
.club-sales-page .logo-sub {
    color: #ffffff;
}

.club-sales-page .search-container input {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.club-sales-page .search-container input::placeholder,
.club-sales-page .search-icon,
.club-sales-page .search-mobile-toggle,
.club-sales-page .user-name {
    color: rgba(255, 255, 255, 0.62);
}

.club-sales-page .search-container input:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 0, 85, 0.68);
}

.club-sales-page .header-xp {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
}

.club-sales-page .header-xp .xp-star {
    color: rgba(253, 215, 0, 0.72);
}

.club-sales-page .btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
}

.club-sales-page .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.club-sales-page .back-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.club-sales-page .back-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Hero */
.club-sales-page .sales-hero {
    background: none;
    min-height: 0;
    padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 56px);
    margin-bottom: 32px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse 600px 320px at 12% 18%, rgba(255, 0, 85, 0.32), transparent 70%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    text-align: left;
}

.club-sales-page .sales-hero-inner {
    max-width: 880px;
}

.club-sales-page .sales-eyebrow,
.club-sales-page .sales-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 85, 0.4);
    background: rgba(255, 0, 85, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.club-sales-page .sales-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff0055;
    animation: aktion-live-pulse 1.6s ease-in-out infinite;
}

.club-sales-page .sales-hero h1 {
    max-width: 880px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.club-sales-page .sales-lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
}

.club-sales-page .sales-hero-points {
    margin-bottom: 32px;
}

.club-sales-page .sales-hero-points span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-actions {
    align-items: center;
}

.club-sales-page .sales-actions-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.club-sales-page .btn-primary {
    background: #ff0055;
    border-color: #ff0055;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(255, 0, 85, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.club-sales-page .btn-primary:hover {
    background: #ff2670;
    border-color: #ff2670;
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(255, 0, 85, 0.45);
}

/* Proof strip */
.club-sales-page .sales-proof-strip {
    margin: 0 0 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    overflow: hidden;
}

.club-sales-page .sales-proof-strip div {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.club-sales-page .sales-proof-strip strong {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
}

.club-sales-page .sales-proof-strip span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

/* Intro / fit / final layouts */
.club-sales-page .sales-intro,
.club-sales-page .sales-fit,
.club-sales-page .sales-final {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-intro h2,
.club-sales-page .sales-fit h2,
.club-sales-page .sales-final h2,
.club-sales-page .sales-section-heading h2 {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.04;
}

.club-sales-page .sales-intro > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.65;
}

.club-sales-page .sales-section-lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

/* Media band */
.club-sales-page .sales-media-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.club-sales-page .sales-media-card::after {
    background: linear-gradient(180deg, rgba(15, 15, 20, 0.1) 0%, rgba(15, 15, 20, 0.92) 100%);
}

.club-sales-page .sales-media-card strong {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
}

/* Archive */
.club-sales-page .sales-archive {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-archive-module {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-archive-module summary {
    color: #ffffff;
}

.club-sales-page .sales-archive-module-title {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
}

.club-sales-page .sales-archive-module-meta {
    color: #ff5990;
}

.club-sales-page .sales-archive-lessons {
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.club-sales-page .sales-archive-lesson {
    background: rgba(15, 15, 20, 0.55);
    color: #ffffff;
}

.club-sales-page .sales-archive-lesson:hover {
    background: rgba(255, 0, 85, 0.12);
}

.club-sales-page .sales-archive-lesson strong {
    color: #ffffff;
}

.club-sales-page .sales-archive-lesson small {
    color: rgba(255, 255, 255, 0.62);
}

.club-sales-page .sales-archive-lesson em {
    color: rgba(255, 255, 255, 0.68);
}

/* Mid CTA */
.club-sales-page .sales-mid-cta {
    border: 1px solid rgba(255, 0, 85, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.16) 0%, rgba(255, 0, 85, 0.06) 100%);
}

.club-sales-page .sales-mid-cta p {
    color: #ffffff;
    font-weight: 600;
}

/* Outcomes */
.club-sales-page .sales-outcomes {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-outcome {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-outcome span {
    color: #ff5990;
}

.club-sales-page .sales-outcome h3 {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
}

.club-sales-page .sales-outcome p {
    color: rgba(255, 255, 255, 0.74);
}

/* Testimonials */
.club-sales-page .sales-testimonials {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-testimonial {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-testimonial h3 {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0;
}

.club-sales-page .sales-testimonial p {
    color: rgba(255, 255, 255, 0.78);
}

.club-sales-page .sales-testimonial span {
    color: #ff5990;
}

/* Benefits */
.club-sales-page .sales-benefits {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-benefit {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-benefit-number {
    background: #ff0055;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(255, 0, 85, 0.45);
}

.club-sales-page .sales-benefit h3 {
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0;
}

.club-sales-page .sales-benefit p,
.club-sales-page .sales-check-list p {
    color: rgba(255, 255, 255, 0.74);
}

/* Fit lists */
.club-sales-page .sales-check-list p {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
}

.club-sales-page .sales-check-list p::before {
    border-color: #ff0055;
}

.club-sales-page .sales-no-list p {
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.62);
}

/* After signup */
.club-sales-page .sales-after-grid div {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.18) 0%, rgba(255, 0, 85, 0.04) 100%);
    border: 1px solid rgba(255, 0, 85, 0.32);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.45;
}

/* Final */
.club-sales-page .sales-final {
    border-bottom: 0;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
}

.club-sales-page .sales-final > div {
    max-width: none;
}

.club-sales-page .sales-final h2 {
    max-width: 1100px;
    margin: 0 auto;
}

.club-sales-page .sales-final .sales-section-kicker {
    margin-left: auto;
    margin-right: auto;
}

.club-sales-page .sales-final .btn {
    justify-self: center;
}

/* Buttons inside hero / outline overrides */
.club-sales-page .btn-large {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
}

/* Live impression (wide hero image with caption) */
.club-sales-page .sales-live-impression {
    position: relative;
    margin: clamp(28px, 5vw, 48px) 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.club-sales-page .sales-live-impression img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.04);
}

.club-sales-page .sales-live-impression figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 44px);
    background: linear-gradient(180deg, rgba(15, 15, 20, 0) 0%, rgba(15, 15, 20, 0.86) 60%, rgba(15, 15, 20, 0.95) 100%);
    color: #ffffff;
}

.club-sales-page .sales-live-impression figcaption strong {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 6px;
}

.club-sales-page .sales-live-impression figcaption span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.5;
    max-width: 640px;
}

/* Tool strip (3 small screenshots between sections) */
.club-sales-page .sales-tool-strip {
    padding: clamp(40px, 6vw, 72px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.club-sales-page .sales-tool-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.club-sales-page .sales-tool-grid figure img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
}

.club-sales-page .sales-tool-grid figcaption {
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .club-sales-page .sales-tool-grid {
        grid-template-columns: 1fr;
    }
}

/* Video testimonial wall */
.club-sales-page .sales-video-testimonials {
    padding: clamp(48px, 7vw, 88px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-sales-page .sales-vt-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
    margin: 32px 0 36px;
    padding: clamp(20px, 3vw, 32px);
    border: 1px solid rgba(255, 0, 85, 0.32);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.16) 0%, rgba(255, 255, 255, 0.04) 60%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.club-sales-page .sales-vt-feature video {
    width: 100%;
    border-radius: 10px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.club-sales-page .sales-vt-feature h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.club-sales-page .sales-vt-feature p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.club-sales-page .sales-vt-meta {
    display: inline-flex;
    color: #ff5990;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .club-sales-page .sales-vt-feature {
        grid-template-columns: 1fr;
    }
}

.club-sales-page .sales-vt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 16px;
}

.club-sales-page .sales-vt-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.club-sales-page .sales-vt-card video {
    width: 100%;
    display: block;
    background: #000;
    aspect-ratio: 16 / 9;
}

.club-sales-page .sales-vt-card h3 {
    margin: 18px 20px 8px;
    color: #ffffff;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
}

.club-sales-page .sales-vt-card p {
    margin: 0 20px 14px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.club-sales-page .sales-vt-card .sales-vt-meta {
    margin: auto 20px 18px;
    font-size: 11px;
}

/* Footer dark on sales page */
.club-sales-page .footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 32px 0;
}

.club-sales-page .footer p {
    color: #ffffff;
    margin: 0;
}

.club-sales-page .footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.club-sales-page .footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 720px) {
    .club-sales-page .header {
        padding: 8px 0 4px;
    }
    .club-sales-page .header-container {
        max-width: calc(100% - 20px);
        padding: 8px 10px;
        border-radius: 18px;
    }
    .club-sales-page .sales-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .club-sales-page .sales-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .club-sales-page .sales-actions .btn {
        width: 100%;
    }
}
