cat >> assets/css/style.css << 'ENDCSS'

/* ==========================================================
   HOME PAGE V2 SECTIONS
   ========================================================== */

.home-product-section {
    padding: 3rem 0;
}
@media (min-width: 992px) {
    .home-product-section { padding: 4.5rem 0; }
}

.section-header-v2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.section-header-left { flex: 1; min-width: 200px; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.section-title-v2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.15;
}
.section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
}
.section-view-all:hover { gap: 10px; }

/* ===== VALUE PROPS V2 ===== */
.value-props-v2 {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 2.5rem 0;
}
.value-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(15,23,42,0.1);
}
.value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.value-text { min-width: 0; }
.value-text h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: #0f172a;
}
.value-text p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 575.98px) {
    .home-product-section { padding: 2.5rem 0; }
    .section-header-v2 { margin-bottom: 1.5rem; }
    .section-title-v2 { font-size: 1.25rem; }
    .section-eyebrow { font-size: 0.65rem; padding: 4px 10px; }
    .value-card { padding: 1rem; gap: 0.75rem; }
    .value-icon { width: 44px; height: 44px; font-size: 1.25rem; }
    .value-text h6 { font-size: 0.82rem; }
    .value-text p { font-size: 0.72rem; }
}
ENDCSS