/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
    color: #101426;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================
   PAGE
========================================= */

.page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================
   COLORS
========================================= */

:root {
    --purple: #4d247b;
    --purple-dark: #28105d;
    --purple-light: #6530a6;
    --purple-button: #54249b;
    --text: #101426;
    --gray: #5c6174;
    --border: #e8e4ef;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    height: 216px;
    background:
        linear-gradient(
            105deg,
            #3a146c 0%,
            #321064 45%,
            #1e0752 100%
        );

    color: #fff;
    overflow: hidden;

    border-bottom: 12px solid #66309d;
}


/* Decorative curved lines */

.hero-lines {
    position: absolute;
    right: -80px;
    top: -150px;

    width: 760px;
    height: 420px;

    opacity: .25;

    background:
        repeating-radial-gradient(
            ellipse at 100% 100%,
            transparent 0,
            transparent 15px,
            rgba(255,255,255,.25) 16px,
            transparent 17px,
            transparent 30px
        );

    transform: rotate(-15deg);
}


/* Hero content */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   LOGO
========================================= */

.logo {
    position: absolute;
    left: 50px;
    top: 42px;
}

.shield {
    width: 65px;
    height: 65px;

    color: #fff;

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

    font-size: 62px;
}


/* =========================================
   HERO TEXT
========================================= */

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

.hero-text h1 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    margin-top: 18px;

    font-size: 29px;
    line-height: 1.3;

    font-weight: 500;
}


/* =========================================
   MAIN CONTENT
========================================= */

.main-content {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 88%,
            #faf8ff 100%
        );

    padding: 52px 5.3% 38px;
}


/* =========================================
   CARDS CONTAINER
========================================= */

.cards-container {
    max-width: 1370px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}


/* =========================================
   CARD
========================================= */

.card {
    min-height: 604px;

    background: #fff;

    border: 1px solid #e7e2ee;
    border-radius: 20px;

    box-shadow:
        0 8px 18px rgba(54, 25, 91, .10);

    padding: 20px 45px 48px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================
   STEP ICON
========================================= */

.step-icon {
    position: relative;

    width: 132px;
    height: 132px;

    margin-top: 0;
    margin-bottom: 27px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #6937b5,
            #351078
        );

    color: #fff;

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

    font-size: 65px;

    box-shadow:
        0 7px 13px rgba(48, 20, 91, .18);
}


/* User icon */

.step-icon .fa-user {
    font-size: 58px;
}


/* Check */

.check {
    position: absolute;

    right: -3px;
    bottom: 4px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #fff;

    color: #4d247b;

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

    font-size: 21px;

    border: 3px solid #4d247b;
}


/* Download icon */

.download-icon {
    font-size: 61px;
}

.download-arrow {
    position: absolute;

    font-size: 30px;

    left: 50%;
    top: 49%;

    transform: translate(-50%, -50%);
}


/* =========================================
   STEP HEADING
========================================= */

.step-heading {
    width: 100%;

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

    gap: 27px;

    margin-bottom: 20px;
}

.step-heading .line {
    height: 2px;
    background: #d8d6df;

    flex: 1;
}

