* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background: #FFF;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding-top: 100px;
}

.width-container {
    max-width: 1200px;
    width: 90%;
    padding: 1rem 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    /*border: 1px solid red;*/
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: border-bottom 0.3s ease;
}

header.scrolled {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .width-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

header .left .logo {
    font-size: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'Inria Sans', sans-serif;
}

header .left .logo img {
    width: 35px;
}

header .right {
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .right a.primary {
    margin-left: 20px;
}

header a.primary {
    background: #0275DE;
}

a.secondary:hover {
    background-color: #eaeaea;
}

a.secondary {
    color: #5b5b5b;
    transition: 0.2s ease;
    text-decoration: none;
    font-size: 14px;
    border-radius: 7px;
    padding: 10px 15px;
    display: inline-flex;
    flex: 0 0 auto;
}
a.secondary.link {
    text-decoration: underline;
}
a.secondary.link:hover {
    text-decoration: none;
}

.primary {
    flex: 0 0 auto;
    transition: 0.2s ease;
    text-decoration: none;
    background-color: #282828;
    color: #FFF;
    font-weight: 400;
    font-size: 14px;
    border-radius: 7px;
    padding: 10px 15px;
    display: inline-flex;
}

.primary.ico {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    padding-left: 5px;
}
.primary img {
    width: 20px;
    margin-left: 8px;
}

.hero-button {
    transition: 0.2s ease;
    text-decoration: none;
    background-color: #0275DE;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    border-radius: 10px;
    padding: 15px 25px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    padding-left: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
    background-color: #016cd0;
}

.hero-button img {
    width: 20px;
    margin-left: 15px;
}

.badges {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badges > span {
    border: 1px solid #d8d8d8;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    margin: 0 5px;
    color: #6c6c6c;
    display: flex;
    align-items: center;
    background: #f4f4f4;
}


/*.badges > span {*/
/*    border: 1px solid #016cd0;*/
/*    border-radius: 15px;*/
/*    padding: 5px 10px;*/
/*    font-size: 12px;*/
/*    margin: 0 5px;*/
/*    color: #016cd0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background: #e3f2fd;*/
/*}*/

.badges > span > span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
    background: #3c9f00;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-family: 'Inria Sans', sans-serif;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.9;
    color: #000;
}

h1 span {
    position: relative;
    white-space: nowrap;
}
h1 span:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 0.3em;
    background-color: #FEF59D;
    z-index: -1;
    border-radius: 4px;
}
h1 span.asd:after {
    background-color: #ADF5FE;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

h4 {
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    color: #525252;
}

p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    color: #555;
}


.hero {
    text-align: center;
    margin-top: 80px;
}

.hero h3 {
    font-size: 20px;
}

.hero img {
    max-width: 80%;
}

.hero .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.features {
    margin: 2rem 0;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    width: 100%;
    margin: 50px auto;
    padding: 0 1rem;
}

.feature {
    background: #fafafa;
    border-radius: 12px;
    padding: 1rem;
    padding-top: 2rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

.feature:hover {
    background: #f6f6f6;
}

.feature span {
    font-size: 30px;
    margin-bottom: 5px;
}

.feature strong {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inria', sans-serif;
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    font-weight: 400;
    /*margin-bottom: 5px;*/
    line-height: 1.3;
    color: #707070;
}


.outro {
    display: block;
    text-decoration: none;
    padding: 3rem;
    border-radius: 30px;
    background-color: #B6CBFF;
    margin: 10rem auto;
    max-width: 1100px;
    transition: 0.2s ease-out;

    &:hover {
        scale: 1.05;
        background-color: #A3BFFF;
    }
}

.faq {
    margin: 5rem auto;
    max-width: 800px;
}

.faq h2 {
    margin-bottom: 3rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    text-align: left;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    transition: 0.2s ease;
}

.faq-item:hover {
    background: #f6f6f6;
}

.faq-item h4 {
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    color: #222;
}

.faq-item p {
    margin: 0;
    text-align: left;
}

footer {
    width: 100%;
    padding: 2rem;
    font-size: 14px;
    color: #888;
    background: #282828;
    text-align: left;
}

footer .width-container {
    display: flex;
    flex-direction: row;
    gap: 6rem;
    justify-content: space-between;
}

footer .left {
    flex-direction: row;
    display: flex;
    gap: 6rem;
}

footer .left .logo {
    font-size: 23px;
    display: flex;
    flex-direction: row;
    font-family: 'Inria Sans', sans-serif;
    color: #FFF;
    margin-bottom: 15px;
}
footer .left .logo img {
    width: 30px;
}

footer .left .logo img {
    width: 30px;
}

footer a {
    color: #888;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

footer .links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: left;
    align-items: start;
}

footer .links strong {
    color: #FFF;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

footer .links ul, footer .links ul li {
    padding: 0;
    margin: 0;
}

footer .links ul li {
    margin-bottom: 0.3rem;
}
footer .links ul {
    padding-left: 10px;
}

#featured {
    text-align: center;
    margin-bottom: 40px;
}


@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1;
    }

    h3 {
        font-size: 1.25rem;
    }

    .width-container {
        width: 95%;
        padding: 0.5rem 0.5rem;
    }

    header a.primary {
        display: none;
    }

    .hero {
        margin-top: 25px;
    }

    .hero .buttons {
        margin-bottom: 3rem;
    }

    .hero img {
        max-width: 100%;
    }

    .outro {
        margin: 5rem auto;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
    }
}

.mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .hero-button.mobile {
        display: inline-flex;
    }
    footer .width-container  {
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        padding: 1rem;
    }
    footer .left {
        flex-direction: column;
        gap: 1rem;
    }
}