/* Value Highlights Section (replaces social proof) */
.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;  /* Increased from 2rem */
    padding: 2rem;     /* Increased from 1.5rem */
    background: rgba(230, 57, 70, 0.03);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    line-height: 1.5;
}

/* Early Access Offer */
.early-access-offer {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--surface-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border-variant);
}

.offer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.offer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.offer-text .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .value-highlights {
        padding: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .highlight-icon {
        font-size: 1.3rem;
    }
    
    .early-access-offer {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .offer-text {
        font-size: 0.9rem;
    }
}
