/* ===== Weißton / Closer-Campus-Style ===== */
:root {
    --bg: #ffffff;
    --bg-card: #fafafa;
    --bg-elevated: #f5f5f5;
    --bg-soft: #f8f9fa;
    --border: rgba(0, 0, 0, 0.08);
    --border-accent: rgba(0, 0, 0, 0.15);
    
    --text: #1f2937;
    --text-muted: #6b7280;
    --text-bright: #111827;
    
    --accent: #b39270;
    --accent-hover: #9d7a5a;
    --accent-soft: rgba(179, 146, 112, 0.15);
    
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

main {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

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

.header-nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.header-nav a:hover {
    color: var(--accent);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
}

/* ===== Top Badge: Schriftlich garantiert (goldener Rahmen) ===== */
.top-badge-wrap {
    padding: 24px 0 0;
    display: flex;
    justify-content: center;
}

.top-badge-inner {
    padding: 14px 32px;
    background: #faf8f5;
    border: 1px solid rgba(179, 146, 112, 0.5);
    border-radius: 12px;
}

.top-badge-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ===== Trustpilot Hervorragend Widget ===== */
.trustpilot-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-bright);
    margin-bottom: 32px;
    transition: background var(--transition), box-shadow var(--transition);
}

.trustpilot-widget:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trustpilot-widget-label {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.trustpilot-widget-stars {
    display: flex;
    gap: 3px;
}

.tp-star {
    width: 22px;
    height: 22px;
    background: #00b67a;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-star-inner {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.tp-star-partial {
    background: linear-gradient(90deg, #00b67a 88%, #d1d5db 88%);
}

.trustpilot-widget-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
}

.tp-logo-star {
    color: #00b67a;
    font-size: 1rem;
}

/* ===== Section Backgrounds (abwechselnd wie Closer Campus) ===== */
.hero {
    background: #ffffff;
}

.video-slides-section {
    background: #f3f4f6;
}

.about-section {
    background: #ffffff;
}

.benefits-section {
    background: #ffffff;
    padding: 72px 0;
}

.benefits-title {
    color: var(--accent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(179, 146, 112, 0.15);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.target-section {
    background: #f3f4f6;
}

.faq-section {
    background: #ffffff;
}

.cta-section {
    background: #ffffff;
}

.footer {
    background: #f9fafb;
}

/* ===== Hero ===== */
.hero {
    padding: 48px 0 90px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats-under-video {
    margin-top: 24px;
    margin-bottom: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-under-video .hero-stat {
    width: 100%;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-bright);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.step-block {
    text-align: center;
    margin-bottom: 16px;
}

.step-block.step-1 {
    margin-bottom: 12px;
}

.step-block.step-2 {
    margin-top: 24px;
    margin-bottom: 20px;
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.step-block.step-1 .step-label,
.step-block.step-2 .step-label {
    font-weight: 500;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.step-block.step-2 .step-label {
    font-weight: 800;
}

.step-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 0;
}

.video-wrapper {
    margin-bottom: 16px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(90deg, #232427 0%, #3b3d42 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.video-step-label {
    color: #d8bb82;
    font-size: clamp(1.1rem, 2.8vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
}

.video-step-text {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.1rem, 2.8vw, 1.9rem);
    font-weight: 600;
    line-height: 1.2;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.video-container.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.video-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(179, 146, 112, 0.2);
    color: var(--accent);
    font-size: 1.75rem;
    border-radius: 50%;
}

.video-hero-wrap.has-video .video-container.video-placeholder {
    display: none;
}

.video-placeholder-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 240px;
    text-align: center;
    font-weight: 400;
}

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

/* ===== CTA Button ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    min-width: 280px;
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--accent);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(179, 146, 112, 0.35);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.cta-button svg {
    flex-shrink: 0;
}

.cta-hero-red {
    width: min(520px, 100%);
    min-width: 0;
    border-radius: 12px;
    background: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.38);
    padding: 12px 16px;
}

.cta-middle-red {
    width: min(560px, 100%);
}

.cta-bottom-red {
    width: min(560px, 100%);
    margin-top: 28px;
}

.cta-final-red {
    width: min(560px, 100%);
}

.cta-hero-red:hover {
    background: #e00000;
    box-shadow: 0 10px 24px rgba(224, 0, 0, 0.42);
}

.cta-hero-red .cta-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-hero-red .cta-button-text strong {
    font-size: clamp(1.05rem, 1.9vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
}

/* Closer-Campus-Style Button (Pill mit Icon + 2 Zeilen) */
.cta-button-closer {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 40px 16px 20px;
    min-width: 300px;
    text-align: left;
    border-radius: 9999px;
    box-shadow: 0 4px 24px rgba(179, 146, 112, 0.4);
}

.cta-button-closer .cta-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.cta-button-closer .cta-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-button-closer .cta-button-text strong {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
}

.cta-button-closer .cta-button-text small {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-closer.cta-button-large {
    padding: 20px 48px 20px 24px;
    min-width: 340px;
}

.cta-button-closer.cta-button-large .cta-button-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
}

.cta-button-closer.cta-button-large .cta-button-text strong {
    font-size: 1.125rem;
}

/* ===== Hero Video ===== */
.video-hero-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.video-hero-wrap.step-frame .video-container,
.video-hero-wrap.step-frame iframe {
    top: 72px;
    height: calc(100% - 72px);
}

.video-hero-wrap.step-frame .video-container.video-placeholder {
    justify-content: center;
    padding-top: 12px;
}

.course-image-section {
    padding: 64px 0;
    background: #ffffff;
}

.course-image-wrap {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    background: #fff;
}

.course-image {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
}

.mid-red-cta {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}


.video-hero-wrap .video-container {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.video-hero-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Kundenergebnisse – Video-Grid (größer, professioneller) ===== */
.video-slides-section {
    padding: 80px 0;
}

.container-videos {
    max-width: 1200px;
}

.video-slides-section .section-title {
    margin-bottom: 8px;
}

.video-slides-section .section-subtitle {
    margin-bottom: 24px;
}

.trustpilot-widget-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.trustpilot-widget-wrap .trustpilot-widget {
    margin-bottom: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.video-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
}

.video-player-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== Custom Video Player ===== */
.custom-player {
    position: relative;
}

.custom-player video {
    cursor: pointer;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(179, 146, 112, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
}

.custom-play-btn:hover {
    background: var(--accent-hover);
    transform: translate(-50%, -50%) scale(1.08);
}

.custom-play-btn svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.custom-play-btn .icon-pause {
    display: none;
    margin: 0;
}

.custom-play-btn .icon-play {
    margin-left: 4px;
}

.custom-player.is-playing .custom-play-btn .icon-play {
    display: none;
}

.custom-player.is-playing .custom-play-btn .icon-pause {
    display: block;
}

.custom-player.is-playing .custom-play-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.custom-player:hover .custom-play-btn {
    opacity: 1;
    pointer-events: auto;
}

.custom-player.is-playing:hover .custom-play-btn {
    background: rgba(0, 0, 0, 0.6);
}

/* Nach 3 Sek Inaktivität: Controls und Cursor ausblenden */
.custom-player.controls-hidden .custom-play-btn,
.custom-player.controls-hidden .custom-controls {
    opacity: 0 !important;
    pointer-events: none;
}

.custom-player.controls-hidden {
    cursor: none;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.custom-player:hover .custom-controls,
.custom-player.is-playing .custom-controls {
    opacity: 1;
}

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

.custom-btn:hover {
    color: var(--accent);
}

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

.custom-play-sm .icon-pause {
    display: none;
}

.custom-player.is-playing .custom-play-sm .icon-play {
    display: none;
}

.custom-player.is-playing .custom-play-sm .icon-pause {
    display: block;
}

.custom-time,
.custom-duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 36px;
}

.custom-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.custom-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.1s;
}

.custom-progress-filled {
    display: none;
}

.video-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
}

.video-card-inner .video-embed,
.video-card-inner .video-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-card-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-state,
.video-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: linear-gradient(135deg, #f1f3f5 0%, #e2e6ea 100%);
}

.video-placeholder-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(179, 146, 112, 0.2);
    border-radius: 50%;
}

.video-placeholder-play::after {
    content: '';
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--accent);
}

.video-placeholder-state p,
.video-card-placeholder p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

.video-placeholder-state small {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
    text-align: center;
}

.video-card-inner.has-video .video-placeholder-state {
    display: none;
}

/* Tablet */
@media (max-width: 1000px) {
    .container-videos {
        max-width: 100%;
    }
}

/* Tablet: 2 Spalten bleibt */
@media (max-width: 900px) {
    .video-grid {
        gap: 24px;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Video-Grid für Handy */
@media (max-width: 768px) {
    .video-slides-section {
        padding: 56px 0 64px;
    }
    
    .video-slides-section .section-subtitle {
        margin-bottom: 36px;
        padding: 0 8px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    
    .video-card {
        max-width: 100%;
    }
    
    .video-player-wrap {
        border-radius: 16px;
    }
    
    .custom-controls {
        opacity: 1;
    }
    
    .custom-play-btn {
        width: 72px;
        height: 72px;
    }
    
    .custom-play-btn svg {
        width: 32px;
        height: 32px;
    }
    
    .video-card-placeholder {
        padding: 20px;
    }
    
    .video-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .video-card-placeholder p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        gap: 16px;
        padding: 0;
    }
    
    .container-videos {
        padding: 0 20px;
    }
    
    .cta-button-closer {
        padding: 14px 24px 14px 16px;
    }
    
    .cta-button-closer .cta-button-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== Section Titles (shared) ===== */
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 800;
    color: var(--text-bright);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.revenue-card {
    background: var(--bg-card);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.revenue-card:hover {
    background: var(--bg-elevated);
    border-color: var(--border-accent);
}

.revenue-guarantee {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-align: center;
}

.revenue-amount {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.revenue-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Kundenergebnisse – Karten mit Namen ===== */
.results-section {
    padding: 72px 0;
    background: var(--bg-soft);
}

.results-header {
    margin-bottom: 40px;
}

.results-header .section-subtitle {
    margin-bottom: 0;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 140px;
    transition: all var(--transition);
    cursor: pointer;
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 0.02em;
}

.testimonial-btn {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 10px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-btn:hover {
    background: var(--accent-soft);
    color: var(--accent-hover);
}

/* ===== Modal – professionell ===== */
.proof-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.proof-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.proof-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.proof-modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-accent);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.proof-modal[aria-hidden="false"] .proof-modal-content {
    transform: scale(1);
}

.proof-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition);
}

.proof-modal-close:hover {
    color: var(--text-bright);
    background: rgba(0, 0, 0, 0.5);
}

.proof-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
}

.proof-modal-img-wrap {
    background: var(--bg);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proof-modal-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: var(--radius);
    display: block;
    opacity: 0;
    transform: translateY(10px);
}

.proof-modal-img-wrap.is-animated .proof-modal-img {
    animation: proofImgFadeIn 0.5s ease forwards;
}

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

.proof-modal-quote {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.proof-modal-quote-icon {
    position: absolute;
    top: 28px;
    left: 0;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.proof-modal-text {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease 0.6s, visibility 0s 0.6s, transform 0.6s ease 0.6s;
    transform: translateY(12px);
}

.proof-modal.is-visible .proof-modal-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.proof-modal-author {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease 1.2s, visibility 0s 1.2s, transform 0.5s ease 1.2s;
    transform: translateY(8px);
}

.proof-modal.is-visible .proof-modal-author {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .proof-modal-body {
        grid-template-columns: 1fr;
    }
    
    .proof-modal-img-wrap {
        padding: 24px;
        min-height: 220px;
    }
    
    .proof-modal-img {
        max-width: 220px;
    }
    
    .proof-modal-quote {
        padding: 28px 24px;
    }
    
    .proof-modal-quote-icon {
        top: 20px;
        font-size: 3rem;
    }
    
    .proof-modal-text {
        font-size: 1.125rem;
    }
    
    .proof-modal-author {
        font-size: 1rem;
    }
}

/* ===== Über mich – eine Karte, alles zusammen ===== */
.about-section {
    padding: 72px 0;
}

.about-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border);
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    margin: 0;
}

.about-lead {
    font-size: 1.0625rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.about-text p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.about-why {
    margin-top: 16px;
}

.about-why h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.about-why p {
    margin-bottom: 12px;
}

.about-why p:last-child {
    margin-bottom: 0;
}

/* ===== Für wen geeignet ===== */
.target-section {
    padding: 72px 0;
}

.target-section .section-title {
    margin-bottom: 8px;
}

.target-section .section-subtitle {
    margin-bottom: 40px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.target-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow var(--transition);
}

.target-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.target-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.target-icon svg {
    width: 28px;
    height: 28px;
}

.target-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.target-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 90px 0;
}

.cta-section-compact {
    padding: 56px 0 30px;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.final-cta-section {
    padding: 52px 0 88px;
    text-align: center;
}

.cta-extra {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-section .cta-button-large {
    display: inline-flex;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
}

/* ===== Hero Steps ===== */
.step-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.video-wrapper {
    margin-bottom: 16px;
}


/* ===== FAQ ===== */
.faq-section {
    padding: 72px 0 56px;
}

.faq-container {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faq-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.faq-question-mark {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 12rem;
    font-weight: 800;
    color: var(--border);
    opacity: 0.4;
    line-height: 1;
}

.faq-list {
    flex: 1;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon.faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== Footer ===== */
.footer {
    padding: 32px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-social-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #374151;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
    opacity: 1;
}

.footer-social-logo:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.footer-social-logo svg {
    width: 22px;
    height: 22px;
}

#footer-youtube {
    color: #ffffff;
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.28);
}

#footer-youtube:hover {
    color: #ffffff;
    background: #d90000;
    border-color: #d90000;
}

#footer-instagram {
    color: #ffffff;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.35);
}

#footer-instagram:hover {
    color: #ffffff;
    filter: brightness(0.95);
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.footer .trust-badges {
    margin-bottom: 24px;
}

.trust-badges-hero {
    margin-top: 12px;
    margin-bottom: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.trust-badge:hover {
    opacity: 1;
}

.trust-logo {
    height: 28px;
    width: auto;
}

.trust-badge .trust-logo {
    opacity: 0.8;
}

.trust-badge:hover .trust-logo {
    opacity: 1;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-hover);
}

.footer-sep {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* ===== Cookie-Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 18px;
    background: transparent;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    pointer-events: none;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    width: min(920px, 100%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
    padding: 20px 22px;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.cookie-settings-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.cookie-settings-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 11px 18px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    border: 1px solid transparent;
    min-width: 170px;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: #fff;
    color: #4b5563;
    border-color: rgba(75, 85, 99, 0.3);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #c4a077 0%, #b39270 60%, #9d7a5a 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(179, 146, 112, 0.35);
}

@media (max-width: 680px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-inner {
        border-radius: 14px;
        padding: 16px;
    }

    .cookie-buttons {
        justify-content: stretch;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        min-width: 0;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 32px 0 72px;
    }
    
    /* Mobile: Alles schlicht untereinander */
    .hero-stats {
        gap: 24px;
        margin-bottom: 28px;
    }
    
    .trust-badges-hero {
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
        margin-bottom: 24px;
    }
    
    .cta-button-closer {
        width: 100%;
        max-width: 340px;
        min-width: unset;
        justify-content: flex-start;
    }
    
    .cta-button-closer.cta-button-large {
        width: 100%;
        max-width: 360px;
        min-width: unset;
    }
    
    .video-slides-section {
        padding: 56px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .target-card {
        padding: 24px 20px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-header-card {
        padding: 32px 24px;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .revenue-section,
    .results-section,
    .about-section {
        padding: 56px 0;
    }
    
    .revenue-grid {
        grid-template-columns: 1fr;
    }
    
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }
    
    .about-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-label {
        text-align: center;
    }
    
    .cta-section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        height: 58px;
    }
    
    
    .results-showcase {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}
