/* ===================================================================
   App Download Page — Scoped styles (ad-*)
   =================================================================== */

:root {
    --ad-primary: var(--primary, #6610f2);
    --ad-primary-rgb: var(--primary-rgb, 102, 16, 242);
    --ad-accent: #4f46e5;
    --ad-bg: #ffffff;
    --ad-surface: #f7f8fc;
    --ad-border: #e5e7eb;
    --ad-text: #1f2937;
    --ad-text-muted: #6b7280;
    --ad-radius: 16px;
    --ad-radius-sm: 10px;
    --ad-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --ad-shadow-lg: 0 8px 30px rgba(0,0,0,.1);
    --ad-transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Hero ─────────────────────────────────────────────────────────── */

.ad-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--ad-primary-rgb),.06) 0%, rgba(var(--ad-primary-rgb),.02) 100%);
    padding: 80px 0 60px;
}

.ad-hero__inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ad-hero__content {
    flex: 1;
    min-width: 0;
}

.ad-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--ad-primary);
    background: rgba(var(--ad-primary-rgb),.1);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.ad-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ad-text);
    line-height: 1.15;
    margin: 0 0 16px;
}

.ad-hero__title span {
    color: var(--ad-primary);
}

.ad-hero__desc {
    font-size: 1.1rem;
    color: var(--ad-text-muted);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 520px;
}

.ad-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ad-hero__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.ad-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--ad-text-muted);
    font-weight: 500;
}

.ad-hero__meta-item i {
    font-size: 1rem;
    color: var(--ad-primary);
}

.ad-hero__mockup {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    justify-content: center;
}

.ad-hero__phone {
    width: 260px;
    border-radius: 28px;
    box-shadow: var(--ad-shadow-lg);
}

/* ── Shared Button ────────────────────────────────────────────────── */

.ad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--ad-transition);
}

.ad-btn--primary {
    color: #fff;
    background: var(--ad-primary);
    border-color: var(--ad-primary);
}

.ad-btn--primary:hover {
    background: var(--ad-accent);
    border-color: var(--ad-accent);
    box-shadow: 0 4px 16px rgba(var(--ad-primary-rgb),.3);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.ad-btn--outline {
    color: var(--ad-primary);
    background: transparent;
    border-color: var(--ad-primary);
}

.ad-btn--outline:hover {
    background: rgba(var(--ad-primary-rgb),.06);
    text-decoration: none;
    color: var(--ad-primary);
}

.ad-btn i {
    font-size: 1.2rem;
}

.ad-btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ── Section Shared ───────────────────────────────────────────────── */

.ad-section {
    padding: 64px 0;
}

.ad-section--surface {
    background: var(--ad-surface);
}

.ad-section__head {
    text-align: center;
    margin-bottom: 40px;
}

.ad-section__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ad-text);
    margin: 0 0 10px;
}

.ad-section__lead {
    font-size: 1rem;
    color: var(--ad-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Features Grid ────────────────────────────────────────────────── */

.ad-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ad-feature {
    background: var(--ad-bg);
    border: 1px solid var(--ad-border);
    border-radius: var(--ad-radius);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow var(--ad-transition), transform var(--ad-transition);
}

.ad-feature:hover {
    box-shadow: var(--ad-shadow-lg);
    transform: translateY(-3px);
}

.ad-feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--ad-primary-rgb),.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ad-feature__icon i {
    font-size: 1.6rem;
    color: var(--ad-primary);
}

.ad-feature__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ad-text);
    margin: 0 0 6px;
}

.ad-feature__desc {
    font-size: .82rem;
    color: var(--ad-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ── Screenshots ──────────────────────────────────────────────────── */

.ad-screenshots {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
}

.ad-screenshots::-webkit-scrollbar {
    height: 6px;
}

.ad-screenshots::-webkit-scrollbar-track {
    background: var(--ad-border);
    border-radius: 3px;
}

.ad-screenshots::-webkit-scrollbar-thumb {
    background: rgba(var(--ad-primary-rgb),.25);
    border-radius: 3px;
}

.ad-screenshot {
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: center;
}

.ad-screenshot img {
    width: 100%;
    border-radius: var(--ad-radius);
    box-shadow: var(--ad-shadow);
    border: 1px solid var(--ad-border);
}

/* ── Safety Banner ────────────────────────────────────────────────── */

.ad-safety {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid #a7f3d0;
    border-radius: var(--ad-radius);
    padding: 20px 24px;
    margin-bottom: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.ad-safety__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.ad-safety__title {
    font-size: .92rem;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 4px;
}
.ad-safety__desc {
    font-size: .8rem;
    color: #047857;
    line-height: 1.6;
    margin: 0;
}

/* ── Zigzag Timeline ──────────────────────────────────────────────── */

.ad-zz {
    position: relative;
    margin: 0 auto 40px;
    padding: 0;
}

/* Centre vertical line */
.ad-zz__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ad-border);
    transform: translateX(-50%);
}

/* Each row spans the full width */
.ad-zz__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 32px;
}
.ad-zz__item:last-child { margin-bottom: 0; }

