/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {

    font-family: 'Inter', sans-serif;

    background: #f7faff;

    color: #111b3d;

    overflow-x: hidden;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue: #1769ff;

    --blue-dark: #0c2c73;

    --purple: #6538f5;

    --green: #1fc978;

    --orange: #ff9f1c;

    --text: #111b3d;

    --muted: #65708b;

    --white: #ffffff;

    --border: rgba(20, 70, 150, 0.08);

}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(1180px, 92%);

    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    height: 78px;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid var(--border);

    position: relative;

    z-index: 100;
}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;
}


.logo-icon {

    width: 42px;

    height: 42px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 20px;

    background: linear-gradient(
        135deg,
        #1769ff,
        #6538f5
    );

    box-shadow:
        0 8px 20px rgba(23, 105, 255, .22);
}


.logo-text {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1px;

    color: #10224d;
}


.logo-text span {

    background: linear-gradient(
        135deg,
        #1769ff,
        #6538f5
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =====================================================
   HEADER DOWNLOAD
===================================================== */

.header-download {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 20px;

    color: white;

    background: linear-gradient(
        135deg,
        #1769ff,
        #4b4df5
    );

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(23, 105, 255, .22);

    transition: .3s ease;
}


.header-download:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(23, 105, 255, .30);
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: calc(100dvh - 78px - 110px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(70, 150, 255, .16),
            transparent 32%
        ),

        radial-gradient(
            circle at 20% 70%,
            rgba(101, 56, 245, .10),
            transparent 28%
        ),

        #f7faff;
}


.hero-inner {

    min-height: calc(100dvh - 78px - 110px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 40px;

    padding: 30px 0;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 5;
}


/* =====================================================
   BADGE
===================================================== */

.small-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 16px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(255,255,255,.85);

    border: 1px solid rgba(23,105,255,.12);

    color: var(--blue);

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(30, 80, 160, .06);
}


/* =====================================================
   HERO TITLE
===================================================== */

.hero h1 {

    max-width: 650px;

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1.03;

    letter-spacing: -2.8px;

    font-weight: 800;

    color: #0d1f49;

    margin-bottom: 22px;
}


.hero h1 span {

    display: block;

    background: linear-gradient(
        100deg,
        #1769ff,
        #6538f5
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width: 600px;

    font-size: 17px;

    line-height: 1.75;

    color: var(--muted);

    margin-bottom: 25px;
}


/* =====================================================
   FEATURES
===================================================== */

.features {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 27px;
}


.feature {

    display: flex;

    align-items: center;

    gap: 9px;

    padding-right: 8px;
}


.feature-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: white;

    font-size: 16px;
}


.feature-icon.green {

    background: linear-gradient(
        135deg,
        #18c878,
        #08a968
    );
}


.feature-icon.purple {

    background: linear-gradient(
        135deg,
        #7549ff,
        #5531d8
    );
}


.feature-icon.orange {

    background: linear-gradient(
        135deg,
        #ffb22e,
        #ff8a00
    );
}


.feature strong {

    display: block;

    font-size: 12px;

    color: #26365b;
}


.feature small {

    display: block;

    font-size: 10px;

    color: #7d87a0;

    margin-top: 2px;
}


/* =====================================================
   MAIN DOWNLOAD
===================================================== */

.main-download {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    min-height: 58px;

    padding: 7px 20px 7px 8px;

    border-radius: 17px;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    background: linear-gradient(
        100deg,
        #1687ff,
        #4e31f5
    );

    box-shadow:
        0 15px 35px rgba(50, 82, 245, .25);

    transition: .3s ease;
}


.main-download:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(50, 82, 245, .34);
}


.android-circle {

    width: 44px;

    height: 44px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: #35b86b;

    font-size: 23px;
}


.arrow {

    margin-left: 8px;

    transition: .3s;
}


.main-download:hover .arrow {

    transform: translateX(5px);
}


/* =====================================================
   TRUST
===================================================== */

.trust-line {

    margin-top: 13px;

    color: #687692;

    font-size: 11px;
}


.trust-line i {

    color: #1769ff;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    position: relative;

    height: min(620px, 75vh);

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =====================================================
   IMAGE WRAPPER
===================================================== */

.image-wrapper {

    position: relative;

    z-index: 3;

    width: min(500px, 100%);

    display: flex;

    justify-content: center;
}


.hero-image {

    width: 100%;

    max-height: 600px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px
            rgba(27, 65, 150, .18)
        );

    animation: floating 4s ease-in-out infinite;
}


@keyframes floating {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(45px);

    z-index: 0;
}


.glow-one {

    width: 250px;

    height: 250px;

    background: rgba(23, 105, 255, .20);

    top: 10%;

    right: 10%;
}


.glow-two {

    width: 200px;

    height: 200px;

    background: rgba(101, 56, 245, .17);

    bottom: 10%;

    left: 15%;
}


