* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: white;
    color: black;
}

.navbar {
    position: sticky;
    top: 0;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.btn-small {
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 20px;
    margin-left: 20px;
}

/* SECTIONS */
.section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-top: 20px;
}

.text {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.7;
}

/* PRODUCT SHOWCASE */
.product-showcase {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.product-showcase .content {
    max-width: 800px;
}

.product-showcase h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.product-showcase p {
    font-size: 20px;
    line-height: 1.6;
}

.lipa {
    background: linear-gradient(to bottom, #ffffff, #f2f2f2);
}

.onboarding {
    background: black;
    color: white;
}

.support {
    background: linear-gradient(to bottom, #f7f7f7, #ffffff);
}

.sticky {
    position: sticky;
    top: 35%;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
}

.dark .btn {
    background: white;
    color: black;
}

/* COMPLIANCE */
.compliance-list {
    margin-top: 30px;
    list-style: none;
    font-size: 18px;
}

/* FORM */
.form {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.note {
    margin-top: 20px;
    font-size: 14px;
    color: gray;
}

.form-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

/* FEATURES */
.features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    font-size: 18px;
}

#stats .features div {
    font-size: 20px;
    font-weight: 500;
}

footer.footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* ANIMATION */
.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .product-showcase h2 {
        font-size: 38px;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .sticky {
        top: 25%;
    }
}