.step-number {
    color: #5b2ba1;

    font-size: 25px;
    line-height: 1;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   CARD TITLE
========================================= */

.card h2 {
    color: #101426;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 26px;
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    color: #5c6174;

    font-size: 25px;
    line-height: 1.55;

    font-weight: 500;

    min-height: 116px;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.primary-button {
    width: 435px;
    max-width: 100%;

    min-height: 62px;

    margin-top: 14px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #7137b9,
            #4a168c
        );

    color: #fff;

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

    gap: 28px;

    font-size: 25px;
    font-weight: 700;

    box-shadow:
        0 7px 10px rgba(65, 27, 115, .25);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.primary-button i {
    font-size: 28px;
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 16px rgba(65, 27, 115, .30);
}


/* =========================================
   APP BUTTONS
========================================= */

.app-buttons {
    width: 100%;

    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 13px;
}

.app-button {
    width: 265px;
    height: 105px;

    background: #fff;

    border: 1px solid #e6e2ed;

    border-radius: 14px;

    box-shadow:
        0 7px 12px rgba(49, 26, 87, .12);

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

    gap: 19px;

    color: #17172a;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.app-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 18px rgba(49, 26, 87, .18);
}


/* App logo */

.app-logo {
    color: #5a28a0;

    font-size: 52px;
}


/* App text */

.app-text {
    display: flex;
    flex-direction: column;

    text-align: left;
}

.app-text span {
    font-size: 16px;

    color: #555866;

    margin-bottom: 2px;
}

.app-text strong {
    font-size: 27px;

    line-height: 1.1;

    font-weight: 800;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background:
        linear-gradient(
            90deg,
            #f4effd,
            #f9f7ff
        );

    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Footer inner */

.footer-inner {
    display: flex;
    align-items: center;

    gap: 26px;
}


/* Help icon */

.help-icon {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #e6d9f8;

    color: #5b25a0;

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

    font-size: 30px;
}


/* Footer text */

.help-text {
    display: flex;
    align-items: center;

    gap: 16px;

    color: #424455;

    font-size: 21px;
}

.help-text strong {
    color: #101426;

    font-size: 21px;

    font-weight: 800;
}

.help-text a {
    color: #57239b;

    font-weight: 600;
}

.help-text a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero-text h1 {
        font-size: 52px;
    }

    .hero-text p {
        font-size: 24px;
    }

    .card h2 {
        font-size: 34px;
    }

    .description {
        font-size: 21px;
    }

    .primary-button {
        font-size: 21px;
    }

    .app-buttons {
        gap: 12px;
    }

    .app-button {
        width: 230px;
    }

    .help-text {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .hero {
        height: auto;
        min-height: 200px;

        border-bottom-width: 8px;
    }

    .logo {
        left: 25px;
        top: 25px;
    }

    .shield {
        font-size: 45px;
    }

    .hero-content {
        padding: 40px 20px 35px;
    }

    .hero-text {
        margin-top: 20px;
    }

    .hero-text h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 19px;
        margin-top: 13px;
    }


    .main-content {
        padding: 30px 18px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card {
        min-height: auto;

        padding: 25px 22px 35px;
    }

    .step-icon {
        width: 110px;
        height: 110px;

        font-size: 53px;
    }

    .step-heading {
        gap: 12px;
    }

    .step-number {
        font-size: 20px;
    }

    .card h2 {
        font-size: 31px;

        margin-bottom: 18px;
    }

    .description {
        font-size: 18px;

        min-height: auto;

        line-height: 1.55;
    }

    .primary-button {
        width: 100%;

        margin-top: 28px;

        font-size: 19px;

        min-height: 58px;
    }

    .app-buttons {
        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-top: 28px;
    }

    .app-button {
        width: 100%;
        max-width: 340px;

        height: 90px;
    }

    .footer {
        padding: 25px 20px;
    }

    .footer-inner {
        align-items: flex-start;

        gap: 15px;
    }

    .help-icon {
        width: 52px;
        height: 52px;

        min-width: 52px;
    }

    .help-text {
        display: block;

        font-size: 15px;

        line-height: 1.6;
    }

    .help-text strong {
        display: block;

        margin-bottom: 3px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .logo {
        left: 18px;
        top: 20px;
    }

    .shield {
        font-size: 38px;
    }

    .card h2 {
        font-size: 27px;
    }

    .description {
        font-size: 16px;
    }

    .primary-button {
        font-size: 17px;
        gap: 15px;
    }

    .app-text strong {
        font-size: 23px;
    }

    .app-text span {
        font-size: 14px;
    }
}


/* =========================================
   APP DOWNLOAD PAGE
========================================= */

.app-download-page {
    min-height: 650px;

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

    padding-top: 55px;
    padding-bottom: 55px;
}


/* =========================================
   DOWNLOAD CONTAINER
========================================= */

.download-container {

    width: 850px;
    max-width: 100%;

    background: #ffffff;

    border: 1px solid #e7e2ee;

    border-radius: 22px;

    box-shadow:
        0 8px 22px rgba(54, 25, 91, .10);

    padding: 42px 70px 50px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================
   PLATFORM ICON
========================================= */

.download-icon {

    width: 125px;
    height: 125px;

    margin-bottom: 28px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #6937b5,
            #351078
        );

    color: #ffffff;

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

    font-size: 62px;

    box-shadow:
        0 7px 14px rgba(48, 20, 91, .20);
}


/* =========================================
   STEP HEADING
========================================= */

.download-container .step-heading {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 20px;
}

.download-container .step-heading .line {

    height: 2px;

    background: #d8d6df;

    flex: 1;
}

.download-container .step-number {

    color: #5b2ba1;

    font-size: 20px;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   TITLE
========================================= */

.download-container h2 {

    color: #101426;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 20px;
}


/* =========================================
   DESCRIPTION
========================================= */

.download-container .description {

    min-height: auto;

    color: #5c6174;

    font-size: 21px;

    line-height: 1.55;

    font-weight: 500;

    margin-bottom: 30px;
}


/* =========================================
   STORE BUTTONS
========================================= */

.download-buttons {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 17px;
}


/* =========================================
   STORE BUTTON
========================================= */

.store-button {

    width: 100%;

    max-width: 610px;

    min-height: 92px;

    padding: 15px 25px;

    background: #ffffff;

    border: 1px solid #e2deea;

    border-radius: 14px;

    box-shadow:
        0 6px 13px rgba(49, 26, 87, .12);

    display: flex;

    align-items: center;

    text-align: left;

    color: #17172a;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.store-button:hover {

    transform: translateY(-2px);

    border-color: #bca7d7;

    box-shadow:
        0 10px 20px rgba(49, 26, 87, .18);
}


/* Store icon */

.store-icon {

    width: 60px;

    color: #5a28a0;

    font-size: 46px;

    text-align: center;

    margin-right: 20px;
}


/* Store text */

.store-text {

    flex: 1;

    display: flex;

    flex-direction: column;
}

.store-text span {

    color: #555866;

    font-size: 15px;

    margin-bottom: 3px;
}

.store-text strong {

    color: #17172a;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 800;
}


/* Arrow */

.store-button .arrow {

    color: #5a28a0;

    font-size: 23px;

    margin-left: 15px;
}


/* =========================================
   BACK BUTTON
========================================= */

.back-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 32px;

    color: #57239b;

    font-size: 16px;

    font-weight: 700;
}

.back-button:hover {

    text-decoration: underline;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .app-download-page {

        padding: 30px 18px;
    }

    .download-container {

        padding: 30px 22px 35px;

        border-radius: 18px;
    }

    .download-icon {

        width: 105px;
        height: 105px;

        font-size: 52px;

        margin-bottom: 24px;
    }

    .download-container .step-heading {

        gap: 12px;
    }

    .download-container .step-number {

        font-size: 16px;
    }

    .download-container h2 {

        font-size: 31px;
    }

    .download-container .description {

        font-size: 18px;
    }

    .store-button {

        min-height: 82px;

        padding: 12px 17px;
    }

    .store-icon {

        width: 48px;

        font-size: 38px;

        margin-right: 13px;
    }

    .store-text strong {

        font-size: 20px;
    }

    .store-text span {

        font-size: 13px;
    }

    .store-button .arrow {

        font-size: 19px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .download-container {

        padding: 25px 17px 30px;
    }

    .download-container h2 {

        font-size: 27px;
    }

    .download-container .description {

        font-size: 16px;
    }

    .download-container .step-number {

        font-size: 13px;
    }

    .store-button {

        padding: 12px;
    }

    .store-icon {

        width: 42px;

        font-size: 34px;

        margin-right: 9px;
    }

    .store-text strong {

        font-size: 18px;
    }

    .store-button .arrow {

        margin-left: 8px;

        font-size: 17px;
    }
}