/* ==========================================================
   iProply Mobile App — Public showcase page (2025 premium look)
   Pairs with mobile-app.php. Navy + gold brand, Inter/Outfit.
   ========================================================== */

:root {
    --mapp-navy: #041427;
    --mapp-navy-2: #0a1c36;
    --mapp-navy-3: #0f2447;
    --mapp-gold: #facc15;
    --mapp-gold-deep: #ca8a04;
    --mapp-gold-grad: linear-gradient(135deg, #facc15, #ca8a04);
    --mapp-ink: #1b2a41;
    --mapp-muted: #5b6b80;
    --mapp-line: rgba(4, 20, 39, .10);
    --mapp-radius: 20px;
}

.mapp-section {
    padding: 96px 0;
}

.mapp-section--soft {
    background: #f6f8fc;
}

.mapp-section--dark {
    background: linear-gradient(150deg, rgba(4,20,39,.98), rgba(10,28,54,.96));
    color: #fff;
}

.mapp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.mapp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 .72rem/1.2 var(--font-family);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mapp-gold-deep);
}

.mapp-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: var(--mapp-gold-grad);
}

.mapp-head--center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.mapp-head--center .mapp-eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: var(--mapp-gold-grad);
}

.mapp-head h2 {
    font: 700 clamp(1.7rem, 3.4vw, 2.6rem)/1.15 var(--heading-font, 'Outfit');
    color: var(--mapp-ink);
    margin: 14px 0 12px;
}

.mapp-head p {
    color: var(--mapp-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

.mapp-head--dark h2 { color: #fff; }
.mapp-head--dark p { color: rgba(255,255,255,.72); }

/* ── Hero ─────────────────────────────────────────────────── */
.mapp-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(150deg, rgba(4,20,39,.97), rgba(10,28,54,.94));
}

.mapp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
}

.mapp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
}

.mapp-hero__glow {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,204,21,.16), transparent 65%);
    top: -180px;
    right: -140px;
}

.mapp-hero__glow--2 {
    left: -180px;
    bottom: -220px;
    top: auto;
    right: auto;
    background: radial-gradient(circle, rgba(37,99,235,.18), transparent 65%);
}

.mapp-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 96px;
}

.mapp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(250,204,21,.4);
    background: rgba(250,204,21,.1);
    color: var(--mapp-gold);
    font: 600 .78rem/1 var(--font-family);
    letter-spacing: .04em;
    margin-bottom: 22px;
}

.mapp-hero__badge i {
    animation: mapp-pulse 2.2s ease-in-out infinite;
}

@keyframes mapp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.85); }
}

.mapp-hero h1 {
    font: 700 clamp(2rem, 4.6vw, 3.3rem)/1.12 var(--heading-font, 'Outfit');
    margin: 0 0 18px;
    letter-spacing: -.02em;
}

.mapp-hero h1 .gold {
    background: var(--mapp-gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mapp-hero__sub {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 0 30px;
}

.mapp-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.mapp-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.mapp-store-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(250,204,21,.6);
    background: rgba(255,255,255,.1);
}

.mapp-store-btn--primary {
    border: 0;
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    box-shadow: 0 14px 34px rgba(202,138,4,.3);
}

.mapp-store-btn--primary:hover {
    background: linear-gradient(135deg, #ffd84d, #d9a00b);
    color: var(--mapp-navy);
}

.mapp-store-btn--soon {
    cursor: not-allowed;
    opacity: .78;
    filter: grayscale(.35);
}

.mapp-store-btn--soon:hover {
    transform: none;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

.mapp-store-btn i { font-size: 1.5rem; }

.mapp-store-btn small {
    display: block;
    font: 500 .62rem/1.1 var(--font-family);
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
}

.mapp-store-btn strong {
    display: block;
    font: 700 .98rem/1.2 var(--font-family);
}

.mapp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mapp-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    font: 600 .76rem/1 var(--font-family);
    color: rgba(255,255,255,.85);
}

.mapp-hero__trust i { color: var(--mapp-gold); }

/* Phone mockup */
.mapp-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.mapp-phone {
    position: relative;
    width: 300px;
    max-width: 86vw;
    aspect-ratio: 9 / 18.8;
    border-radius: 42px;
    padding: 12px;
    background: linear-gradient(160deg, #1c2f4e, #0a1c36 55%, #050e1e);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.06);
    transform: rotateY(-12deg) rotateX(4deg);
    animation: mapp-float 6s ease-in-out infinite;
}

@keyframes mapp-float {
    0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(4deg) translateY(-14px); }
}

.mapp-phone::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 22px;
    border-radius: 999px;
    background: #050e1e;
    z-index: 3;
}

.mapp-phone__screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #f6f8fc;
}

.mapp-phone__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mapp-phone__screen-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 12px;
    color: var(--mapp-ink);
    background: linear-gradient(160deg, #ffffff, #eef2f8);
    font: 600 .85rem/1.4 var(--font-family);
    padding: 0 22px;
}

.mapp-phone__screen-placeholder i {
    font-size: 2.6rem;
    color: var(--mapp-gold-deep);
}

