﻿
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.breadcrumb-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

    .breadcrumb-bg h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

.breadcrumbs-custom-path {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .breadcrumbs-custom-path li {
        color: rgba(255,255,255,0.8);
        margin: 0 5px;
    }

        .breadcrumbs-custom-path li a {
            color: white;
            text-decoration: none;
        }

.benefits-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #718096;
        max-width: 700px;
        margin: 0 auto;
    }

.joining-bonus-section {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    color: white;
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.3);
    position: relative;
    overflow: hidden;
}

    .joining-bonus-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .joining-bonus-section::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

.bonus-content {
    position: relative;
    z-index: 1;
}

    .bonus-content h3 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
    }

.bonus-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-card {
    background: #065744;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

    .bonus-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.2);
    }

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0;
}

.bonus-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-description {
    font-size: 0.95rem;
    opacity: 1.0;
    line-height: 1.6;
}

.timing-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.income-plan-intro {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    text-align: center;
}

    .income-plan-intro h4 {
        color: #667eea;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .income-plan-intro p {
        font-size: 1.1rem;
        color: #4a5568;
        line-height: 1.8;
    }

.level-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
}

    .level-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .level-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        border-radius: 50%;
        transform: translate(50%, -50%);
    }

    .level-card.level-1 {
        border-left-color: #f56565;
    }

    .level-card.level-2 {
        border-left-color: #ed8936;
    }

    .level-card.level-3 {
        border-left-color: #ecc94b;
    }

    .level-card.level-4 {
        border-left-color: #48bb78;
    }

    .level-card.level-5 {
        border-left-color: #38b2ac;
    }

    .level-card.level-6 {
        border-left-color: #4299e1;
    }

    .level-card.level-7 {
        border-left-color: #667eea;
    }

    .level-card.level-8 {
        border-left-color: #9f7aea;
    }

.level-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.level-number {
    display: flex;
    align-items: center;
    gap: 15px;
}

.level-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.level-1 .level-badge {
    background: linear-gradient(135deg, #f56565, #e53e3e);
}

.level-2 .level-badge {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.level-3 .level-badge {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
}

.level-4 .level-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.level-5 .level-badge {
    background: linear-gradient(135deg, #38b2ac, #319795);
}

.level-6 .level-badge {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.level-7 .level-badge {
    background: linear-gradient(135deg, #667eea, #5a67d8);
}

.level-8 .level-badge {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.level-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.level-income {
    font-size: 2rem;
    font-weight: 700;
    color: #48bb78;
}

    .level-income span {
        font-size: 1rem;
        color: #718096;
        font-weight: 400;
    }

.level-details {
    position: relative;
    z-index: 1;
}

    .level-details p {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 15px;
    }

.level-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .level-features li {
        padding: 10px 0;
        color: #4a5568;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .level-features li i {
            color: #48bb78;
            font-size: 1.2rem;
        }

.example-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

    .example-section h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 40px;
    }

.example-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .example-card h5 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

.example-calculation {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

    .example-calculation .row {
        align-items: center;
    }

.total-earning {
    background: rgba(72, 187, 120, 0.2);
    border: 2px solid rgba(72, 187, 120, 0.5);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

    .total-earning h4 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
    }

.cta-section {
    padding: 60px 0;
    text-align: center;
}

    .cta-section h3 {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        color: #718096;
        margin-bottom: 30px;
    }

.btn-get-started {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

    .btn-get-started:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }

.highlights-section {
    background: #f7fafc;
    padding: 60px 0;
    margin-top: 60px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.highlight-item h5 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-item p {
    color: #718096;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bonus-cards {
        flex-direction: column;
    }

    .level-header {
        flex-direction: column;
        gap: 15px;
    }

    .level-income {
        font-size: 1.5rem;
    }
}
