/**
 * Chemistry Hub - Why Us Section Styles
 */

/* =====================================================
   Why Us Section
   ===================================================== */
.ch-why-us {
    background-color: var(--ch-background);
    width: 100%;
}

.ch-why-us-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ch-why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ch-why-us-content {
    position: relative;
    z-index: 10;
}

.ch-why-us-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ch-primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ch-why-us-title {
        font-size: 2.25rem;
    }
}

.ch-why-us-description {
    color: var(--ch-muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ch-why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-why-us-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.ch-why-us-list-item svg {
    color: var(--ch-secondary);
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
}

.ch-why-us-list-item span {
    font-weight: 500;
    color: var(--ch-foreground);
}

.ch-why-us-features {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .ch-why-us-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ch-feature-card {
    padding: 1.25rem;
}

.ch-feature-card:hover .ch-feature-icon {
    background-color: hsl(152 76% 40% / 0.2);
}

.ch-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: hsl(152 76% 40% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s ease;
}

.ch-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--ch-secondary);
}

.ch-feature-title {
    font-weight: 700;
    color: var(--ch-primary);
    margin-bottom: 0.25rem;
}

.ch-feature-description {
    font-size: 0.875rem;
    color: var(--ch-muted-foreground);
}
