* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}



h1 {
    font-weight: 800;
}


h2 {
    font-weight: 700;
}


h3 {
    font-weight: 600;
}

a {
    transition: 0.3s ease;
}


.btn,
.login-btn,
.whatsapp-btn {
    font-weight: 600;
}


header,
footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


section {
    width: 100%;
}
header,
section,
footer {
    padding-left: 20px;
    padding-right: 20px;
}

img {
    max-width: 100%;
}

section {
    padding: 60px 20px;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 35px;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

p {
    color: #6b7280;
}



/* HEADER */

header {
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    align-items: center;
    position: relative;
}


.logo {
    color: #2563eb;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.logo img {
    width: 50px;
}
.logo p {
    font-size: 26px;
    font-weight: 800;
}

.logo span {
    color: #0227ce;
}


nav {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.login-btn,
.whatsapp-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 12px 18px;

    border-radius: 10px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

}




/* PRIMARY CTA - CREATE ACCOUNT */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #2563eb;

    color: #ffffff;

    padding: 14px 28px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

    box-shadow: 0 8px 20px rgba(37,99,235,0.25);

}


.btn:hover {

    background: #1d4ed8;

}



/* SECONDARY CTA - SEE HOW IT WORKS */

.btn-outline {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: #2563eb;

    border: 2px solid #2563eb;

    padding: 12px 26px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

}


.btn-outline:hover {

    background: #eff6ff;

}



/* WHATSAPP BUTTON */

.whatsapp-btn {

    background: #22c55e;

    color: white;

    transition: 0.3s;
    min-width: fit-content;
    box-shadow: 0 8px 20px rgba(34,197,94,0.25);

}


.whatsapp-btn:hover {

    background: #16a34a;

}



/* LOGIN BUTTON */

.login-btn {

    background: #f9fafb;

    border: 1px solid #e5e7eb;

    color: #111827;

    transition: 0.3s;

}


.login-btn:hover {

    background: #f3f4f6;

}






/* HERO */

.hero {

    display: flex;

    padding-top: 40px;

    flex-direction: column;

    text-align: center;

    gap: 35px;

}

.hero-text {
    max-width: 600px;
}


.hero-text p {

    font-size: 1.05rem;

    margin-bottom: 30px;
    max-width: 500px;

}



.hero-text span {

    color: #16a34a;

}



.buttons {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.buttons a {

    min-height: 48px;
    width: 100%;

}



.hero-card {

    background: #f0fdf4;

    padding: 25px;

    border-radius: 25px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

}



.hero-card div {

    background: white;

    padding: 18px;

    margin-bottom: 12px;

    border-radius: 15px;

    display: flex;

    justify-content: space-between;

}



.hero-card strong {

    color: #16a34a;

}



/* CARDS */

.grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}



.card {

    padding: 25px;

    border-radius: 18px;

    border: 1px solid #e5e7eb;

}

@media (hover:hover){

.card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.08);

}

}



/* BACKGROUNDS */

.problem {

    background: #f9fafb;

}


.steps {

    background: #f0fdf4;

}



/* PRICING */

.price-card {

    border: 1px solid #e5e7eb;

    border-radius: 25px;

    padding: 30px;

    text-align: center;

}



.price-card h1 {

    color: #16a34a;

}



.price-card ul {

    list-style: none;

    margin: 20px 0;

}



.price-card li {

    margin: 10px;

}



/* CTA */

.cta {

    background: #111827;

    color: white;

    text-align: center;

    border-radius: 25px;

}



.cta h2 {

    color: white;

}



.cta p {

    margin-bottom: 25px;

}



/* FOOTER */

footer {

    padding: 30px 20px;

    text-align: center;

}



/* TABLET */

@media(min-width: 600px){


    header {

        flex-direction: row;

        justify-content: space-between;

    }


    nav {

        width: auto;

    }


    .hero {

        text-align: left;

    }


    .buttons {

        flex-direction: row;

    }


    .buttons a {

        width: auto;

    }


    .grid {

        grid-template-columns: repeat(2,1fr);

    }

}



/* DESKTOP */

@media(min-width: 900px){


    section {

        max-width: 1200px;

        margin: auto;

        padding: 90px 30px;

    }


    h1 {

        font-size: 4rem;

    }


    .hero {

        flex-direction: row;

        align-items: center;

    }


    .hero-text,
    .hero-card {

        flex: 1;

    }


    .grid {

        grid-template-columns: repeat(3,1fr);

    }

}