/* ===== VALUE PROPOSITION SECTION STYLES ===== */

.value-proposition-section {
    background-color: transparent;
    padding: 0;
}

.value-proposition-content {
    opacity: 1;
    visibility: visible;
    margin-top: -100px;
}

.container {
    position: relative;
    padding-bottom: 100px;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.value-proposition-title {
    font-family: 'Londrina Solid', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
    opacity: 1;
    visibility: visible;
}

.value-proposition-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50px;
}

.value-props-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.value-prop-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    transition: all var(--transition-medium);
    position: relative;
}

.value-prop-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--accent);
    opacity: 0.2;
}

.value-prop-item:hover {
    background-color: var(--gray-50);
}

.value-prop-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: var(--space-4);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    border-radius: 50px;
    flex-shrink: 0;
}

.value-prop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 1;
    visibility: visible;
    min-width: 0;
}

.value-prop-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.value-prop-text {
    color: var(--gray-600);
    font-size: var(--text-base);
    line-height: 1.6;
}

.value-prop-item:hover .value-prop-title {
    color: #2563eb;
}

.value-prop-item:hover .value-prop-text {
    color: #374151;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 25px;
    }
    
    .value-prop-item {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .value-prop-item:not(:last-child)::after {
        display: none;
    }
    
    .value-prop-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .value-prop-icon {
        width: 3rem;
        height: 3rem;
        margin-right: 1rem;
        font-size: 1.5rem;
    }
    
    .value-prop-title {
        font-size: 1.125rem;
    }
    
    .value-prop-text {
        font-size: 0.875rem;
    }
    
    .value-proposition-title {
        font-size: 1.875rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    
    .value-props-grid {
        border-radius: 20px;
    }
    
    .value-prop-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .value-prop-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .value-proposition-title {
        font-size: 1.5rem;
    }
}

/* ===== ACCESSIBILITY ===== */

.value-prop-item:focus-within {
    background: #eff6ff;
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.value-prop-item:focus-within .value-prop-icon {
    background: #f97316;
}

/* ===== PRINT STYLES ===== */

@media print {
    .value-props-grid {
        box-shadow: none;
        border: 1px solid #d1d5db;
    }
    
    .value-prop-item:hover {
        background: white;
        transform: none;
        box-shadow: none;
    }
} 