/* Left item: card on the left half, empty right half */
.ad-zz__item--left {
    justify-content: flex-start;
    padding-right: calc(50% + 28px);
}
/* Right item: card on the right half, empty left half */
.ad-zz__item--right {
    justify-content: flex-end;
    padding-left: calc(50% + 28px);
}

/* Marker sits dead-centre */
.ad-zz__marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    border-radius: 50%;
    background: var(--ad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 0 5px var(--ad-surface, #f8fafc), 0 0 0 7px rgba(var(--ad-primary-rgb), .15);
    transition: transform .2s;
}
.ad-zz__item:hover .ad-zz__marker {
    transform: scale(1.1);
}
.ad-zz__marker span {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1;
}
.ad-zz__item--success .ad-zz__marker {
    background: #10b981;
    box-shadow: 0 0 0 5px var(--ad-surface, #f8fafc), 0 0 0 7px rgba(16, 185, 129, .2);
}
.ad-zz__item--attention .ad-zz__marker {
    background: #f59e0b;
    box-shadow: 0 0 0 5px var(--ad-surface, #f8fafc), 0 0 0 7px rgba(245, 158, 11, .2);
}

/* Connector arrow — left cards get a right-pointing nub, right cards get left */
.ad-zz__card::before {
    content: '';
    position: absolute;
    top: 28px;
    width: 0;
    height: 0;
    border-style: solid;
}
.ad-zz__item--left .ad-zz__card::before {
    right: -8px;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent var(--ad-border);
}
.ad-zz__item--left .ad-zz__card::after {
    content: '';
    position: absolute;
    top: 29px;
    right: -7px;
    width: 0; height: 0;
    border-style: solid;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent var(--ad-bg);
}
.ad-zz__item--right .ad-zz__card::before {
    left: -8px;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--ad-border) transparent transparent;
}
.ad-zz__item--right .ad-zz__card::after {
    content: '';
    position: absolute;
    top: 29px;
    left: -7px;
    width: 0; height: 0;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent var(--ad-bg) transparent transparent;
}

/* Card itself */
.ad-zz__card {
    position: relative;
    background: var(--ad-bg);
    border: 1px solid var(--ad-border);
    border-radius: var(--ad-radius);
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    transition: box-shadow .25s, border-color .25s, transform .25s;
}
.ad-zz__card:hover {
    border-color: rgba(var(--ad-primary-rgb), .3);
    box-shadow: 0 6px 24px rgba(var(--ad-primary-rgb), .08);
    transform: translateY(-2px);
}
.ad-zz__item--attention .ad-zz__card {
    border-color: #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fef3c7 60%, #fff);
}
.ad-zz__item--attention .ad-zz__card::after {
    border-color: transparent transparent transparent #fffbeb;
}
.ad-zz__item--attention.ad-zz__item--right .ad-zz__card::after {
    border-color: transparent #fffbeb transparent transparent;
}
.ad-zz__item--success .ad-zz__card {
    border-color: #a7f3d0;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4 60%, #fff);
}
.ad-zz__item--success .ad-zz__card::after {
    border-color: transparent transparent transparent #ecfdf5;
}
.ad-zz__item--success.ad-zz__item--right .ad-zz__card::after {
    border-color: transparent #ecfdf5 transparent transparent;
}

/* Icon box */
.ad-zz__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(var(--ad-primary-rgb), .08);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.ad-zz__item--attention .ad-zz__icon {
    background: rgba(245, 158, 11, .12);
    color: #d97706;
}
.ad-zz__item--success .ad-zz__icon {
    background: rgba(16, 185, 129, .12);
    color: #059669;
}

/* Text content */
.ad-zz__body { flex: 1; min-width: 0; }
.ad-zz__title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ad-heading, var(--ad-text));
    margin: 0 0 6px;
}
.ad-zz__desc {
    font-size: .8rem;
    color: var(--ad-text-muted);
    line-height: 1.6;
    margin: 0 0 10px;
}
.ad-zz__desc:last-child { margin-bottom: 0; }

