.why-inerg-main {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: radial-gradient(circle at 20% 30%, rgba(29, 187, 209, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(185, 105, 220, 0.05) 0%, transparent 40%);
}

.why-inerg-hero-section {
    margin-bottom: 80px;
}

.why-inerg-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.why-inerg-gradient-text {
    background: linear-gradient(90deg, #1DBBD1 0%, #B969DC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-inerg-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 0;
    margin-bottom: 30px;
}

.why-inerg-team-section {
    margin-bottom: 80px;
}

.why-inerg-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.why-inerg-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-inerg-team-card {
    background: linear-gradient(135deg, rgba(29, 187, 209, 0.1) 0%, rgba(15, 20, 26, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.why-inerg-team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(29, 187, 209, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-inerg-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 187, 209, 0.3);
}

.why-inerg-team-card:hover::before {
    opacity: 1;
}

.why-inerg-icon-wrapper-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1DBBD1;
    z-index: 1;
}

.why-inerg-icon-wrapper-large svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.why-inerg-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
    z-index: 1;
    margin: 0;
}

.why-inerg-card-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    z-index: 1;
    margin: 0;
}

.why-inerg-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-inerg-solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.why-inerg-solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-inerg-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 0.5rem;
}

.why-inerg-icon-circle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.why-inerg-bg-green {
    background: rgba(77, 225, 193, 0.2);
    color: #4de1c1;
}

.why-inerg-bg-yellow {
    background: rgba(255, 204, 0, 0.2);
    color: #ffcc00;
}

.why-inerg-bg-pink {
    background: rgba(185, 105, 220, 0.2);
    color: #b969dc;
}

.why-inerg-bg-blue {
    background: rgba(29, 187, 209, 0.2);
    color: #1dbbd1;
}

.why-inerg-card-title-small {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.why-inerg-card-description-small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-inerg-team-grid {
        grid-template-columns: 1fr;
    }

    .why-inerg-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-inerg-title {
        font-size: 2.5rem;
    }

    .why-inerg-solution-grid {
        grid-template-columns: 1fr;
    }

    .why-inerg-team-grid {
        padding: 1.5rem;
    }
}
