/* =========================
   APP LANDING HERO
========================= */

.app-landing-hero {
    padding: 28px 0 30px;
    background: #f7fbfb;
}

.app-landing-hero__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 42px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #eef8f8 0%, #dff2f1 100%);
    border: 1px solid rgba(22, 184, 181, 0.10);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.app-landing-hero__box::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 184, 181, 0.10) 0%, rgba(22, 184, 181, 0) 72%);
    pointer-events: none;
}

.app-landing-hero__content {
    position: relative;
    z-index: 2;
    flex: 1 1 92%;
 
}

.app-landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(22, 184, 181, 0.10);
    color: #11b6b3;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.app-landing-hero__title {
    margin: 0 0 14px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    color: #143d6b;
}

.app-landing-hero__text {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #5d727d;
}

.app-landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-landing-hero__visual {
    position: relative;
    z-index: 2;
    flex: 1 1 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.app-landing-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(20, 61, 107, 0.14));
    transform: translateX(12px);
}


.app-landing-hero__visual::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(20, 61, 107, 0.16) 0%, rgba(20, 61, 107, 0) 72%);
    filter: blur(8px);
    z-index: -1;
}
/* =========================
   STORE BUTTONS
========================= */

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.store-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.store-btn--apple,
.store-btn--google,
.store-btn--huawei {
    background: #ffffff;
    color: #163b4d;
    border: 1px solid rgba(22, 184, 181, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.store-btn--apple:hover,
.store-btn--google:hover,
.store-btn--huawei:hover {
    color: #16b8b5;
    border-color: rgba(22, 184, 181, 0.20);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
    .app-landing-hero__box {
        gap: 34px;
        padding: 34px 30px;
    }

    .app-landing-hero__title {
        font-size: 42px;
    }

    .app-landing-hero__image {
        max-width: 520px;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .app-landing-hero__box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 24px;
    }

    .app-landing-hero__content {
        max-width: 100%;
    }

    .app-landing-hero__actions {
        justify-content: center;
    }

    .app-landing-hero__visual {
        width: 100%;
    }

    .app-landing-hero__title {
        font-size: 40px;
    }

    .app-landing-hero__image {
        max-width: 560px;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .app-landing-hero {
        padding: 20px 0 18px;
    }

    .app-landing-hero__box {
        padding: 22px 16px;
        border-radius: 22px;
        gap: 18px;
    }

    .app-landing-hero__title {
        font-size: 30px;
    }

    .app-landing-hero__text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .app-landing-hero__image {
        max-width: 60%;
    }

    .store-btn {
        width: 100%;
    }
}

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

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.store-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.store-btn--apple,
.store-btn--google,
.store-btn--huawei {
    background: #ffffff;
    color: #163b4d;
    border: 1px solid rgba(22, 184, 181, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.store-btn--apple:hover,
.store-btn--google:hover,
.store-btn--huawei:hover {
    color: #16b8b5;
    border-color: rgba(22, 184, 181, 0.20);
}

/* =========================
   SECTION HEADING
========================= */

.app-section-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.app-section-heading h2 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #163b4d;
}

.app-section-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #60707b;
}

/* =========================
   BENEFITS
========================= */

.app-benefits-section {
    padding: 26px 0;
    background: #f7fbfb;
}

.app-benefits-row {
    row-gap: 24px;
}

.app-benefit-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(22, 184, 181, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.app-benefit-card__icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #eefbfb 0%, #f8fefe 100%);
    color: #16b8b5;
    font-size: 24px;
}

.app-benefit-card__content h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #163b4d;
}

.app-benefit-card__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #60707b;
}

/* =========================
   STEPS
========================= */

.app-steps-section {
    padding: 28px 0 24px;
    background: #f7fbfb;
}

.app-steps-row {
    row-gap: 24px;
}

.app-step-card {
    position: relative;
    height: 100%;
    padding: 26px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(22, 184, 181, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.app-step-card__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16b8b5 0%, #0fa4a1 100%);
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(22, 184, 181, 0.22);
}

.app-step-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #163b4d;
}

.app-step-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #60707b;
}

/* =========================
   FINAL CTA
========================= */

.app-landing-cta {
    padding: 26px 0 60px;
    background: #f7fbfb;
}

.app-landing-cta__box {
    padding: 34px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eef8f8 0%, #dff2f1 100%);
    border: 1px solid rgba(22, 184, 181, 0.10);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.app-landing-cta__box h2 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #143d6b;
}

.app-landing-cta__box p {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 17px;
    line-height: 1.7;
    color: #5d727d;
}

.app-landing-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
    .app-landing-hero__box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .app-landing-hero__content {
        max-width: 100%;
    }

    .app-landing-hero__actions {
        justify-content: center;
    }

    .app-landing-hero__visual {
        flex: none;
    }

    .app-landing-hero__title {
        font-size: 40px;
    }

    .app-section-heading h2,
    .app-landing-cta__box h2 {
        font-size: 34px;
    }

    .app-benefit-card__content h3,
    .app-step-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .app-landing-hero {
        padding: 20px 0 18px;
    }

    .app-landing-hero__box {
        padding: 20px 16px;
        border-radius: 22px;
        gap: 20px;
    }

    .app-landing-hero__title {
        font-size: 30px;
    }

    .app-landing-hero__text {
        font-size: 15px;
    }

    .app-section-heading {
        margin-bottom: 22px;
    }

    .app-section-heading h2,
    .app-landing-cta__box h2 {
        font-size: 28px;
    }

    .app-section-heading p,
    .app-landing-cta__box p {
        font-size: 15px;
    }

    .app-benefit-card {
        padding: 18px;
        border-radius: 20px;
    }

    .app-benefit-card__icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 20px;
        border-radius: 16px;
    }

    .app-benefit-card__content h3,
    .app-step-card h3 {
        font-size: 20px;
    }

    .app-benefit-card__content p,
    .app-step-card p {
        font-size: 14px;
    }

    .app-step-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .app-step-card__number {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .app-landing-cta {
        padding-bottom: 40px;
    }

    .app-landing-cta__box {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .store-btn {
        width: 100%;
    }
}
