/* Why Section */
.esg-why-section {
    padding-block: var(--space-xl);
    background: var(--color-surface);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-green);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Collaboration Cards */
.esg-collaboration-section {
    padding-block: var(--space-xl);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .collaboration-grid {
        grid-template-columns: 1fr;
    }
}

.collaboration-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon-wrapper-sm {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary-light);
    color: var(--color-success);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

.collaboration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.collaboration-card .subtitle {
    font-size: 1rem;
    color: var(--color-success);
    margin-bottom: 1rem;
    font-weight: 600;
}

.collaboration-card .description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.collaboration-card.compact .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.examples-box, .result-box {
    background: var(--color-surface);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
}

.result-box {
    background: var(--color-primary-light);
    color: var(--color-success-darker);
}

.examples-box .label, .result-box .label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--color-primary);
}

.result-box .label {
    color: var(--color-success-dark);
}

.examples-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.examples-box li {
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

/* Process Section */
.esg-process-section {
    padding-block: var(--space-xl);
    background: var(--color-surface);
}

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

.process-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    line-height: 1;
}

.process-card .icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary-light);
    color: var(--color-success);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Simple Benefits Grid (Why Choose Us) */
.esg-benefits-section {
    padding-block: var(--space-xl);
}

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

.simple-benefit-item {
    display: flex;
    gap: 1rem;
}

.check-icon {
    color: var(--color-success);
    flex-shrink: 0;
}

.simple-benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Partner Requirements Section */
.esg-requirements-section {
    padding-block: var(--space-xl);
    background: var(--color-primary-light);
}

.requirements-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.requirement-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.requirement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.requirement-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: var(--gradient-green);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.requirement-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .requirements-container {
        padding: 2rem 1.5rem;
    }

    .requirement-card {
        flex-direction: column;
        gap: 1rem;
    }
}
