@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    color: #1a1a1a;
    width: 100%;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 900px; 
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.top-section{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    @media (max-width: 767px) {
       padding: 0px 15px;
       display: block;
       height: auto;
    }
}
.download-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin: auto;
    .logo-section {
        text-align: center;
        padding: 15px 20px 9px;
    }
    .logo-section img {
        max-height: 75px;
        width: auto;
    }
    .divider {
        height: 1px;
        background: #ededed;
    }
    .content {
        text-align: center;
        padding: 20px 40px 0;
    }
    .content h1 {
        font-size: 52px;
        font-weight: 700;
        color: #000;
        margin-bottom: 8px;
    }
    .powered {
        color: #666;
        font-size: 12px;
        margin-bottom: 40px;
    }
    .description {
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 16px;
        line-height: 1.8;
        color: #1a1a1a;
    }
    .continue-btn {
        display: block;
        width: 65%;
        margin: 0 auto 15px;
        background: #5dbc3d;
        color: #fff;
        text-decoration: none;
        font-size: 44px;
        font-weight: 700;
        padding: 22px 20px;
        border-radius: 12px;
        transition: 0.3s ease;
            text-transform: uppercase;

        animation: continueButtonEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
    }
    .continue-btn:hover {
        background: #53aa37;
    }
    .terms {
        font-size: 12px;
        color: #1a1a1a;
        margin-bottom: 10px;
    }
    .terms a {
        color: #8eb3e8;
        text-decoration: none;
    }
    .terms a:hover {
        text-decoration: underline;
    }
    @media (max-width: 767px) {
        .content {
            padding: 20px;
        }

        .content h1 {
            font-size: 34px;
        }

        .description {
            font-size: 16px;
        }

        .continue-btn {
            width: 100%;
            font-size: 32px;
            padding: 22px;
        }
    }
}

