/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background: var(--primary-700);
    text-align: center;
}

.trusted-by h2 {
    color: var(--neutral-50);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    color: var(--neutral-400);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* OTM GTM Section */
.otm-gtm-section {
    padding: 5rem 0;
    background: var(--primary-900);
}

.otm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.otm-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.otm-feature:hover {
    transform: translateY(-5px);
    background: rgba(0, 115, 230, 0.1);
    border-color: var(--mckinsey-blue);
}

.otm-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-blue);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.otm-feature h3 {
    color: var(--neutral-50);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.otm-feature p {
    color: var(--neutral-400);
    font-size: 0.9rem;
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 0;
    background: var(--primary-800);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.case-study h3 {
    color: var(--neutral-50);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.case-result {
    color: var(--mckinsey-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-solution {
    color: var(--neutral-400);
    font-size: 0.9rem;
}

/* Business Benefits Section */
.business-benefits {
    padding: 5rem 0;
    background: var(--primary-900);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit i {
    color: var(--mckinsey-green);
    font-size: 1.25rem;
}

.benefit span {
    color: var(--neutral-50);
    font-size: 0.95rem;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
    background: var(--primary-800);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-teal);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.resource-card h3 {
    color: var(--neutral-50);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.resource-btn {
    background: var(--mckinsey-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resource-btn:hover {
    background: #005bb5;
    transform: translateY(-1px);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: var(--mckinsey-blue);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-btn {
    background: white;
    color: var(--mckinsey-blue);
}

.final-cta .cta-btn:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

/* Light Theme Updates */
body.light-theme .trusted-by,
body.light-theme .otm-gtm-section,
body.light-theme .business-benefits {
    background: #ffffff;
}

body.light-theme .case-studies,
body.light-theme .resources {
    background: #f8f9fa;
}

body.light-theme .case-study,
body.light-theme .resource-card,
body.light-theme .otm-feature,
body.light-theme .benefit {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .client-logo {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Page Hero Sections */
.otm-gtm-hero,
.case-studies-hero,
.resources-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-900);
    text-align: center;
}

body.light-theme .otm-gtm-hero,
body.light-theme .case-studies-hero,
body.light-theme .resources-hero {
    background: #ffffff;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .client-logos {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .client-logo {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .otm-features-grid,
    .case-studies-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit {
        padding: 0.75rem;
    }
    
    .otm-gtm-hero,
    .case-studies-hero,
    .resources-hero {
        padding: 6rem 0 3rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trusted-by,
    .otm-gtm-section,
    .business-benefits,
    .case-studies,
    .resources {
        padding: 2.5rem 0;
    }
    
    .otm-feature,
    .case-study,
    .resource-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .otm-gtm-hero,
    .case-studies-hero,
    .resources-hero {
        padding: 5rem 0 2rem;
    }
}