:root {
    --brand: #08AE4C;
    --text: #2C2E30;
    --light-text: #7E8085;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: Roboto, serif;
    color: var(--text)
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto
}

.header-inner {
    position: relative;
    min-height: 72px
}

.container {
    max-width: 1250px
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.main-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    color: #2C2E30;
    text-decoration: none;
    font-weight: 600;
    font-family: Roboto, Inter, system-ui;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .01px
}

.main-nav a:hover {
    color: #000
}

.header-ctas {
    display: flex;
    gap: 12px
}

/* Mobile hamburger */
.hamburger {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 0;
    background: #1A1A1A;
    align-items: center;
    justify-content: center;
    float: right;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: #ffffff;
    margin: 5px auto;
    transition: transform .2s ease, opacity .2s ease;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: Roboto, Inter, system-ui;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border: 2px solid transparent
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.btn-primary:hover {
    background: #079446;
    border-color: #079446
}

.btn-outline {
    background: #fff;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline:hover {
    background: #e8f7ed;
}

.hero {
    background: url(assets/images/bg.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*height: 805px !important;*/
    width: 100%;
    color: var(--white);
}

.section-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-left {
    width: 59%;
    display: inline-block;
}

.hero-right {
    width: 40%;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.header-xs{
    display: none;
}

.hero h1 {
    font-size: 58px;
    font-weight: bolder;
    margin: 0 50px 43px 0;
}

.hero h2 {
    font-size: 28px;
    font-weight: 300;
    width: 80%;
}

.hero-features {
    list-style: none;
    margin-top: 65px;
    padding: 0;
    margin-bottom: 0px;
    text-align: left;
}

.hero-features li {
    display: inline-block;
    text-align: center;
    margin-right: 40px;
}

.hero-features img {
    text-align: center;
    margin-bottom: 18px;
}

.hero-features span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.hero a.btn.btn-primary.btn-lg {
    width: 400px;
    height: 94px;
    font-size: 28px;
    font-weight: 900;
}

ul.hero-notes {
    display: inline-block;
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 0 0 -19px;
}

.hero-notes li {
    margin-bottom: 14px;
}

.hero-cta-block {
    margin-top: 92px;
}

.hero-badge {
    width: 270px;
    float: right;
}

.hero-badge-top {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0 10px 10px;
    border-left: 2px solid #CD3432;
}

.hero-badge-bottom {
    font-size: 14px;
    color: #B2B2B2;
    margin-top: 10px;
}

.hero-visual img {
    width: 100%;
    margin-top: 25px;
}

.how {
    padding: 72px 0;
}

.section-title {
    margin: 0 0 20px;
    font-family: Inter, Roboto, system-ui;
    font-size: 44px;
    line-height: 1.2;
    text-align: center;
    color: #2C2E30;
}

.section-intro {
    margin: 0 auto 32px;
    max-width: 800px;
    text-align: center;
    color: #2C2E30;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.how-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.how-card {
    background: #fff;
    border-radius: 16px;
    padding: 37px 28px 24px;
    box-shadow: 0 10px 28px rgba(2, 6, 23, .06), 0 2px 6px rgba(2, 6, 23, .06);
    border: 1px solid #edf2f7;
}

.how-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto;
    background: #e8f2f9;
    border-radius: 9999px
}

.how-card h3 {
    margin: 25px 0 2px;
    text-align: center;
    color: #1F5B80;
    font-size: 20px;
}

.how-card p {
    margin: 0;
    text-align: center;
    color: #7E8085;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
}

.benefit-icon img {
    display: inline-block;
    vertical-align: middle;
}

.benefit-icon h3 {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
    color: #2C2E30;
    width: calc(100% - 76px);
}

.benefit-body p {
    color: #7E8085;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

article.benefit {
    width: 38%;
    display: inline-block;
    margin: 25px 50px;
    text-align: left;
    vertical-align: top;
}

.benefits-grid {
    text-align: center;
}

article.why { /* Div [elementor-element] */
    width: 30%;
    background: #FFFFFF;
    mix-blend-mode: normal;
    border: 1px solid #E4E4E4;
    box-shadow: 0px 4px 14px #D8D8D8;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    margin: 0 1%;
}

.why-grid {
    display: block;
    text-align: center;
    margin-top: 56px;
}

.why p.number { /* 98% */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 28px;
    /* identical to box height, or 50% */
    color: #000000;
}

.why p.text {
    color: #7E8085;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
}

section {
    margin-top: 80px;
}

section#how {
    margin-top: 10px;
}

section#faq {
    margin-top: 150px;
}

section#benefits {
}