.mapp-phone__screen-placeholder small { color: var(--mapp-muted); font-weight: 500; }

/* QR card */
.mapp-qr {
    position: absolute;
    right: -18px;
    bottom: 22px;
    width: 132px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    color: var(--mapp-ink);
    text-align: center;
    box-shadow: 0 20px 44px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.4);
}

.mapp-qr img, .mapp-qr .mapp-qr__placeholder {
    width: 96px;
    height: 96px;
    margin: 0 auto 8px;
    border-radius: 8px;
    display: block;
    object-fit: contain;
    background: #fff;
}

.mapp-qr__placeholder {
    display: grid !important;
    place-items: center;
    background: linear-gradient(135deg, #ffffff, #f1f3f7) !important;
    color: var(--mapp-navy-2);
}

.mapp-qr__placeholder i { font-size: 2.1rem; }

.mapp-qr strong {
    display: block;
    font: 700 .72rem/1.3 var(--font-family);
}

.mapp-qr span {
    display: block;
    font: 500 .62rem/1.3 var(--font-family);
    color: var(--mapp-muted);
}

/* ── Section quick links ──────────────────────────────────── */
.mapp-quick {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

.mapp-quick__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 18px 24px;
    border-radius: var(--mapp-radius);
    background: #fff;
    box-shadow: 0 18px 44px rgba(4,20,39,.12);
    border: 1px solid var(--mapp-line);
}

.mapp-quick__bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f6f8fc;
    color: var(--mapp-ink);
    font: 600 .8rem/1 var(--font-family);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mapp-quick__bar a:hover {
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    transform: translateY(-2px);
}

.mapp-quick__bar i { color: var(--mapp-gold-deep); }
.mapp-quick__bar a:hover i { color: var(--mapp-navy); }

/* ── Feature groups ───────────────────────────────────────── */
.mapp-feature-group {
    margin-bottom: 72px;
}

.mapp-feature-group:last-child { margin-bottom: 0; }

.mapp-feature-group__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.mapp-feature-group__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    font-size: 1.15rem;
    box-shadow: 0 10px 24px rgba(202,138,4,.3);
}

.mapp-feature-group h3 {
    font: 700 1.35rem/1.2 var(--heading-font, 'Outfit');
    color: var(--mapp-ink);
    margin: 0;
}

.mapp-feature-group__head p {
    margin: 3px 0 0;
    font: 500 .82rem/1.4 var(--font-family);
    color: var(--mapp-muted);
    letter-spacing: .02em;
}

.mapp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mapp-feature-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: var(--mapp-radius);
    background: #fff;
    border: 1px solid var(--mapp-line);
    box-shadow: 0 6px 20px rgba(4,20,39,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mapp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(4,20,39,.1);
    border-color: rgba(202,138,4,.35);
}

.mapp-feature-card__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(250,204,21,.16);
    color: var(--mapp-gold-deep);
    font-size: 1.05rem;
}

.mapp-feature-card h4 {
    margin: 0 0 8px;
    font: 700 1.02rem/1.25 var(--heading-font, 'Outfit');
    color: var(--mapp-ink);
}

.mapp-feature-card p {
    margin: 0 0 12px;
    font-size: .88rem;
    line-height: 1.6;
    color: var(--mapp-muted);
}

.mapp-feature-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mapp-feature-card ul li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f2f5fa;
    font: 600 .7rem/1 var(--font-family);
    color: var(--mapp-navy-2);
}

.mapp-feature-card ul li i {
    color: var(--mapp-gold-deep);
    font-size: .6rem;
}

/* ── Why choose ───────────────────────────────────────────── */
.mapp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mapp-why-card {
    padding: 30px 26px;
    border-radius: var(--mapp-radius);
    background: #fff;
    border: 1px solid var(--mapp-line);
    box-shadow: 0 6px 20px rgba(4,20,39,.05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.mapp-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(4,20,39,.1);
}

.mapp-why-card i {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    font-size: 1.15rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(202,138,4,.3);
}

.mapp-why-card h3 {
    margin: 0 0 10px;
    font: 700 1.1rem/1.25 var(--heading-font, 'Outfit');
    color: var(--mapp-ink);
}

.mapp-why-card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.65;
    color: var(--mapp-muted);
}

/* ── How it works ─────────────────────────────────────────── */
.mapp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: mapp-step;
}

.mapp-step {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: var(--mapp-radius);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.mapp-step:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08);
    border-color: rgba(250,204,21,.4);
}

.mapp-step__num {
    counter-increment: mapp-step;
    position: absolute;
    top: 20px;
    right: 22px;
    font: 800 2.1rem/1 var(--heading-font, 'Outfit');
    color: rgba(250,204,21,.28);
}

.mapp-step__num::before { content: "0" counter(mapp-step); }

.mapp-step i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 12px 28px rgba(202,138,4,.35);
}

.mapp-step h3 {
    margin: 0 0 10px;
    font: 700 1.12rem/1.25 var(--heading-font, 'Outfit');
    color: #fff;
}

.mapp-step p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
}

