* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Schock-Überschrift */
.hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.top-headline {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shock-headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.subline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

/* Truth Section */
.truth-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.truth-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #333;
    margin-bottom: 30px;
    font-weight: 800;
}

.truth-section p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #ff6b6b;
    font-weight: 700;
    margin-top: 30px;
}

/* Year Sections */
.year-section {
    padding: 80px 20px;
    color: #fff;
}

.year-2024 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.year-2025 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.year-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.stock-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stock-list li {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.stock-list li:last-child {
    border-bottom: none;
}

.stock-list strong {
    color: #ffd700;
    font-weight: 800;
}

/* Calculation Box */
.calculation-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.calculation-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    text-align: center;
}

.calculation-box p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
    text-align: center;
}

.results {
    margin-top: 30px;
}

.results p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin: 15px 0;
    text-align: left;
}

.results strong {
    color: #ffd700;
    font-weight: 800;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.shock-summary {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.summary-section h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    font-weight: 800;
}

.summary-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.summary-list li {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.summary-list li:last-child {
    border-bottom: none;
}

.highlight {
    color: #ffd700;
    font-weight: 900;
    font-size: 1.2em;
}

.big-profit {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

/* FOMO Section */
.fomo-section {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    padding: 80px 20px;
    text-align: center;
}

.fomo-headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Outlook Section */
.outlook-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.outlook-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #333;
    margin-bottom: 30px;
    font-weight: 800;
}

.outlook-section p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Exclusivity Section */
.exclusivity-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.exclusivity-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    font-weight: 800;
}

.exclusivity-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.exclusivity-list li {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    padding: 20px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-weight: 600;
    border-left: 4px solid #ffd700;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #fff;
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-description {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 15px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.submit-button {
    width: 100%;
    padding: 20px;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #e53935 100%);
}

.submit-button:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 20px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Legal Footer */
.legal-footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.legal-footer p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section,
    .fomo-section {
        padding: 50px 20px;
    }
    
    .year-section,
    .summary-section,
    .form-section {
        padding: 50px 20px;
    }
    
    .lead-form {
        padding: 30px 20px;
    }
    
    .stock-list,
    .calculation-box,
    .summary-list {
        padding: 25px 20px;
    }
}