/* =====================================================
   SPEECH BUBBLES
===================================================== */

.speech {

    position: absolute;

    z-index: 8;

    padding: 11px 17px;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 12px 30px rgba(25, 60, 120, .13);

    font-size: 13px;

    font-weight: 700;
}


.speech-one {

    top: 17%;

    left: 7%;

    color: #1769ff;
}


.speech-two {

    right: 3%;

    top: 34%;

    color: #1bbd70;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    /* min-height: 110px; */

    background: #071b43;

    color: white;
}


.footer-inner {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-logo .logo-icon {

    width: 38px;

    height: 38px;

    font-size: 17px;
}


.footer-logo .logo-text {

    color: white;

    font-size: 20px;
}


.footer-brand p {

    display: none;

    color: #9eabc5;

    font-size: 10px;
}


.footer-links {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    font-size: 12px;
}


.footer-links a {

    color: #d5dded;

    text-decoration: none;

    transition: .2s;
}


.footer-links a:hover {

    color: #55a5ff;
}


.footer-links span {

    color: #64799f;
}


.footer-bottom {

    min-height: 35px;

    border-top: 1px solid rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8d9dbb;

    font-size: 10px;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1000px) {

    .hero-inner {

        gap: 20px;
    }


    .hero h1 {

        font-size: clamp(
            38px,
            5.5vw,
            55px
        );
    }


    .hero-description {

        font-size: 15px;

        line-height: 1.65;
    }


    .hero-visual {

        height: 500px;
    }


    .speech-one {

        left: 0;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    body {

        overflow-x: hidden;
    }


    .header {

        height: 68px;
    }


    .logo-icon {

        width: 38px;

        height: 38px;

        font-size: 17px;
    }


    .logo-text {

        font-size: 22px;
    }


    .header-download {

        padding: 9px 13px;

        font-size: 12px;
    }


    .hero {

        min-height: auto;

        padding: 35px 0;
    }


    .hero-inner {

        min-height: auto;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        padding: 0;
    }


    .hero h1 {

        font-size: clamp(
            36px,
            5.5vw,
            48px
        );

        letter-spacing: -1.8px;
    }


    .hero-description {

        font-size: 14px;

        line-height: 1.6;
    }


    .features {

        gap: 8px;

        flex-direction: column;
    }


    .hero-visual {

        height: 430px;
    }


    .image-wrapper {

        width: 100%;
    }


    .hero-image {

        max-height: 430px;
    }


    .speech {

        font-size: 11px;

        padding: 8px 12px;
    }


    .footer-inner {

        padding: 10px 0;

        flex-direction: column;

        justify-content: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .header {

        height: 62px;
    }


    .container {

        width: calc(100% - 28px);
    }


    .logo-icon {

        width: 35px;

        height: 35px;

        border-radius: 10px;
    }


    .logo-text {

        font-size: 20px;
    }


    .header-download {

        padding: 8px 11px;

        border-radius: 8px;

        font-size: 11px;
    }


    .hero {

        padding: 25px 0 20px;
    }


    .hero-inner {

        display: flex;

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .small-badge {

        font-size: 10px;

        padding: 7px 12px;

        margin-bottom: 13px;
    }


    .hero h1 {

        font-size: 39px;

        line-height: 1.05;

        letter-spacing: -1.5px;

        margin-bottom: 14px;
    }


    .hero-description {

        font-size: 13px;

        line-height: 1.55;

        max-width: 400px;

        margin-bottom: 18px;
    }


    .features {

        width: 100%;

        flex-direction: row;

        justify-content: center;

        gap: 7px;

        margin-bottom: 18px;
    }


    .feature {

        flex-direction: column;

        text-align: center;

        gap: 5px;

        flex: 1;
    }


    .feature-icon {

        width: 36px;

        height: 36px;

        border-radius: 10px;

        font-size: 13px;
    }


    .feature strong {

        font-size: 9px;
    }


    .feature small {

        font-size: 8px;
    }


    .main-download {

        width: min(310px, 100%);

        justify-content: center;

        font-size: 12px;

        min-height: 50px;

        border-radius: 14px;
    }


    .android-circle {

        width: 38px;

        height: 38px;

        font-size: 19px;
    }


    .trust-line {

        font-size: 9px;

        margin-top: 9px;
    }


    .hero-visual {

        width: 100%;

        height: 330px;

        order: 2;
    }


    .hero-image {

        max-height: 330px;
    }


    .speech-one {

        left: 3%;

        top: 10%;
    }


    .speech-two {

        right: 2%;

        top: 28%;
    }


    .footer {

        min-height: 105px;
    }


    .footer-inner {

        min-height: 70px;

        gap: 8px;
    }


    .footer-links {

        gap: 7px;

        font-size: 9px;
    }


    .footer-links span {

        display: none;
    }


    .footer-bottom {

        min-height: 35px;

        font-size: 9px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .header {

        height: 58px;
    }


    .logo-text {

        font-size: 18px;
    }


    .logo-icon {

        width: 32px;

        height: 32px;

        font-size: 15px;
    }


    .header-download {

        padding: 7px 9px;

        font-size: 10px;
    }


    .hero {

        padding-top: 18px;
    }


    .hero h1 {

        font-size: 34px;
    }


    .hero-description {

        font-size: 12px;

        max-width: 340px;
    }


    .hero-visual {

        height: 280px;
    }


    .hero-image {

        max-height: 280px;
    }


    .features {

        margin-bottom: 13px;
    }


    .feature strong {

        font-size: 8px;
    }


    .feature small {

        font-size: 7px;
    }


    .footer-links {

        font-size: 8px;
    }

}

/* =====================================================
   FEATURES SECTION
===================================================== */

.features-section {

    position: relative;

    padding: 75px 0 85px;

    background: #ffffff;

    overflow: hidden;
}


/* Soft background decoration */

.features-section::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(23, 105, 255, .06);

    filter: blur(30px);

    top: -140px;

    left: -120px;

}


.features-section::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background: rgba(101, 56, 245, .05);

    filter: blur(30px);

    bottom: -130px;

    right: -100px;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 650px;

    margin: 0 auto 45px;
}


.section-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 15px;

    border-radius: 30px;

    background: #f0f5ff;

    color: #1769ff;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 14px;
}


.section-heading h2 {

    color: #0d1f49;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 13px;
}


.section-heading h2 span {

    display: block;

    background: linear-gradient(
        100deg,
        #1769ff,
        #6538f5
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.section-heading p {

    color: #6b7690;

    font-size: 14px;

    line-height: 1.7;

    max-width: 570px;

    margin: auto;
}


/* =====================================================
   FOUR COLUMN GRID
===================================================== */

.feature-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =====================================================
   FEATURE CARD
===================================================== */

.feature-card {

    position: relative;

    min-height: 270px;

    padding: 27px 23px;

    background: #ffffff;

    border: 1px solid #e8edf6;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(25, 60, 120, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.feature-card:hover {

    transform: translateY(-7px);

    border-color: rgba(23, 105, 255, .18);

    box-shadow:
        0 20px 45px rgba(25, 60, 120, .11);
}


/* =====================================================
   ICON
===================================================== */

.big-feature-icon {

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    color: white;

    font-size: 21px;

    margin-bottom: 21px;
}


.blue-icon {

    background: linear-gradient(
        135deg,
        #2080ff,
        #1761ed
    );

    box-shadow:
        0 9px 20px rgba(32, 128, 255, .20);
}


.purple-icon {

    background: linear-gradient(
        135deg,
        #8057ff,
        #5c35dc
    );

    box-shadow:
        0 9px 20px rgba(101, 56, 245, .20);
}


.green-icon {

    background: linear-gradient(
        135deg,
        #26d586,
        #0db66b
    );

    box-shadow:
        0 9px 20px rgba(31, 201, 120, .20);
}


.orange-icon {

    background: linear-gradient(
        135deg,
        #ffb638,
        #ff8b08
    );

    box-shadow:
        0 9px 20px rgba(255, 159, 28, .20);
}


/* =====================================================
   CARD TEXT
===================================================== */

.feature-card h3 {

    color: #142653;

    font-size: 17px;

    margin-bottom: 10px;
}


.feature-card p {

    color: #71809c;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   NUMBER
===================================================== */

.feature-number {

    position: absolute;

    right: 17px;

    bottom: 10px;

    font-size: 45px;

    line-height: 1;

    font-weight: 800;

    color: #f2f5fa;

    transition: .3s;
}


.feature-card:hover .feature-number {

    color: #e9effb;

    transform: translateY(-4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .features-section {

        padding: 60px 0 65px;
    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 16px;
    }


    .feature-card {

        min-height: 245px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .features-section {

        padding: 50px 0 55px;
    }


    .section-heading {

        margin-bottom: 30px;
    }


    .section-heading h2 {

        font-size: 29px;

        letter-spacing: -1px;
    }


    .section-heading p {

        font-size: 12px;

        padding: 0 8px;
    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 11px;
    }


    .feature-card {

        min-height: 220px;

        padding: 20px 16px;

        border-radius: 16px;
    }


    .big-feature-icon {

        width: 45px;

        height: 45px;

        border-radius: 12px;

        font-size: 17px;

        margin-bottom: 15px;
    }


    .feature-card h3 {

        font-size: 14px;

        margin-bottom: 7px;
    }


    .feature-card p {

        font-size: 10px;

        line-height: 1.55;
    }


    .feature-number {

        font-size: 32px;

        right: 12px;

        bottom: 8px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .feature-grid {

        gap: 9px;
    }


    .feature-card {

        min-height: 205px;

        padding: 17px 13px;
    }


    .feature-card h3 {

        font-size: 12px;
    }


    .feature-card p {

        font-size: 9px;
    }

}



