/* Section 2: Opportunity Section Styles */
.opportunity-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.opportunity-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 73, 171, 0.2), transparent);
}

.opportunity-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #616161;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(57, 73, 171, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3949ab !important;
    margin-bottom: 0.3rem;
    line-height: 1;
    background: transparent !important;
}

.stat-card .stat-label,
.stat-label {
    font-size: 0.9rem;
    color: #000000 !important;
    font-weight: 600;
    background: transparent !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.opportunity-section .stat-card .stat-label {
    color: #000000 !important;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.benefit-card {
    background: #fff;
    padding: 1.5rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(57, 73, 171, 0.08);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(57, 73, 171, 0.12);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.6rem;
    color: #3949ab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.4rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #616161;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 0.5rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(57, 73, 171, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(57, 73, 171, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.trust-signal {
    font-size: 0.95rem;
    color: #424242;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 900px) {
    .opportunity-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .opportunity-container {
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header .subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-card h3 {
        font-size: 0.95rem;
    }

    .benefit-card p {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .opportunity-section {
        padding: 40px 20px;
    }

    .opportunity-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header .subtitle {
        font-size: 0.9rem;
    }

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

    .cta-button {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .trust-signal {
        font-size: 0.85rem;
    }
}
