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

/* Verhindere horizontales Scrollen */
html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* ============================================
   SECTION 1: HERO SECTION
   ============================================ */
.hero-section {
    min-height: auto;
    background-color: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 30px;
    position: relative;
    text-align: center;
}

.hero-section > * {
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 40px;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(139, 255, 45, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 255, 45, 0.4);
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 0 auto 30px auto;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    flex-wrap: nowrap;
    padding: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #8bff2d;
    font-size: 22px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.social-icon:hover {
    color: #aaff4d;
    transform: translateY(-2px);
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    height: 100%;
    font-size: 22px;
}

.footer-links {
    display: flex;
    gap: 24px;
    color: #888888;
    font-size: 14px;
    align-self: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
}

/* ============================================
   SECTION 2: PROMOTIONAL BANNER
   ============================================ */
.promo-banner {
    background-color: #1e1e1e;
    padding: 50px 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 0;
    align-items: stretch;
    background-color: #8bff2d;
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
}

.promo-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 40px;
}

.promo-badge {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promo-heading {
    color: #000000;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-top: 8px;
    margin-bottom: 8px;
}

.promo-description {
    color: #000000;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button-black {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone-icon {
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-icon::after {
    content: '📱';
    font-size: 14px;
    line-height: 1;
}

.promo-divider {
    width: 2px;
    background-color: #000000;
    margin: 0 40px;
    flex-shrink: 0;
}

.promo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
    justify-content: center;
}

.promo-offer {
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
    margin-top: 0;
}

.promo-details {
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   SECTION 1: MAIN LANDING SECTION
   ============================================ */
.main-landing {
    background-color: #1e1e1e;
    padding: 100px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.landing-tag {
    background-color: #333333;
    border: 1.5px solid #8bff2d;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    align-self: center;
}

.trend-icon {
    width: 18px;
    height: 18px;
    background-color: #8bff2d;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trend-icon::after {
    content: '↗';
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.landing-subtitle {
    color: #8bff2d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-align: center;
}

.landing-headline {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 1100px;
    letter-spacing: -0.5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.landing-body {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    max-width: 1000px;
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.financial-graph {
    display: none;
}

.graph-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.graph-svg path {
    transform-origin: center;
}

.graph-svg rect {
    /* Animation entfernt */
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    z-index: 2;
    position: relative;
}

.social-proof-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.badge-image {
    width: 280px;
    height: auto;
    display: block;
}

.avatar-group {
    display: flex;
    position: relative;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #666666, #444444);
    border: 3px solid #2a2a2a;
    position: relative;
    margin-left: -14px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.avatar:first-child {
    margin-left: 0;
    z-index: 5;
}

.avatar:nth-child(2) {
    z-index: 4;
}

.avatar:nth-child(3) {
    z-index: 3;
}

.avatar:nth-child(4) {
    z-index: 2;
}

.avatar:nth-child(5) {
    z-index: 1;
}

.participants-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.cta-button-landing {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 22px 50px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 15px rgba(139, 255, 45, 0.3);
}

.cta-button-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 255, 45, 0.4);
}

.video-placeholder {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    margin-top: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333333;
    z-index: 2;
    box-shadow: 0 0 80px rgba(139, 255, 44, 0.4), 0 0 120px rgba(139, 255, 44, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}


.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-play-button {
    width: 100px;
    height: 100px;
    background-color: rgba(139, 255, 45, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 255, 45, 0.3);
    position: relative;
    z-index: 10;
}

.video-play-button:hover {
    transform: scale(1.1);
    background-color: #8bff2d;
    box-shadow: 0 6px 30px rgba(139, 255, 45, 0.5);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid #000000;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 8px;
}

/* ============================================
   REVIEWS SECTION MAIN (Under Video)
   ============================================ */
.reviews-section-main {
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    z-index: 2;
    position: relative;
}

.reviews-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.reviews-left {
    flex: 0 0 300px;
}

.reviews-excellent {
    color: #ffffff;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviews-stars-box {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.trustpilot-stars-large {
    height: 28px;
    width: auto;
    display: block;
}

.reviews-count {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviews-underline {
    text-decoration: underline;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.reviews-underline:hover {
    color: #8bff2d;
}

.trustpilot-logo-main {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.trustpilot-logo-img {
    width: 100px;
    height: auto;
    display: block;
}

.reviews-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 200px;
}

.reviews-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
}

.reviews-arrow:hover {
    transform: scale(1.1);
}

.reviews-arrow svg {
    display: block;
    width: 40px;
    height: 40px;
}

.reviews-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .reviews-track {
        gap: 0;
    }
}

.review-item-main {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    background-color: transparent;
    box-sizing: border-box;
}

.review-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.review-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .review-item-main {
        width: 100%;
        min-width: 100%;
    }
}

.review-stars-verified {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.review-stars-small {
    display: flex;
    gap: 3px;
}

.trustpilot-stars-small {
    height: 18px;
    width: auto;
    display: block;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.review-verified svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.review-headline {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 11px;
    letter-spacing: -0.3px;
    line-height: 1.35;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.review-text-main {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 13px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-author-main {
    color: #888888;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.review-note-main {
    color: #888888;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: #1e1e1e;
    padding: 40px 60px;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 30px;
}

.footer-disclaimer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: left;
    max-width: 100%;
}

.footer-disclaimer p {
    color: #666666;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer a {
    color: #8bff2d;
    text-decoration: underline;
}

.footer-disclaimer a:hover {
    color: #aaff4d;
}

/* ============================================
   SECTION 4: ABOUT SECTION
   ============================================ */
.about-section {
    background-color: #2a2a2a;
    padding: 100px 60px;
    min-height: 700px;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1.2;
    background-color: #333333;
    padding: 50px;
    border-radius: 16px;
}

.about-name {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about-title {
    color: #cccccc;
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 500;
}

.about-paragraph {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-image {
    flex: 1;
    max-width: 550px;
}

.about-image img,
.about-portrait {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    min-height: 600px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 16px;
}

.image-placeholder span {
    text-align: center;
    padding: 20px;
}

/* ============================================
   SECTION 4: DARWINEX PERFORMANCE SECTION
   ============================================ */
.darwinex-section {
    background-color: #2a2a2a;
    padding: 100px 60px;
    min-height: auto;
}

.darwinex-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.darwinex-text {
    flex: 1;
    background-color: #333333;
    padding: 50px;
    border-radius: 16px;
}

.darwinex-heading {
    color: #8bff2d;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.darwinex-paragraph {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
}

.cta-button-darwinex {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(139, 255, 45, 0.3);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button-darwinex:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 255, 45, 0.4);
    background-color: #aaff4d;
}

.darwinex-image {
    flex: 1;
    max-width: 600px;
}

.darwinex-image img,
.darwinex-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SECTION 5: VIDEO REVIEW SECTION
   ============================================ */
.video-review-section {
    background-color: #2a2a2a;
    padding: 100px 60px;
}

.video-review-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.video-review-left {
    flex: 1;
}

.video-review-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-review-badge {
    background-color: #333333;
    border: 1.5px solid #8bff2d;
    color: #8bff2d;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    width: fit-content;
}

.video-review-heading {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.video-review-quote-box {
    background-color: #333333;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    border: 2px solid #444444;
}

.video-review-quote-icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-review-quote {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.7;
    position: relative;
}

.video-review-author {
    color: #888888;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: right;
    font-style: normal;
}

.video-review-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(139, 255, 44, 0.5), 0 0 100px rgba(139, 255, 44, 0.3);
    border: 3px solid #8bff2d;
    position: relative;
    background-color: #000000;
}

.video-review-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #8bff2d, #aaff4d);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.video-review-player {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000000;
    border-radius: 13px;
}

/* ============================================
   SECTION 6: TRAINING SECTION
   ============================================ */
.training-section {
    background-color: #2a2a2a;
    padding: 100px 60px;
}

.training-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.training-image {
    flex: 1;
}

.training-image img,
.training-image-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.training-image .image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    min-height: 500px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 16px;
}

.training-text {
    flex: 1;
    background-color: #333333;
    padding: 50px;
    border-radius: 16px;
}

.training-badge {
    background-color: #555555;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    width: fit-content;
    margin-bottom: 35px;
    font-weight: 600;
}

.training-heading {
    color: #8bff2d;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.training-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.training-list li {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-weight: 400;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #00ff00;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon::after {
    content: '✓';
    color: #000000;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.cta-button-training {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 20px 48px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 255, 45, 0.3);
}

.cta-button-training:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 255, 45, 0.4);
}

/* ============================================
   SECTION 6: REVIEWS SECTION
   ============================================ */
.reviews-section {
    background-color: #1a1a1a;
    padding: 80px 60px;
}

.reviews-top {
    margin-bottom: 80px;
}

.trading-interface {
    display: flex;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.chart-pane {
    flex: 2.2;
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    position: relative;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.window-controls {
    display: flex;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f57; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #28ca42; }

.chart-tabs {
    background-color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
}

.tab.active {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.chart-info {
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
}

.chart-timeframes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: 20px;
}

.chart-timeframes span {
    color: #888888;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chart-timeframes span:hover {
    background-color: #333333;
}

.chart-timeframes span.active {
    color: #8bff2d;
    background-color: #333333;
    font-weight: 600;
}

.chart-tools {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.tool-icon {
    color: #cccccc;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tool-icon:hover {
    color: #ffffff;
}

.chart-area {
    width: 100%;
    height: 450px;
    background-color: #1a1a1a;
    border-radius: 8px;
    position: relative;
    margin-bottom: 25px;
    border: 1px solid #333333;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: rgba(139, 255, 45, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #8bff2d;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 28px solid #000000;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 10px;
}

.chart-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.chart-indicators div {
    color: #888888;
    font-size: 12px;
    padding: 6px 12px;
    background-color: #333333;
    border-radius: 6px;
    font-weight: 400;
}

.chart-price {
    color: #cccccc;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.speaker-pane {
    flex: 1;
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    min-height: 550px;
}

.speaker-video {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
}

.speaker-video::before {
    content: '👤';
    font-size: 100px;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.speaker-logo {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #8bff2d;
    font-size: 20px;
    font-weight: 800;
    z-index: 2;
    text-shadow: 0 0 15px rgba(139, 255, 45, 0.6);
    letter-spacing: 1px;
}

.founder-summit {
    position: absolute;
    bottom: 55px;
    left: 25px;
    color: #888888;
    font-size: 13px;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.reviews-bottom {
    max-width: 1600px;
    margin: 0 auto;
}

.known-from {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    color: #cccccc;
    font-size: 17px;
    font-weight: 500;
}

.publication-logos {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.publication-logos .logo {
    color: #888888;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.review-card {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.review-rating-large {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.stars-large {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.stars-small {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.star {
    width: 22px;
    height: 22px;
    background-color: #00ff00;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: block;
}

.stars-small .star {
    width: 18px;
    height: 18px;
}

.review-count {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 400;
}

.trustpilot-logo {
    width: 140px;
    height: 35px;
    background-color: #00ff00;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trustpilot-logo::after {
    content: 'Trustpilot';
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.verified {
    color: #00ff00;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 600;
}

.review-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.review-text {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 400;
}

.review-author {
    color: #888888;
    font-size: 13px;
    font-weight: 400;
}

.review-note {
    color: #888888;
    font-size: 13px;
    margin-top: 25px;
    font-style: italic;
    font-weight: 400;
}

.review-item {
    margin-bottom: 30px;
}

.review-item:last-child {
    margin-bottom: 0;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: #555555;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #666666;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -18px;
}

.left-arrow::after {
    content: '←';
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.right-arrow {
    right: -18px;
}

.right-arrow::after {
    content: '→';
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .promo-content,
    .about-content,
    .training-content,
    .darwinex-content,
    .video-review-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .promo-divider {
        width: 100%;
        height: 2px;
        margin: 30px 0;
    }
    
    .promo-left,
    .promo-right {
        padding: 0;
    }
    
    .trading-interface {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-headline {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .landing-subtitle {
        font-size: 14px;
    }
    
    .landing-tag {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .landing-body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .promo-heading {
        font-size: 28px;
    }
    
    .promo-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .promo-description {
        font-size: 16px;
    }
    
    .promo-offer {
        font-size: 20px;
    }
    
    .promo-details {
        font-size: 15px;
    }
    
    .about-name {
        font-size: 26px;
    }
    
    .about-title {
        font-size: 14px;
    }
    
    .about-paragraph {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .darwinex-section {
        padding: 40px 20px;
    }
    
    .darwinex-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .darwinex-section {
        padding: 30px 15px;
    }
    
    .darwinex-content {
        gap: 25px;
    }
    
    .darwinex-text {
        padding: 30px 25px;
    }
    
    .darwinex-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .darwinex-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .cta-button-darwinex {
        padding: 12px 24px;
        font-size: 15px;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .darwinex-image {
        max-width: 100%;
    }
    
    .about-portrait {
        max-width: 100%;
    }
    
    .training-heading {
        font-size: 22px;
    }
    
    .training-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .training-list li {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 28px;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        left: 0;
    }
    
    .main-landing,
    .about-section,
    .training-section,
    .darwinex-section,
    .video-review-section,
    .reviews-section {
        padding: 40px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-review-section {
        padding: 40px 20px;
    }
    
    .video-review-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .video-review-left {
        order: 1;
        width: 100%;
    }
    
    .video-review-right {
        order: 2;
        width: 100%;
    }
    
    .video-review-badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .video-review-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .video-review-quote-box {
        padding: 30px 25px;
    }
    
    .video-review-quote-icon {
        margin-bottom: 15px;
    }
    
    .video-review-quote-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .video-review-quote {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .video-review-author {
        font-size: 13px;
    }
    
    .promo-banner {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-content {
        padding: 20px 15px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-content,
    .about-content,
    .training-content,
    .darwinex-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-placeholder,
    .video-mobile-first {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews-section-main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-left {
        gap: 12px;
    }
    
    .promo-right {
        gap: 12px;
    }
    
    .promo-divider {
        margin: 15px 0;
    }
    
    .promo-badge {
        margin-bottom: 0;
    }
    
    .promo-heading {
        margin-top: 4px;
        margin-bottom: 4px;
    }
    
    .promo-description {
        margin-bottom: 0;
    }
    
    .cta-button-black {
        margin-top: 8px;
    }
    
    .promo-offer {
        margin-top: 0;
        margin-bottom: 4px;
    }
    
    .promo-details {
        margin-bottom: 0;
    }
    
    .cta-button-landing,
    .cta-button-training,
    .cta-button-primary,
    .cta-button-black {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .participants-text {
        font-size: 13px;
    }
    
    .avatar {
        width: 32px;
        height: 32px;
    }
    
    .main-landing {
        display: flex;
        flex-direction: column;
    }
    
    .video-mobile-first {
        order: 2;
        height: 250px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .landing-body {
        order: 3;
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .financial-graph {
        order: 4;
    }
    
    .social-proof {
        order: 5;
    }
    
    .reviews-section-main {
        order: 6;
    }
    
    .cta-button-landing {
        order: 7;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-triangle {
        border-left: 16px solid #000000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 5px;
    }
    
    .financial-graph {
        margin: 20px 0;
        height: 180px;
    }
    
    .social-proof {
        gap: 10px;
        margin: 20px 0;
    }
    
    .badge-image {
        width: 220px;
    }
    
    .avatar-group {
        gap: -8px;
    }
    
    /* Reviews Section Mobile */
    .reviews-section-main {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .reviews-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-left {
        flex: 1;
        width: 100%;
        text-align: center;
    }
    
    .reviews-excellent {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .reviews-count {
        font-size: 13px;
    }
    
    .trustpilot-stars-large {
        height: 18px;
    }
    
    .trustpilot-logo-img {
        height: 20px;
    }
    
    .review-headline {
        font-size: 15px;
    }
    
    .review-text-main {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .review-author-main {
        font-size: 11px;
    }
    
    .review-verified {
        font-size: 11px;
        gap: 4px;
    }
    
    .trustpilot-stars-small {
        height: 14px;
    }
    
    .reviews-arrow {
        width: 36px;
        height: 36px;
    }
    
    .reviews-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .reviews-stars-box {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .trustpilot-stars-large {
        height: 24px;
    }
    
    .reviews-count {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .trustpilot-logo-main {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .trustpilot-logo-img {
        width: 90px;
    }
    
    .reviews-right {
        width: 100%;
    }
    
    .reviews-arrow {
        width: 36px;
        height: 36px;
    }
    
    .reviews-arrow svg {
        width: 36px;
        height: 36px;
    }
    
    .review-item-main {
        width: 100%;
        min-width: 100%;
        padding-right: 0;
    }
    
    .review-headline {
        font-size: 17px;
    }
    
    .review-text-main {
        font-size: 13px;
    }
    
    .review-author-main {
        font-size: 12px;
    }
    
    .review-note-main {
        font-size: 11px;
    }
}

/* ============================================
   MODAL POP-UP
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

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

.modal-content {
    background-color: #1e1e1e;
    margin: auto;
    padding: 32px;
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(139, 255, 45, 0.1);
    border: 1px solid #2a2a2a;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    color: #666666;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #8bff2d;
    background-color: rgba(139, 255, 45, 0.1);
}

.modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    color: #888888;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #cccccc;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select {
    background-color: #2a2a2a;
    border: 1.5px solid #3a3a3a;
    border-radius: 10px;
    padding: 11px 14px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8bff2d;
    box-shadow: 0 0 0 3px rgba(139, 255, 45, 0.15);
    background-color: #2f2f2f;
}

.form-group input::placeholder {
    color: #666666;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group select {
    flex: 0 0 150px;
    background-color: #2a2a2a;
    border: 1.5px solid #3a3a3a;
    border-radius: 10px;
    padding: 11px 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238bff2d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.phone-input-group select:focus {
    border-color: #8bff2d;
    box-shadow: 0 0 0 3px rgba(139, 255, 45, 0.15);
    background-color: #2f2f2f;
}

.phone-input-group input {
    flex: 1;
}

.form-hint {
    color: #888888;
    font-size: 12px;
    margin-top: 6px;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    min-height: 16px;
    display: block;
}

.form-group input.error,
.form-group select.error {
    border-color: #ff4444;
}

.modal-submit-btn {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(139, 255, 45, 0.25);
    letter-spacing: 0.3px;
}

.modal-submit-btn:hover {
    background-color: #aaff4d;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(139, 255, 45, 0.35);
}

.modal-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 255, 45, 0.25);
}

/* Modal Success Message */
.modal-success {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 255, 45, 0.1);
    border-radius: 50%;
    border: 3px solid #8bff2d;
}

.modal-success-icon i {
    font-size: 40px;
    color: #8bff2d;
}

.modal-success-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-success-message {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

/* Modal Error Message */
.modal-error-message {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px 16px;
        width: 92%;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .modal-close {
        right: 12px;
        top: 12px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .modal-title {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .modal-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .form-group {
        gap: 5px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .phone-input-group select {
        flex: 1;
        width: 100%;
        padding: 10px 12px;
        padding-right: 32px;
        font-size: 14px;
    }
    
    .modal-form {
        gap: 12px;
    }
    
    .modal-submit-btn {
        padding: 12px 24px;
        font-size: 15px;
        margin-top: 2px;
    }
    
    .error-message {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 18px 14px;
        width: 90%;
        border-radius: 14px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-subtitle {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select {
        padding: 9px 11px;
        font-size: 16px;
    }
    
    .modal-form {
        gap: 10px;
    }
    
    .form-row {
        gap: 12px;
    }
    
    .modal-submit-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}

/* iPhone Optimierungen - alle gängigen Breiten (375px, 390px, 414px, 428px) */
@media (max-width: 428px) {
    /* Safe area für Notch - alle Sections */
    .main-landing {
        padding-top: max(30px, calc(env(safe-area-inset-top) + 20px));
        padding-bottom: max(30px, calc(env(safe-area-inset-bottom) + 20px));
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .promo-banner,
    .about-section,
    .training-section,
    .darwinex-section,
    .video-review-section,
    .hero-section {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .main-footer {
        padding-bottom: max(25px, calc(env(safe-area-inset-bottom) + 15px));
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    /* Alle Sections responsive */
    .main-landing,
    .about-section,
    .training-section,
    .darwinex-section,
    .video-review-section {
        padding: 25px max(12px, env(safe-area-inset-left)) max(25px, env(safe-area-inset-right));
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-review-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .video-review-quote-box {
        padding: 25px 20px;
    }
    
    .video-review-quote {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .video-review-author {
        font-size: 12px;
    }
    
    .promo-banner {
        padding: 15px max(12px, env(safe-area-inset-left)) max(15px, env(safe-area-inset-right));
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-content {
        padding: 15px 12px;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Schriftgrößen - mindestens 15-16px für Body-Text */
    .landing-headline {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .landing-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .landing-tag {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    
    .landing-body {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .promo-heading {
        font-size: 24px;
    }
    
    .promo-offer {
        font-size: 18px;
    }
    
    .promo-description,
    .promo-details {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .promo-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .about-name {
        font-size: 24px;
    }
    
    .about-title {
        font-size: 14px;
    }
    
    .about-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .training-heading {
        font-size: 22px;
    }
    
    .training-list li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .review-text-main {
        font-size: 14px;
    }
    
    .review-headline {
        font-size: 16px;
    }
    
    .review-author-main {
        font-size: 13px;
    }
    
    /* Buttons */
    .cta-button-landing,
    .cta-button-training,
    .cta-button-primary,
    .cta-button-black {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    /* Video */
    .video-placeholder,
    .video-mobile-first {
        height: 200px;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews-section-main {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin-top: 30px;
        box-sizing: border-box;
    }
    
    .promo-content,
    .about-content,
    .training-content,
    .darwinex-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-triangle {
        border-left: 16px solid #000000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 4px;
    }
    
    /* Andere Elemente */
    .financial-graph {
        height: 160px;
        margin: 15px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .social-proof {
        gap: 10px;
        margin: 15px 0;
    }
    
    .badge-image {
        width: 220px;
    }
    
    .participants-text {
        font-size: 14px;
    }
    
    .reviews-excellent {
        font-size: 28px;
    }
    
    .reviews-count {
        font-size: 14px;
    }
    
    .about-image {
        max-width: 280px;
    }
    
    .footer-links {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .footer-disclaimer {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-disclaimer p {
        font-size: 9px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .landing-headline {
        font-size: 22px;
    }
    
    .landing-body {
        font-size: 15px;
    }
    
    .landing-tag {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .main-landing,
    .about-section,
    .training-section,
    .darwinex-section,
    .video-review-section {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-review-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .video-review-quote-box {
        padding: 20px 18px;
    }
    
    .video-review-quote {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .video-review-author {
        font-size: 11px;
    }
    
    .promo-banner {
        padding: 15px 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-content {
        padding: 15px 12px;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-content,
    .about-content,
    .training-content,
    .darwinex-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .video-placeholder,
    .video-mobile-first {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .reviews-section-main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .promo-left {
        gap: 10px;
    }
    
    .promo-right {
        gap: 10px;
    }
    
    .promo-divider {
        margin: 12px 0;
    }
    
    .promo-heading {
        font-size: 22px;
        margin-top: 2px;
        margin-bottom: 2px;
    }
    
    .promo-offer {
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 2px;
    }
    
    .promo-description,
    .promo-details {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .promo-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .cta-button-black {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 6px;
    }
    
    .about-name {
        font-size: 22px;
    }
    
    .about-title {
        font-size: 13px;
    }
    
    .about-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .about-portrait {
        max-width: 100%;
    }
    
    .training-heading {
        font-size: 20px;
    }
    
    .training-list li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .cta-button-landing,
    .cta-button-training,
    .cta-button-primary,
    .cta-button-black {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .reviews-section-main {
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .reviews-excellent {
        font-size: 24px;
    }
    
    .trustpilot-stars-large {
        height: 16px;
    }
    
    .review-headline {
        font-size: 14px;
    }
    
    .review-text-main {
        font-size: 12px;
    }
    
    .review-author-main {
        font-size: 10px;
    }
    
    .reviews-arrow {
        width: 32px;
        height: 32px;
    }
    
    .video-mobile-first {
        height: 200px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .video-play-button {
        width: 45px;
        height: 45px;
    }
    
    .play-triangle {
        border-left: 14px solid #000000;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        margin-left: 4px;
    }
    
    .footer-links {
        font-size: 12px;
        gap: 16px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .footer-disclaimer {
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .footer-disclaimer p {
        font-size: 8px;
        line-height: 1.4;
    }
    
    .reviews-arrow {
        width: 32px;
        height: 32px;
    }
    
    .reviews-arrow svg {
        width: 32px;
        height: 32px;
    }
    
    .review-stars-small {
        gap: 2px;
    }
    
    .trustpilot-stars-small {
        height: 16px;
    }
}

/* ============================================
   IMPRESSUM SECTION
   ============================================ */
.impressum-section {
    background-color: #1e1e1e;
    padding: 100px 60px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.impressum-content {
    max-width: 800px;
    width: 100%;
    background-color: #2a2a2a;
    padding: 60px;
    border-radius: 16px;
}

.impressum-heading {
    color: #8bff2d;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.impressum-info {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
}

.impressum-info p {
    margin-bottom: 10px;
}

.impressum-info a {
    color: #8bff2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-info a:hover {
    color: #aaff4d;
    text-decoration: underline;
}

.impressum-footer {
    margin-top: 50px;
    text-align: center;
}

.impressum-back-link {
    color: #8bff2d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.impressum-back-link:hover {
    color: #aaff4d;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .impressum-section {
        padding: 40px 20px;
    }
    
    .impressum-content {
        padding: 40px 30px;
    }
    
    .impressum-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .impressum-info {
        font-size: 16px;
    }
}

/* ============================================
   TRAINING VIDEO PAGE
   ============================================ */
.training-video-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 60px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(139, 255, 44, 0.4), 0 0 120px rgba(139, 255, 44, 0.2);
    border: 2px solid #333333;
}

.training-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000000;
}

.training-info-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.training-info-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 3px solid #8bff2d;
    box-shadow: 0 0 60px rgba(139, 255, 44, 0.4), 0 0 100px rgba(139, 255, 44, 0.2);
    position: relative;
}

.training-info-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #8bff2d, #aaff4d);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

.training-info-heading {
    color: #8bff2d;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 0 20px rgba(139, 255, 45, 0.5);
}

.training-info-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.training-info-cta-text {
    color: #8bff2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background-color: rgba(139, 255, 45, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(139, 255, 45, 0.3);
}

.cta-button-freedom-flow {
    background-color: #8bff2d;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 20px 50px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 255, 45, 0.3), 0 0 30px rgba(139, 255, 45, 0.2);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.cta-button-freedom-flow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 255, 45, 0.4), 0 0 40px rgba(139, 255, 45, 0.3);
    background-color: #aaff4d;
}

.training-contact-box {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #444444;
}

.training-contact-heading {
    color: #8bff2d;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.training-contact-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.training-contact-email {
    margin-top: 25px;
    margin-bottom: 30px;
}

.training-contact-link {
    color: #8bff2d;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.training-contact-link:hover {
    color: #aaff4d;
    transform: translateY(-2px);
}

.training-contact-link i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .training-video-container {
        margin: 30px auto 40px;
        border-radius: 10px;
    }
    
    .training-info-content {
        padding: 30px 25px;
        border-width: 2px;
    }
    
    .training-info-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .training-info-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .training-info-cta-text {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .cta-button-freedom-flow {
        padding: 16px 30px;
        font-size: 17px;
    }
    
    .training-contact-box {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .training-contact-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .training-contact-text {
        font-size: 15px;
    }
    
    .training-contact-link {
        font-size: 16px;
    }
}
