/* ==========================================
   SHARED STYLES FOR SALESPAGE & CHALLENGE
   Dark Theme + Turquoise/White Accents
   ========================================== */

/* ==========================================
   BASE STYLES
   ========================================== */

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

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #00ffff;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-text span {
    display: block;
    margin-bottom: 1rem;
}

.hero-text .highlight {
    color: #00ffff;
    font-weight: 600;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subheadline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-meta {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #999;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

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

/* ==========================================
   BUTTONS
   ========================================== */

.cta-button {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #0a0a0a;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.countdown-item {
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #999;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   REVEAL SECTION
   ========================================== */

.reveal-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .reveal-section {
        grid-template-columns: 1fr 1fr;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1); /* Wird minimal größer */
    background: #ffffff;   /* Wechselt von Cyan auf Weiß */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* Leuchtet etwas mehr */
}

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

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

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Dunkelt das Video vor dem Klick leicht ab */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Sorgt dafür, dass der Klick registriert wird */
}

.play-button {
    width: 60px;
    height: 60px;
    background: #00ffff;
    clip-path: polygon(20% 10%, 90% 50%, 20% 90%); /* Macht das Dreieck */
    transition: transform 0.3s ease;
}


.reveal-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.reveal-text p {
    margin-bottom: 1.5rem;
}

.reveal-text .highlight {
    color: #00ffff;
    font-weight: 600;
}

.intro-gif {
    position: absolute; /* Zwingt das GIF in den padding-Bereich */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Schneidet Ränder ab, um den Platz zu füllen */
}

/* ==========================================
   PACKAGES GRID (Salespage)
   ========================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.package-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.popular {
    border-color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #00ffff;
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-description {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.package-price small {
    font-size: 1.2rem;
    color: #999;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    color: #e0e0e0;
    font-size: 1rem;
}

.package-features li:before {
    content: '✓ ';
    color: #00ffff;
    font-weight: bold;
    margin-right: 0.5rem;
}

.package-setup {
    background: #0f0f0f;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
}

.package-setup-price {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: line-through;
    color: #666;
}

.package-setup-note {
    color: #00ffff;
    font-weight: 600;
    margin-top: 0.5rem;
}

.package-ideal {
    font-style: italic;
    color: #999;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.package-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.package-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

/* ==========================================
   BENEFITS GRID (Challenge)
   ========================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00ffff;
}

.benefit-description {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==========================================
   BONUS BANNER
   ========================================== */

.bonus-banner {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 4rem 0;
}

.bonus-text {
    font-size: 1.3rem;
    color: #00ffff;
    font-weight: 600;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */

.comparison-table {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #333;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-column h3 {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #0f0f0f;
    border-radius: 10px;
}

.comparison-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 30px;
}

.comparison-item .icon.check {
    color: #00ffff;
}

.comparison-item .icon.cross {
    color: #ff4444;
}

.comparison-item .text {
    color: #e0e0e0;
    line-height: 1.6;
}

.comparison-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 1.2rem;
    color: #e0e0e0;
}

.comparison-footer p {
    margin-bottom: 0.5rem;
}

.comparison-footer p:last-child {
    color: #00ffff;
    font-size: 1.4rem;
    margin-top: 1rem;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.testimonial-video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.testimonial-result {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-role {
    color: #999;
    font-size: 0.95rem;
}

/* ==========================================
   EXTRAS GRID
   ========================================== */

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.extra-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.extra-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00ffff;
}

.extra-description {
    color: #999;
    line-height: 1.6;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .about-section {
        grid-template-columns: 1fr 2fr;
    }
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    border: 4px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.about-content h4 {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   FOR YOU SECTION
   ========================================== */

.for-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.for-you-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.for-you-card:hover {
    border-color: #00ffff;
    transform: translateX(10px);
}

.for-you-check {
    font-size: 2rem;
    color: #00ffff;
    flex-shrink: 0;
}

.for-you-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */

.final-cta, .cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.final-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
    display: block;
}

.final-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    color: #e0e0e0;
}

.final-text p {
    margin-bottom: 1.5rem;
}

.final-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.email-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-date {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #00ffff;
    margin-bottom: 3rem;
}

/* ==========================================
   MODAL POPUP
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #00ffff;
    border-radius: 30px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: #00ffff;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-align: center;
}

.modal-subtitle {
    color: #999;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-label .optional {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-input::placeholder {
    color: #666;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    color: #00ffff;
    display: block;
}

.form-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

.footer a {
    color: #00ffff;
    text-decoration: none;
    margin: 0 1rem;
}

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

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {

    .countdown {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 70px;      /* kleiner */
        padding: 0.8rem 1rem;  /* weniger padding */
    }

    .countdown-number {
        font-size: 1.5rem;  /* kleiner (war 2rem) */
    }

    .countdown-label {
        font-size: 0.75rem;  /* kleiner */
    }

    .section {
        padding: 4rem 1rem;
    }

    .packages-grid,
    .benefits-grid,
    .testimonials-grid,
    .for-you-grid,
    .extras-grid {
        grid-template-columns: 1fr;
    }

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

    .package-card.popular {
        transform: scale(1);
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}