@keyframes continueButtonEntrance {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.92);
    }
    70% {
        opacity: 1;
        transform: translateY(-4px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .download-card .continue-btn {
        animation: none;
    }
}


.steps-container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    border-radius: 80px;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    @media (min-width: 768px) and (max-width: 991px) {
        padding: 18px 0px;
    }
    @media (max-width: 767px) {
       padding: 20px 0px;
       width: 100%;
    }
}
.step {
    text-align: center;
    width: 220px;
    @media (min-width: 768px) and (max-width: 991px) {
        width: 210px;
    }
}
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #d1d5db;
    color: #c4c7ce;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: #fff;
}
.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 8px;
}
.step-text {
    font-size: 14px;
    line-height: 1.4;
    color: #d1d5db;
}
.step.active .step-circle {
    border-color: #2f5fe3;
    color: #2f5fe3;
}
.step.active .step-title,
.step.active .step-text {
    color: #111;
}
.arrow {
    position: relative;
    width: 70px;
    height: 2px;
    background: #a9adb6;
    margin: 0 15px;
    @media (min-width: 768px) and (max-width: 991px) {
        width: 30px;
        height: 2px;
    }
}
.arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #a9adb6;
}
@media (max-width: 767px) {
    .steps-container {
        flex-direction: column;
        border-radius: 25px;
        gap: 20px;
    }
    .arrow {
        width: 2px;
        height: 20px;
    }
    .arrow::after {
        top: auto;
        bottom: -8px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid #a9adb6;
        border-bottom: 0;
    }
}
.features-section {
    background: #eef5ff;
    padding: 80px 40px;
    margin-top: 20px;
    @media (max-width: 1024px) {
       padding: 80px 0px;
    }
    .container{
        max-width: 1266px;
        margin: 0 auto;
    }
    h2 {
        font-size: 32px;
        font-weight: 700;
        color: #111827;
        text-align: center;
        margin-bottom: 60px;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
        @media (min-width: 768px) and (max-width: 1024px) {
           grid-template-columns: repeat(3, 1fr);
           gap: 2rem;
        }
        @media (max-width: 767px) {
            grid-template-columns: auto;
            gap: 2rem;
        }
    }
    .feature-icon{
        @media (max-width: 767px) {
            text-align: center;
        }
    }
    .feature-item img {
        height: 60px;
        margin-bottom: 20px;
        filter: invert(30%) sepia(84%) saturate(1912%) hue-rotate(200deg) brightness(89%) contrast(92%);
    }
    .feature-item h3 {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 10px;
        @media (max-width: 767px) {
            font-size: 16px;
            text-align: center;
        }
    }
    .feature-item p {
        font-size: 14px;
        line-height: 1.7;
        color: #374151;
        @media (max-width: 767px) {
            font-size: 16px;
            text-align: center;
        }
    }
}
.about-section{
    padding: 80px 40px;
    @media (max-width: 1024px) {
       padding: 80px 0px;
    }
    .container{
        max-width: 1266px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 4rem;
        .item{
            flex: 1;
            display: flex;
            align-items: center;
            gap: 4rem;
            &:nth-child(even) {
                @media (max-width: 767px) {
                    flex-direction: column-reverse;
                }
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                gap: 2rem;
            }
            @media (max-width: 767px) {
                flex-direction: column;
                gap: 2rem;
            }
            .image {
                flex: 1;
            }
            .image img {
                width: 100%;
                border-radius: 18px;
            }
            .content {
                flex: 1;
            }
            .content h2 {
                font-size: 32px;
                font-weight: 700;
                color: #111827;
                margin-bottom: 20px;
                span{
                    color: #1560BD;
                }
            }
            .content h3 {
                margin-bottom: 10px;
            }
            .content p {
                font-size: 16px;
                line-height: 1.8;
                color: #374151;
                margin-bottom: 15px;
            }
        }
    }
    @media (max-width: 767px) {
        .about-section .container .item {
            flex-direction: column; 
        }
    }
}
.download-section{
    background: linear-gradient(90deg, #000328, #00458E);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    @media (max-width: 1024px) {
       padding: 60px 0px;
    }
    .container{
        max-width: 900px;
        margin: 0 auto;
    }
    h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    p {
        font-size: 16px;
        line-height: 1.8;
        a{
            color: #8eb3e8;
            text-decoration: none;
        }
    }
    .continue-btn {        
        display: inline-block;
        background: #5dbc3d;
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 700;
        padding: 20px 40px;
        border-radius: 12px;
        margin:30px 0px 20px;
        transition: 0.3s ease;
        @media (max-width: 767px) {
            padding: 20px 15px;
        }
    }
}
.disclosure-section {
    padding: 60px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    @media (max-width: 1024px) {
       padding: 80px 0px;
    }
    h2{
        font-size: 32px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 30px;
    }
}
.disclosure-section p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
    text-align: left;
    color: #1a1a1a;
}
.disclosure-section a {
    color: #8eb3e8;
    text-decoration: none;
}
.disclosure-section a:hover {    text-decoration: underline;
}
.footer-download{
    background: #f7f7f7;
    padding: 60px 20px;
    color: #1a1a1a;
    text-align: center;
    @media (max-width: 1024px) {
       padding: 60px 0px;
    }
    .container{
        max-width: 900px;
        margin: 0 auto;
    }
    h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    p {
        font-size: 16px;
        line-height: 1.8;
        a{
            color: #8eb3e8;
            text-decoration: none;
        }
    }
    .continue-btn {        
        display: inline-block;
        background: #5dbc3d;
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 700;
        padding: 20px 40px;
        border-radius: 12px;
        margin:30px 0px 20px;
        transition: 0.3s ease;
        @media (max-width: 767px) {
            padding: 20px 15px;
        }
    }
}
.content-privacy{
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    h1 {
        font-size: 32px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 20px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 10px;
    }
    p {
        font-size: 14px;
        line-height: 1.7;
        color: #1a1a1a;
        margin-bottom: 20px;
    }
    a {
        color: #8eb3e8;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
    ul{
        padding-left: 20px;
        margin-bottom: 30px;
        li{
            font-size: 14px;
            line-height: 1.7;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
    }
}