/* ── Gallery ──────────────────────────────────────────────── */
.mapp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mapp-gallery__item {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mapp-line);
    box-shadow: 0 12px 30px rgba(4,20,39,.1);
    position: relative;
}

.mapp-gallery__item img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

.mapp-gallery__item--empty {
    aspect-ratio: 9 / 16;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 10px;
    color: var(--mapp-muted);
    background: linear-gradient(160deg, #ffffff, #eef2f8);
    font: 600 .8rem/1.4 var(--font-family);
    padding: 20px;
}

.mapp-gallery__item--empty i { font-size: 2rem; color: var(--mapp-gold-deep); }

.mapp-gallery__label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(4,20,39,.78);
    color: #fff;
    font: 600 .72rem/1 var(--font-family);
    backdrop-filter: blur(6px);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.mapp-faq {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.mapp-faq__item {
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--mapp-line);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mapp-faq__item.is-open {
    border-color: rgba(202,138,4,.4);
    box-shadow: 0 14px 34px rgba(4,20,39,.08);
}

.mapp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: 700 .98rem/1.4 var(--heading-font, 'Outfit');
    color: var(--mapp-ink);
    text-align: left;
}

.mapp-faq__q i {
    flex: 0 0 auto;
    color: var(--mapp-gold-deep);
    transition: transform .25s ease;
}

.mapp-faq__item.is-open .mapp-faq__q i { transform: rotate(180deg); }

.mapp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mapp-faq__a-inner {
    padding: 0 22px 20px;
    font-size: .92rem;
    line-height: 1.7;
    color: var(--mapp-muted);
}

/* ── CTA ──────────────────────────────────────────────────── */
.mapp-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 72px 40px;
    text-align: center;
    color: #fff;
    background: linear-gradient(150deg, rgba(4,20,39,.98), rgba(10,28,54,.96));
    box-shadow: 0 30px 70px rgba(4,20,39,.35);
}

.mapp-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: .16;
}

.mapp-cta__glow {
    position: absolute;
    z-index: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,204,21,.2), transparent 65%);
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
}

.mapp-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.mapp-cta h2 {
    margin: 0 0 14px;
    font: 700 clamp(1.6rem, 3.2vw, 2.4rem)/1.15 var(--heading-font, 'Outfit');
}

.mapp-cta p {
    margin: 0 auto 30px;
    color: rgba(255,255,255,.78);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 520px;
}

.mapp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.mapp-cta__actions .mapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font: 700 .92rem/1 var(--font-family);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mapp-cta__actions .mapp-btn:hover { transform: translateY(-2px); }

.mapp-btn--gold {
    background: var(--mapp-gold-grad);
    color: var(--mapp-navy);
    box-shadow: 0 14px 34px rgba(202,138,4,.35);
}

.mapp-btn--gold:hover { box-shadow: 0 20px 44px rgba(202,138,4,.45); }

.mapp-btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.mapp-btn--ghost:hover { background: rgba(255,255,255,.14); }

/* ── Reveal animation ─────────────────────────────────────── */
.mapp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.mapp-reveal.in-view {
    opacity: 1;
    transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mapp-feature-grid,
    .mapp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .mapp-gallery { grid-template-columns: repeat(2, 1fr); }
    .mapp-steps { grid-template-columns: repeat(2, 1fr); }
    .mapp-hero__inner { grid-template-columns: 1fr; gap: 56px; padding-top: 64px; }
    .mapp-qr { right: 4px; }
}

@media (max-width: 640px) {
    .mapp-section { padding: 64px 0; }
    .mapp-feature-grid,
    .mapp-why-grid,
    .mapp-steps,
    .mapp-gallery { grid-template-columns: 1fr; }
    .mapp-hero__inner { padding-top: 48px; padding-bottom: 72px; }
    .mapp-phone { transform: none; animation: none; }
    .mapp-cta { padding: 52px 24px; }
    .mapp-store-row { flex-direction: column; align-items: stretch; }
    .mapp-store-btn { justify-content: flex-start; }
}


/* ── Screenshot presentation (device frames + captions) ────── */

/* The hero mockup is a <figure> so the screenshot carries a caption. */
.mapp-phone {
    margin: 0;
}

.mapp-phone__screen picture {
    display: block;
    width: 100%;
    height: 100%;
}

.mapp-phone__caption {
    position: absolute;
    left: 50%;
    bottom: -2.6rem;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .82);
    font: 600 .72rem/1 var(--font-family);
    white-space: nowrap;
    backdrop-filter: blur(6px);
}

/* Gallery screenshots sit in a phone-shaped frame so full screens show
   without the 9/16 crop that clipped the top and bottom of each capture. */
.mapp-gallery__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 20px;
    background: #0a1c36;
}

.mapp-gallery__frame picture,
.mapp-gallery__frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Optional per-feature screenshot inside a feature card. */
.mapp-feature-card__shot {
    margin-top: 14px;
    max-width: 190px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mapp-line);
    background: #0a1c36;
}

.mapp-feature-card__shot picture,
.mapp-feature-card__shot img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .mapp-phone__caption { bottom: -2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .mapp-phone { animation: none; }
}