/* Hint pill */
.ad-zz__hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .76rem;
    color: var(--ad-text-muted);
    background: rgba(var(--ad-primary-rgb), .04);
    border-radius: 8px;
    padding: 8px 12px;
    line-height: 1.5;
}
.ad-zz__hint i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.ad-zz__hint--safe {
    background: rgba(16, 185, 129, .06);
}
.ad-zz__hint--safe i { color: #10b981; }

/* Settings path breadcrumb */
.ad-zz__path {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.ad-zz__path-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ad-text);
}
.ad-zz__path-item i { font-size: .85rem; color: var(--ad-primary); }
.ad-zz__path > i { color: var(--ad-text-muted); font-size: .7rem; }

/* ── Trust Badges ─────────────────────────────────────────────────── */

.ad-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.ad-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ad-trust-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--ad-primary-rgb),.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-trust-item__icon i {
    font-size: 1.3rem;
    color: var(--ad-primary);
}

.ad-trust-item__text {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ad-text);
}

.ad-trust-item__sub {
    font-size: .72rem;
    color: var(--ad-text-muted);
    margin: 0;
}

/* ── App Information Card ─────────────────────────────────────────── */

.ad-app-info {
    max-width: 860px;
    margin: 0 auto;
}
.ad-app-info__card {
    background: var(--ad-bg);
    border: 1px solid var(--ad-border);
    border-radius: var(--ad-radius);
    overflow: hidden;
}
.ad-app-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.ad-app-info__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ad-border);
    border-right: 1px solid var(--ad-border);
}
.ad-app-info__row:nth-child(3n) {
    border-right: none;
}
.ad-app-info__row:nth-last-child(-n+3) {
    border-bottom: none;
}
.ad-app-info__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(var(--ad-primary-rgb), .07);
    color: var(--ad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ad-app-info__label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ad-text-muted);
    margin-bottom: 1px;
}
.ad-app-info__value {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ad-text);
}

.ad-app-info__contact {
    border-top: 1px solid var(--ad-border);
    padding: 16px 20px;
    background: rgba(var(--ad-primary-rgb), .02);
    text-align: center;
}
.ad-app-info__contact-label {
    font-size: .76rem;
    color: var(--ad-text-muted);
    margin-bottom: 8px;
}
.ad-app-info__contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ad-app-info__contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ad-primary);
    text-decoration: none;
    transition: opacity .2s;
}
.ad-app-info__contact-links a:hover {
    opacity: .75;
}
.ad-app-info__contact-links a i {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .ad-app-info__grid {
        grid-template-columns: 1fr 1fr;
    }
    .ad-app-info__row:nth-child(3n) {
        border-right: 1px solid var(--ad-border);
    }
    .ad-app-info__row:nth-child(2n) {
        border-right: none;
    }
    .ad-app-info__row:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--ad-border);
    }
    .ad-app-info__row:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .ad-app-info__row {
        padding: 12px 14px;
        gap: 10px;
    }
    .ad-app-info__icon {
        width: 30px;
        height: 30px;
        font-size: .95rem;
    }
    .ad-app-info__label {
        font-size: .65rem;
    }
    .ad-app-info__value {
        font-size: .78rem;
    }
}

/* ── QR Code / Desktop CTA ────────────────────────────────────────── */

.ad-hero__desktop-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}
.ad-qr {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--ad-border);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-qr img {
    display: block;
    border-radius: 6px;
}
.ad-qr--light {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.2);
}
.ad-qr__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ad-qr__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ad-qr__label {
    font-size: .82rem;
    color: var(--ad-text-muted);
    line-height: 1.5;
    margin: 0;
}
.ad-qr__label--light {
    color: rgba(255,255,255,.75);
}

.ad-cta__desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.ad-btn--sm {
    padding: 8px 18px;
    font-size: .8rem;
}

/* ── CTA Banner ───────────────────────────────────────────────────── */