section {
    margin-top: 80px;
}

section#how {
    margin-top: 10px;
}


.faq h3 {
    font-size: 16px;
    font-weight: 500;
    color: #2C2E30;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

.faq-item-header button {
    float: right;
    width: 30px;
    height: 30px;
    background-color: #EBF3FA;
    border: none;
    border-radius: 8px;
    transition: transform .2s ease;
    vertical-align: middle;
    margin-top: -5px;
    transform: rotate(180deg);
}


.faq-item-header {
    margin-bottom: 15px;
    margin-top: 19px;
}

.faq-item p {
    font-size: 16px;
    color: #2C2E30;
    line-height: 22px;
    margin: 0;
}

.faq-item {
    border-bottom: 2px solid #F6F6F6;
    padding-bottom: 18px;
}

/* Collapse/expand behavior */
.faq-item p {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    transition: margin-top .15s ease;
}

.faq-item.is-open p {
    max-height: 500px;
    margin-top: 36px;
}

/* Chevron rotation when open */
.faq-item.is-open .faq-item-header button {
    transform: rotate(0deg);
}

.faq-item.is-open .faq-item-header {
    /*margin-bottom: 36px;*/
}

section#hero {
    margin-top: 0;
}

.hero-content {
    text-align: center;
}

.logo-container {
    text-align: left;
}

.here-text {
    font-family: Roboto;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    margin-top: 10px;
    margin-bottom: -20px;
}

.hero-content h3 {
    font-family: Roboto;
    font-weight: 200;
    font-size: 29px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 37px;
}

.scan-page .hero .section-wrapper {
    padding-top: 40px;
}

.scan-page h1.hero-title {
    margin-top: 15px;
    margin-bottom: 0px;
}

.scan-page .hero-content h3 {
    margin-bottom: 20px;
}

section#footer {
    background-color: #626774;
    padding: 65px 100px;
    color: #F6F6F6;
}

section#footer ul {
    list-style: none;
    padding: 0;
    vertical-align: top;
}

.footer-list-title {
    color: #A1ACB3;
    margin-bottom: 50px;
    font-size: 16px;
}

.footer-container a, .footer-item-value {
    font-size: 16px;
    font-weight: 300;
    color: #F6F6F6;
    text-decoration: none;
}

section#footer ul li {
    margin-bottom: 32px;
}

.footer-container-top-left {
    width: 70%;
    display: inline-block;
}

.footer-container-top-right {
    width: 25%;
    display: inline-block;
    vertical-align: top;
}

.footer-container-top-left ul {
    width: 29%;
    display: inline-block;
    margin-right: 3%;
}

.footer-item-title img {
    margin-right: 6px;
}

.footer-item-title {
    margin-bottom: 13px;
}

.footer-item-value {
    line-height: 28px;
}

.footer-container-top {
    border-bottom: 1px solid #7E8085;
    margin-bottom: 65px;
}

.footer-container-list {
    display: inline-block;
    width: 24%;
    vertical-align: top;
}

.footer-list-title {
    text-transform: uppercase;
}

.list-social-medias a {
    display: inline-block;
    width: 30%;
    margin-bottom: 15px;
}

.footer-container-list.list-social-medias {
    width: 190px;
}

.benefits .container {
    width: min(1160px, 85%);
}

.visible-xs {
    display: none !important;
}

