/* Full-bleed duo-tone promo band — no outer top/bottom/left/right padding by
   design (the two columns meet the section edges directly in Figma, each
   handling its own internal padding), unlike the default section padding
   pattern used elsewhere. */
.app-download-cta {
    position: relative;
    overflow: hidden;
    background: var(--color-blush);
}

.app-download-cta__inner {
    width: 100%;
}

.app-download-cta__row {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* ── Left column ────────────────────────────────────────────── */
.app-download-cta__left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex: 0 0 50%;
    background: #9A867A; /* one-off tint from Figma, not in the shared palette */
    padding: 80px 0 80px var(--pad-x);
}

.app-download-cta__left-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(var(--site-max-w) / 2);
    margin-left: auto;
    padding-right: 80px;
}

.app-download-cta__illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.app-download-cta__illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-download-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.app-download-cta__eyebrow {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-light);
}

.app-download-cta__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 60px;
    line-height: 66px;
    color: #FFFFFF; /* Figma "Brand/Dark/White" — distinct from --color-light (cream) */
    max-width: 482px;
}

.app-download-cta__body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF; /* Figma "Brand/Dark/White" — distinct from --color-light (cream) */
    max-width: 482px;
}

.app-download-cta__footer-note {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF; /* Figma "Brand/Dark/White" — distinct from --color-light (cream) */
    max-width: 482px;
}

/* ── Store badges ───────────────────────────────────────────── */
.app-download-cta__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.app-download-cta__badge {
    display: block;
    max-width: 170px;
    transition: var(--transition);
}

.app-download-cta__badge:hover {
    opacity: 0.85;
}

.app-download-cta__badge img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Right column — phone mockup ───────────────────────────────*/
.app-download-cta__right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-end;
    position: relative;
    overflow: hidden;
    /* flex: 0 0 50%; */
    background: var(--color-blush);
}

.app-download-cta__right img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    background-repeat: no-repeat;
}

@media (max-width: 1366px) {
    .app-download-cta__left {
        padding: 60px 0 60px var(--pad-x);
    }

    .app-download-cta__heading {
        font-size: 48px;
        line-height: 54px;
    }
}

@media (max-width: 1024px) {
    .app-download-cta__row {
        flex-direction: column-reverse;
    }

    .app-download-cta__left,
    .app-download-cta__right {
        flex: 1 1 auto;
    }

    .app-download-cta__left {
        padding: var(--pad-y-alt) var(--pad-x);
    }

    .app-download-cta__left-inner {
        max-width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .app-download-cta__illustration {
        display: none;
    }

    .app-download-cta__heading,
    .app-download-cta__body,
    .app-download-cta__footer-note {
        max-width: 100%;
    }

    .app-download-cta__right {
        justify-content: center;
        min-height: 360px;
    }

    .app-download-cta__right img {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .app-download-cta {
        overflow: hidden;
    }

    .app-download-cta__heading {
        font-size: 36px;
        line-height: 42px;
    }

    .app-download-cta__badges {
        gap: 12px;
    }

    .app-download-cta__right {
        min-height: 280px;
        align-self: center;
    }
}