.ad-cta {
    background: linear-gradient(135deg, var(--ad-primary) 0%, var(--ad-accent) 100%);
    border-radius: var(--ad-radius);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.ad-cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.ad-cta__desc {
    font-size: 1rem;
    opacity: .85;
    margin: 0 0 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.ad-cta .ad-btn--primary {
    background: #fff;
    color: var(--ad-primary);
    border-color: #fff;
}

.ad-cta .ad-btn--primary:hover {
    background: rgba(255,255,255,.9);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

/* ── Tip Box ──────────────────────────────────────────────────────── */

.ad-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(var(--ad-primary-rgb),.05);
    border: 1px solid rgba(var(--ad-primary-rgb),.12);
    border-radius: var(--ad-radius-sm);
    padding: 16px 20px;
    margin-top: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ad-tip__icon {
    flex-shrink: 0;
    color: var(--ad-primary);
    font-size: 1.3rem;
    margin-top: 2px;
}

.ad-tip__text {
    font-size: .82rem;
    color: var(--ad-text);
    line-height: 1.6;
    margin: 0;
}

.ad-tip__text strong {
    color: var(--ad-primary);
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 991px) {
    /* Tighter zigzag for tablets */
    .ad-zz__item--left { padding-right: calc(50% + 22px); }
    .ad-zz__item--right { padding-left: calc(50% + 22px); }
    .ad-zz__marker { width: 36px; height: 36px; margin-left: -18px; }
    .ad-zz__item { margin-bottom: 24px; }
    .ad-zz__card { padding: 18px 16px; }
}

@media (max-width: 991px) {
    .ad-hero__inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .ad-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ad-hero__actions {
        justify-content: center;
    }

    .ad-hero__mockup {
        width: 220px;
    }

    .ad-hero__phone {
        width: 200px;
    }

    .ad-hero__title {
        font-size: 2rem;
    }

    .ad-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ad-hero {
        padding: 48px 0 40px;
    }

    .ad-hero__mockup {
        width: 120px;
    }
    .ad-hero__phone {
        width: 100px;
        border-radius: 18px;
    }

    .ad-hero__title {
        font-size: 1.6rem;
    }

    .ad-hero__desc {
        font-size: .95rem;
    }

    .ad-section {
        padding: 40px 0;
    }

    .ad-section__title {
        font-size: 1.35rem;
    }

    .ad-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ad-feature {
        padding: 14px 12px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .ad-feature__icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin: 0 0 4px;
    }
    .ad-feature__icon i {
        font-size: 1.1rem;
    }
    .ad-feature__title {
        font-size: .8rem;
        margin: 0 0 2px;
    }
    .ad-feature__desc {
        font-size: .7rem;
        line-height: 1.45;
    }

    .ad-safety {
        flex-direction: column;
        text-align: center;
        padding: 18px 16px;
        align-items: center;
    }

    /* Zigzag → single-column on mobile */
    .ad-zz__line {
        left: 18px;
        transform: none;
    }
    .ad-zz__item--left,
    .ad-zz__item--right {
        justify-content: flex-start;
        padding-left: 52px;
        padding-right: 0;
    }
    .ad-zz__marker {
        left: 0;
        margin-left: 0;
        width: 36px;
        height: 36px;
        top: 16px;
    }
    .ad-zz__marker span { font-size: .78rem; }

    /* Hide arrow connectors on mobile */
    .ad-zz__card::before,
    .ad-zz__card::after {
        display: none;
    }
    .ad-zz__card {
        padding: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .ad-screenshot {
        width: 180px;
    }

    .ad-cta {
        padding: 32px 20px;
    }

    .ad-cta__title {
        font-size: 1.35rem;
    }

    .ad-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ad-btn--lg {
        padding: 12px 28px;
        font-size: .9rem;
    }
}

@media (max-width: 575px) {
    .ad-zz__item--left,
    .ad-zz__item--right {
        padding-left: 44px;
    }
    .ad-zz__line { left: 14px; }
    .ad-zz__marker {
        width: 30px;
        height: 30px;
        top: 14px;
    }
    .ad-zz__marker span { font-size: .72rem; }
    .ad-zz__item { margin-bottom: 24px; }

    .ad-trust {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .ad-zz__path { gap: 4px; }
    .ad-zz__path-item {
        font-size: .68rem;
        padding: 2px 8px;
    }

    .ad-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .ad-hero__actions .ad-btn {
        width: 100%;
    }
}

/* ── Sticky Mobile Download Bar ─────────────────────────────── */
.ad-sticky-bar {
    position: fixed;
    bottom: 54px;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid var(--ad-border, #e5e7eb);
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
    padding: 8px 16px;
}
.ad-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 540px;
    margin: 0 auto;
}
.ad-sticky-bar__info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ad-sticky-bar__icon {
    font-size: 1.4rem;
    color: var(--ad-primary, #e91e8c);
}
.ad-sticky-bar__text {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ad-heading, #0f172a);
}
.ad-sticky-bar__btn {
    padding: 7px 18px !important;
    font-size: .78rem !important;
    border-radius: 20px !important;
    white-space: nowrap;
}