@media screen and (min-width: 300px) and (max-width: 1400px) {
    .hero h1 {
        font-size: 54px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero-features li {
        margin-right: 16px;
    }

    .hero a.btn.btn-primary.btn-lg {
        width: 340px;
    }

    .container {
        width: min(1160px, 90%);
    }

    .hero-features li img {
        width: 40px;
    }

    .hero-features li span {
        font-size: 12px;
    }
}

@media screen and (min-width: 300px) and (max-width: 1145px) {
    .hero h1 {
        font-size: 46px;
        margin-bottom: 20px;
    }

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

    .hero-features {
        margin-top: 30px;
    }

    .hero-cta-block {
        margin-top: 60px;
    }

    .hero a.btn.btn-primary.btn-lg {
        width: 310px;
    }

    article.why {
        min-height: 210px;
        vertical-align: top;
    }
}

@media screen and (min-width: 300px) and (max-width: 1000px) {
    article.benefit {
        display: block;
        width: 70%;
        max-width: 340px;
        margin: 0 auto 60px;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        width: 100%;
    }

    .hero h1 {
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }

    .hero h2 {
        text-align: center;
        margin: 50px auto;
    }

    ul.hero-features {
        text-align: center;
    }

    .hero-cta-block {
        text-align: center;
    }

    ul.hero-notes {
        text-align: left;
    }

    .header-ctas .btn {
        line-height: 17px;
        width: 120px;
    }

    .main-nav ul {
        gap: 15px;
        white-space: nowrap;
    }

}

@media screen and (min-width: 300px) and (max-width: 767px) {
    section#footer {
        padding: 30px;
    }

    .footer-container-top-right{
        width: 100%;
    }

    .visible-xs {
        display: block !important;
    }

    .hidden-xs {
        display: none !important;
    }

    .hero h1 {
        width: 90%;
    }

    .hero h2 {
        width: 90%;
        margin: 35px 0;
        font-size: 24px;
        font-weight: 500;
        color: #D3D3D3;
    }

    ul.hero-features {
        display: none;
    }

    a.btn.btn-primary.btn-lg {
        width: 80% !important;
        max-width: 336px;
    }

    ul.hero-notes {
        display: block;
        margin: 40px auto 0;
        padding: 0;
        width: 206px;
    }

    .hero-notes li {
        text-align: left;
    }

    .hero .section-wrapper {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .how-card {
    }

    .how-grid {
        display: block;
        width: 80%;
        margin: 0px auto;
    }

    .how-grid article.how-card {
        margin-bottom: 50px;
    }

    section {
        margin-top: 0;
    }

    .benefit-body p {
        text-align: center;
    }

    section#why {
        display: none;
    }

    .faq h3 {
        width: calc(100% - 80px);
    }

    p.section-intro {
        font-size: 18px;
    }

    article.benefit {
        width: 90%;
        max-width: none;
    }

    .footer-container-top-left {
        width: 100%;
    }

    .footer-container-top-left ul {
        width: 100%;
    }

    .footer-container-list {
        width: 100%;
    }

    .header-xs {
        margin-bottom: 40px;
    }

    .header-xs{
        display: block;
    }

    /* Mobile menu panel */
    .mobile-menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: 82%;
        max-width: 380px;
        background: #ffffff;
        box-shadow: -6px 0 24px rgba(0,0,0,.15);
        transform: translateX(100%);
        transition: transform .25s ease;
        padding: 20px 18px 28px;
        z-index: 9999;
        display: block;
    }

    .mobile-menu.open { transform: translateX(0); }

    .mobile-menu ul { list-style: none; margin: 0; padding: 0; }
    .mobile-menu li { margin: 10px 0; }
    .mobile-menu a { text-decoration: none; color: #2C2E30; font-weight: 600; }
    .mobile-menu .menu-ctas .btn { display: block; width: 100%; margin: 8px 0; }

    .mobile-menu-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 0;
        background: #EBF3FA;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}