/* ============================================ */
/* REVENUE PAGE SPECIFIC STYLES                 */
/* ============================================ */

/* Revenue Hero */
.revenue-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.revenue-types {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.revenue-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.type-icon {
    font-size: 1.5rem;
}

.type-text {
    color: white;
    font-weight: 500;
}

/* Revenue Intro Section */
.revenue-intro {
    max-width: 1000px;
    margin: 0 auto;
}

.revenue-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Revenue Grid */
.revenue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.revenue-grid.reverse {
    direction: rtl;
}

.revenue-grid.reverse > * {
    direction: ltr;
}

.revenue-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.revenue-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.revenue-image:hover img {
    transform: scale(1.05);
}

/* Revenue Content */
.revenue-content {
    padding: 1rem 0;
}

.revenue-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.revenue-tag.transaction {
    background: linear-gradient(135deg, #29ABE2 0%, #1a8bc9 100%);
    color: white;
}

.revenue-tag.recurring {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.revenue-content h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.revenue-content .lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Revenue Sources */
.revenue-sources {
    margin-bottom: 1.5rem;
}

.revenue-sources h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.source-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.source-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.source-list li:last-child {
    border-bottom: none;
}

.source-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 10px;
}

.source-list li span:last-child {
    color: #444;
    font-size: 0.95rem;
}

/* Revenue Benefit */
.revenue-benefit {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #29ABE2;
    margin-top: 1.5rem;
}

.revenue-benefit p {
    color: #444;
    font-size: 0.95rem;
    margin: 0;
}

/* Infrastructure Mini Icons */
.infra-icons-mini {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.infra-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f5f7fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #444;
}

.infra-mini span:first-child {
    font-size: 1.25rem;
}

/* CLMV Flags Mini */
.clmv-flags-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f5f7fa;
    border-radius: 12px;
    font-size: 1.5rem;
}

.clmv-flags-mini .arrow {
    font-size: 1rem;
    color: #29ABE2;
    font-weight: bold;
}

/* Section Header */
.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #29ABE2 0%, #E91E9B 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .revenue-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .revenue-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .revenue-types {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .revenue-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .revenue-grid,
    .revenue-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
    
    .revenue-content h2 {
        font-size: 1.8rem;
    }
    
    .revenue-image {
        order: -1;
    }
    
    .infra-icons-mini {
        flex-wrap: wrap;
    }
    
    .clmv-flags-mini {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .revenue-type {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .revenue-content h2 {
        font-size: 1.5rem;
    }
    
    .source-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
