/* --- GRUNDLAGEN & VARIABLEN --- */
:root {
    --color-orange: #ea580c;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark-gray: #111111;
    --color-light-gray: #f4f4f4;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-white);
    background-color: var(--color-black);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; color: var(--color-orange); }
h3 { font-size: 1.8rem; }

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

p {
    margin-bottom: 15px;
}

.highlight {
    color: var(--color-orange);
}

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

.section-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: -15px auto 40px auto;
    color: #ccc;
}

/* --- ANIMATIONEN --- */
@keyframes button-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.animated-button {
    animation: button-shake 5s infinite;
    animation-delay: 3s;
}

/* --- STICKY TIMER --- */
.sticky-timer {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.sticky-timer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-small {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 5px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: background-color 0.3s;
}
.cta-button-small:hover {
    background-color: #333;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero-bg.webp') no-repeat center center/cover;
    padding: 100px 0 50px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.eyebrow {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 5px 15px;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-radius: 5px;
}

.main-headline {
    color: var(--color-white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.subline {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 25px;
}

.date-time {
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-left: 5px solid var(--color-orange);
    margin-bottom: 25px;
    display: inline-block;
}

.hero-benefits {
    list-style: none;
    padding-left: 0;
}
.hero-benefits li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* --- FORMULAR --- */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: var(--color-dark-gray);
    padding: 30px;
    border-radius: 10px;
    border: 3px solid var(--color-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    text-align: center;
    width: 100%;
    max-width: 450px;
}
.form-container h3 {
    color: var(--color-white);
    margin-top: 0;
}
.form-container p {
    color: #ccc;
    margin-bottom: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
}
.form-group input::placeholder {
    color: #888;
}
.form-group input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-group-checkbox {
    font-size: 0.8rem;
    color: #aaa;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.form-group-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}
.form-group-checkbox a {
    text-decoration: underline;
}

.cta-button-main {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 0 #a43d08;
    display: block;
    line-height: 1.1;
}
.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #a43d08;
}
.cta-button-main:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #a43d08;
}

.button-subtext {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-transform: none;
    font-weight: 400;
    opacity: 0.9;
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.7;
}

.arrow-down {
    text-align: center;
    margin-top: 50px;
}
.arrow-down a {
    font-size: 3rem;
    color: var(--color-white);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* --- ALLGEMEINE SEKTIONEN --- */
section {
    padding: 80px 0;
}

/* PROBLEM SECTION */
.problem-section {
    background-color: var(--color-dark-gray);
}
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}
.pain-point {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--color-orange);
}
.pain-point .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.pain-point h3 {
    color: var(--color-white);
}
.solution-bridge {
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(234, 88, 12, 0.1);
    border: 2px solid var(--color-orange);
    border-radius: 10px;
}
.solution-bridge p {
    font-size: 1.3rem;
    margin: 0;
}

/* SOLUTION SECTION */
.solution-section {
    background-color: var(--color-black);
}
.secret {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.secret.reverse {
    grid-template-columns: 1fr 1fr;
}
.secret.reverse .secret-content {
    order: 2;
}
.secret.reverse .secret-image {
    order: 1;
}

.secret-number {
    display: block;
    font-size: 1.2rem;
    color: var(--color-orange);
    margin-bottom: 10px;
}
.secret-content h3 {
    color: var(--color-white);
}
.secret-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* SPEAKER SECTION */
.speaker-section {
    background-color: var(--color-dark-gray);
}
.speaker-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.speaker-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 10px solid var(--color-orange);
}
.speaker-title {
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
    margin-top: -15px;
}
.speaker-bio ul {
    list-style-type: '✓ ';
    padding-left: 25px;
}
.speaker-bio li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-video {
    position: relative;
    cursor: pointer;
}
.testimonial-video img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--color-white);
    background: rgba(0,0,0,0.5);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, background 0.3s;
    text-shadow: 0 0 10px black;
}
.testimonial-video:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(234, 88, 12, 0.8);
}
.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 15px;
    padding: 0 10px;
}
.testimonial-author {
    font-weight: bold;
    color: var(--color-orange);
    margin: 0;
    padding: 0 10px;
}

/* REGISTER SECTION */
.register-section {
    background-color: #050505;
    text-align: center;
    padding: 100px 0;
    border-top: 5px solid var(--color-orange);
    border-bottom: 5px solid var(--color-orange);
}
.register-headline {
    font-size: 3.5rem;
    color: var(--color-white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.register-subheadline {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 40px;
}

.final-countdown-wrapper {
    background-color: var(--color-dark-gray);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 40px;
}
.final-countdown-wrapper h3 {
    margin: 0 0 10px 0;
    color: var(--color-white);
}

.final-form {
    max-width: 600px;
    margin: 0 auto;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
}
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-black);
    padding: 5px 10px;
    border-radius: 5px;
}
.time-block span:first-child {
    font-size: 1.5rem;
    line-height: 1;
}
.time-block span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}
.countdown.large .time-block {
    padding: 15px 25px;
}
.countdown.large .time-block span:first-child {
    font-size: 3rem;
}
.countdown.large .time-block span:last-child {
    font-size: 1rem;
}


/* FAQ SECTION */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0 auto;
}
.faq-item {
    background-color: var(--color-dark-gray);
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--color-orange);
}
.faq-item summary {
    padding: 20px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 2rem;
    color: var(--color-orange);
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-item p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #ccc;
}

/* FOOTER */
.footer {
    background-color: #050505;
    padding: 40px 0;
    color: #888;
    font-size: 0.9rem;
}
.footer-nav a {
    color: #888;
    margin: 0 10px;
    text-decoration: underline;
}
.footer-nav a:hover {
    color: var(--color-white);
}
.disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .hero-form-wrapper {
        justify-content: center;
    }

    .secret, .secret.reverse {
        grid-template-columns: 1fr;
    }
    .secret.reverse .secret-content {
        order: 1;
    }
    .secret.reverse .secret-image {
        order: 2;
    }
    .secret-image {
        margin-top: 30px;
    }

    .speaker-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .speaker-image {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .sticky-timer .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .countdown.large .time-block {
        padding: 10px 15px;
    }
    .countdown.large .time-block span:first-child {
        font-size: 2rem;
    }

    .register-headline {
        font-size: 2.5rem;
    }
}