:root {
    --branding-color-0: rgb(72, 133, 251);
    --branding-color-1: rgb(25, 43, 71);
    --branding-color-2: rgb(244, 248, 255);
    --branding-color-3: #ffffff;
    --text-light: #ffffff;
    --highlight: #e8b745;
    --bg-dark: #082A34;
    
    --font-primary: 'Lato', sans-serif;
}

/* Globale Box-Sizing Regel: Verhindert, dass Padding Elemente über 100% Breite wachsen lässt (Fix für Mobile Overflow) */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Setzt grundlegende Stile */
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Macht Schrift weicher und hochwertiger */
    -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
    max-width: 100%;
}

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

/* --- Hero Section --- */
.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #0a3642, var(--bg-dark)); /* Hochwertigerer Verlauf (Spotlight-Effekt) */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-content .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 55px;
    }
}

.hero-content .highlight {
    color: var(--highlight);
}

.hero-content .description {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Webinaris Wrapper */
.webinaris-wrapper {
    margin-top: 30px;
    max-width: 100%; /* Verhindert Überbreite des iframes auf Mobile */
}

/* --- Quiz Styles --- */
.hero-full-text h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .hero-full-text h1 { font-size: 50px; }
}

.quiz-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.quiz-step {
    display: none;
    animation: fadeInQuiz 0.5s ease-in-out;
}
.quiz-step.active {
    display: block;
}
.quiz-step.hidden {
    display: none;
}
@keyframes fadeInQuiz {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}
.quiz-question {
    font-size: 24px;
    font-weight: bold;
    color: var(--highlight);
    margin-bottom: 25px;
    line-height: 1.3;
}
.quiz-btn {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}
.quiz-btn:hover {
    background-color: var(--highlight);
    color: var(--branding-color-1);
    border-color: var(--highlight);
    transform: translateX(5px);
}
.quiz-multi-select {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.quiz-multi-select label {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 18px;
}
.quiz-multi-select label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.quiz-multi-select input[type="checkbox"] {
    margin-right: 15px;
    width: 22px;
    height: 22px;
    accent-color: var(--highlight);
}
.small-text {
    font-size: 14px !important;
    opacity: 0.7;
    margin-top: -15px;
    margin-bottom: 20px;
}

/* --- Globale Utility Klassen --- */
.section-light {
    background-color: var(--branding-color-3);
    color: var(--branding-color-1);
    padding: 60px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
}

.text-center { text-align: center; }
.dark-text { color: var(--branding-color-1); }
.rounded-image { border-radius: 8px; }
.shadow-lg { box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

/* --- Grids (Modern & Responsiv) --- */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 30px;
}

/* Mobile First: Alles ist erstmal 1-spaltig */
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

/* Ab Tablet-Größe */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.align-center { align-items: center; }

/* --- Logos Sektion --- */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}
.logo-grid img {
    max-width: 150px;
    height: auto;
}

/* --- Benefits (3 Säulen) --- */
.benefit-card {
    background-color: #013B4C;
    color: var(--text-light);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Etwas edlerer Schatten */
    border: 1px solid rgba(255,255,255,0.05); /* Feine Linie für mehr Eleganz */
}
.card-icon {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* --- Host Andreas Sektion --- */
.host-content h2 {
    font-size: 36px;
    margin-bottom: 5px;
}
.subtitle-italic {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
}
.custom-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.custom-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.list-icon {
    color: var(--highlight);
    margin-top: 5px;
    margin-right: 15px;
}

/* --- Stats Sektion --- */
.stats-grid h3 {
    font-size: 28px;
    margin: 0;
}
.mobile-divider {
    display: none;
}
@media (max-width: 767px) {
    .mobile-divider {
        display: block;
        height: 2px;
        background-color: var(--bg-dark);
        width: 50%;
        margin: 20px auto;
    }
}

/* --- Testimonials --- */
.testimonial-item img {
    max-width: 100%;
    border-radius: 4px;
    margin-top: 15px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--branding-color-2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--branding-color-0);
}
.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Fix für die Andreas Ogger Sektion --- */
@media (min-width: 768px) {
    .host-section .grid-2 {
        /* Gibt dem Textbereich das 1.5-fache an Platz im Vergleich zum Bild */
        grid-template-columns: 1.5fr 1fr; 
        gap: 50px;
    }
}

.host-image img {
    width: 100%;
    max-width: 380px; /* Begrenzt die Bildgröße */
    margin: 0 auto;
    display: block;
}

/* --- Styling für die Video-Testimonials --- */
.video-card p {
    min-height: 55px; /* Sorgt dafür, dass die Videos alle auf der gleichen Höhe starten */
    margin-bottom: 10px;
}

.video-card video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #000; /* Falls das Video beim Laden kurz schwarz ist */
    outline: none;
}

/* --- Smooth Scrolling --- */
html {
    scroll-behavior: smooth;
}

/* --- Learn Section --- */
.learn-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}
.learn-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}
.learn-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background-color: var(--highlight);
    color: var(--branding-color-1);
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.learn-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--highlight);
}

/* --- Target Audience --- */
.audience-box {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.positive-box {
    background-color: #f0fdf4;
    border-top: 5px solid #27ae60;
}
.negative-box {
    background-color: #fff1f0;
    border-top: 5px solid #e74c3c;
}
.audience-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--branding-color-1);
}
.audience-box .custom-list li {
    color: var(--branding-color-1);
    margin-bottom: 20px;
}

/* --- Final CTA --- */
.final-cta {
    background-color: #041820;
    padding: 80px 0;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight) 0%, #c4962c 100%); /* Premium Gradient */
    color: var(--branding-color-1);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 45px; /* Etwas größer für mehr Wirkung */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(232, 183, 69, 0.3);
    transition: all 0.3s ease;
    animation: pulseButton 2.5s infinite; /* Puls-Animation zieht die Blicke auf sich */
}
.cta-button:hover {
    animation: none;
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(232, 183, 69, 0.4);
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(232, 183, 69, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 12px 25px rgba(232, 183, 69, 0.5); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(232, 183, 69, 0.3); }
}