/* UPVC Scroll Animation - style.css
   Simple, clean styles and animation for the features section
*/

.upvc-features-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #112757;
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.upvc-features-section h2 {
    font-size: 28px;
    margin: 0 0 18px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* list */
.upvc-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.upvc-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent;
    padding: 5px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.45;
}

/* svg tick */
.upvc-features-list .tick-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

/* animation helper: elements start slightly down & transparent and slide up */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: all 640ms cubic-bezier(.2,.9,.2,1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0px);
}
