﻿.stat-circle {
    width: 320px;
    height: 220px;
    border: 1px solid #B6D0E2;
    border-radius: 10%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 44px;
    line-height: 1;
    color: #0aa39a;
    margin-bottom: 18px;
}

.stat-value {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 64px;
    line-height: 1;
    margin: 0;
    color: #111;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.stat-label {
    margin-top: 14px;
    color: rgba(0,0,0,.55);
    font-size: 18px;
}

/* Responsive sizing (your original) */
@media (max-width: 1400px) {
    .stat-circle {
        width: 290px;
        height: 290px;
    }

    .stat-value {
        font-size: 58px;
    }
}

@media (max-width: 1200px) {
    .stat-circle {
        width: 260px;
        height: 260px;
    }

    .stat-value {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .stat-circle {
        width: 240px;
        height: 240px;
    }

    .stat-value {
        font-size: 48px;
    }
}

/* ✅ Mobile horizontal scroll row */
.stats-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 6px 4px 14px;
}

.stats-scroll-inner {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.stats-scroll .stat-circle {
    flex: 0 0 auto; /* don’t shrink */
    width: 280px; /* good mobile card width */
    height: 200px;
}
/* optional: cleaner scroll bar (keeps it usable) */
.stats-scroll::-webkit-scrollbar {
    height: 8px;
}

.stats-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.15);
    border-radius: 20px;
}


.stat-circle:hover {
    box-shadow: 0 1rem 2.2rem rgba(0,0,0,.12) !important;
}





.qa-lang-wrap {
    width: 100%;
    padding: 18px 0 6px;
}

.qa-lang-title {
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-size: 1.15rem;
    text-align: center;
}

/* Desktop grid */
.qa-lang-row {
    display: grid;
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 14px;
    align-items: start;
}


.qa-lang {
    text-decoration: none;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 16px;
    /* Transparent background */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all .2s ease;
}



    .qa-lang:hover {
        transform: translateY(-3px);
        border-color: rgba(47,107,255,.22);
        box-shadow: 0 18px 38px rgba(2,6,23,.10), inset 0 1px 0 rgba(255,255,255,.75);
    }

/* Flag circle container */
.qa-flag {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 10px 22px rgba(47,107,255,.10);
    overflow: hidden; /* important for round mask */
}

    /* SVG image */
    .qa-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* keep flag filling circle */
        display: block;
    }

.qa-lang-name {
    font-weight: 700;
    color: rgba(15,23,42,.78);
    font-size: .92rem;
    text-align: center;
}

/* Mobile: horizontal scroll row */
@media (max-width: 992px) {
    .qa-lang-row {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 6px 2px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .qa-lang {
        min-width: 120px;
        scroll-snap-align: start;
    }

    .qa-lang-row::-webkit-scrollbar {
        height: 8px;
    }

    .qa-lang-row::-webkit-scrollbar-thumb {
        background: rgba(15,23,42,.18);
        border-radius: 999px;
    }
}

.qa-feature {
    transition: transform .15s ease, box-shadow .15s ease;
    border-radius: 20px;
}

    .qa-feature:hover {
        transform: translateY(-2px);
        box-shadow: 0 1rem 2.2rem rgba(0,0,0,.12) !important;
    }

.qa-icon {
    width: 70px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,.08); /* Bootstrap primary soft */
    margin-right: 10px;
}

    .qa-icon i {
        font-size: 26px;
    }

.row.gap-rows > [class*="col-"] {
    margin-bottom: 24px;
}

.row.gap-rows > [class*="col-"] {
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .row.gap-rows > [class*="col-"] {
        margin-bottom: 24px;
    }
}


.borderC1 {
    border: 3px solid #b5c2e5;
}


.qa-screens-marquee {
    --gap: 22px;
    --cardW: 200px; /* screenshot card width */
    --cardH: 410px; /* screenshot card height */
    --speed: 80s; /* lower = faster */
    width: 100%;
    padding: 14px 0;
}


.qa-marquee-mask {
    contain: paint;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.qa-marquee-track {
    display: flex;
    gap: var(--gap);
    width: max-content;
    animation: qaMarquee var(--speed) linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0,0,0);
}


.qa-marquee-set {
    display: flex;
    gap: var(--gap);
}

.qa-marquee-set img {
    width: var(--cardW);
    height: var(--cardH);
    /*object-fit: cover;*/
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 12px 28px rgba(2, 6, 23, .10);
    background: rgba(255,255,255,.02);
    image-rendering: -webkit-optimize-contrast; /* Chrome/Safari */
    image-rendering: crisp-edges; /* fallback */
    -ms-interpolation-mode: nearest-neighbor; /* old IE fallback */
}


@keyframes qaMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--gap) / 2)));
    }
}

/* mobile */
@media (max-width: 576px) {
    .qa-screens-marquee {
        --cardW: 210px;
        --cardH: 420px;
        --gap: 16px;
        --speed: 80s;
    }
}

/* accessibility: stop motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    .qa-marquee-track {
        animation: none;
    }
}

/*.qa-marquee-mask:hover .qa-marquee-track{ animation-play-state: paused; }*/


.qa-tabs-wrap {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(0,0,0,.08);
    overflow: hidden;
}

.qa-tabs-header {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(13,110,253,.06), rgba(13,110,253,0));
}

/* Make tabs look like modern pills and scroll on mobile */
.qa-tabs-nav {
    display: flex;
    gap: .5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: .25rem;
}

    .qa-tabs-nav::-webkit-scrollbar {
        height: 8px;
    }

    .qa-tabs-nav::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.12);
        border-radius: 999px;
    }

    .qa-tabs-nav .nav-link {
        border: 1px solid rgba(0,0,0,.10);
        border-radius: 999px;
        padding: .65rem 1rem;
        white-space: nowrap;
        font-weight: 600;
        color: rgba(0,0,0,.70);
        background: #fff;
        transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    }

        .qa-tabs-nav .nav-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
            border-color: rgba(13,110,253,.35);
        }

        .qa-tabs-nav .nav-link.active {
            border-color: rgba(13,110,253,.55);
            color: #0d6efd;
            box-shadow: 0 .65rem 1.25rem rgba(13,110,253,.18);
        }

.qa-tab-body {
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .qa-tabs-header {
        padding: 1.25rem 1.5rem;
    }

    .qa-tab-body {
        padding: 1.5rem;
    }
}

.qa-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(25,135,84,.10);
    color: #198754;
    font-weight: 700;
    font-size: .9rem;
}

.qa-kahoot-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 .85rem 2.25rem rgba(0,0,0,.10);
    overflow: hidden;
}

.qa-kahoot-head {
    background: linear-gradient(180deg, rgba(13,110,253,.10), rgba(13,110,253,0));
    padding: 1.25rem 1.25rem 0;
}

.qa-kahoot-body {
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .qa-kahoot-head {
        padding: 1.75rem 1.75rem 0;
    }

    .qa-kahoot-body {
        padding: 1.75rem;
    }
}

.qa-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    background: rgba(25,135,84,.12);
    color: #198754;
    border: 1px solid rgba(25,135,84,.18);
}

.qa-check li {
    margin-bottom: 1.15rem;
}

.qa-check i {
    margin-top: .2rem;
}

.qa-mini {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(248,249,250,.8);
}

.qa-tabs-row {
    display: flex;
    width: 100%;
    gap: 12px;
}

.qa-tab {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    /* professional button look */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: .2px;
    border: 1px solid rgba(15,23,42,.14);
    box-shadow: 0 10px 24px rgba(2,6,23,.08), inset 0 1px 0 rgba(255,255,255,.7);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, filter .15s ease;
    user-select: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .qa-tab:focus {
        outline: none;
        box-shadow: 0 0 0 .2rem rgba(59,130,246,.18), 0 10px 24px rgba(2,6,23,.08), inset 0 1px 0 rgba(255,255,255,.7);
    }

    .qa-tab:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(2,6,23,.12), inset 0 1px 0 rgba(255,255,255,.75);
    }

    .qa-tab:active {
        transform: translateY(0);
        filter: brightness(.98);
    }

/* Distinguish by colors */
.qa-tab-1 {
    color: #0b2a12;
    background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.08));
    border-color: rgba(34,197,94,.40);
}

.qa-tab-2 {
    color: #1a1f2d;
    background: linear-gradient(180deg, rgba(99,102,241,.18), rgba(99,102,241,.07));
    border-color: rgba(99,102,241,.40);
}

.qa-tab-3 {
    color: #2a1b0b;
    background: linear-gradient(180deg, rgba(245,158,11,.18), rgba(245,158,11,.07));
    border-color: rgba(245,158,11,.45);
}

.qa-tab-4 {
    color: #2b1020;
    background: linear-gradient(180deg, rgba(236,72,153,.16), rgba(236,72,153,.06));
    border-color: rgba(236,72,153,.40);
}

/* Optional "active" state */
.qa-tab.active {
    border-color: rgba(15,23,42,.22);
    box-shadow: 0 16px 34px rgba(2,6,23,.16), inset 0 1px 0 rgba(255,255,255,.8);
    filter: saturate(1.1);
}

/* Mobile friendly: stack 2x2 (still full width) */
@media (max-width: 576px) {
    .qa-tabs-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .qa-tab {
        flex: 1 1 calc(50% - 5px);
        padding: 12px 10px;
        font-size: 14px;
        border-radius: 14px;
    }
}

.qa-testimonials {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: .25rem .25rem 1rem;
}

    .qa-testimonials::-webkit-scrollbar {
        height: 8px;
    }

    .qa-testimonials::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.14);
        border-radius: 999px;
    }

.qa-testimonials-inner {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.qa-review {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(0,0,0,.10);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .qa-review:hover {
        transform: translateY(-2px);
        box-shadow: 0 1.1rem 2.6rem rgba(0,0,0,.14);
    }

.qa-review-body {
    padding: 1.1rem 1.1rem 1.25rem;
}

.qa-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: .85rem;
}

.qa-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(13,110,253,.20);
}

.qa-name {
    font-weight: 800;
    line-height: 1.1;
}

.qa-meta {
    color: rgba(0,0,0,.55);
    font-size: .9rem;
}

.qa-stars {
    color: #ffc107;
}
/* bootstrap warning */
.qa-quote {
    color: rgba(0,0,0,.75);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Make cards a bit wider on large screens */
@media (min-width: 992px) {
    .qa-review {
        width: 360px;
    }
}

.downloadBtn .app-store-btn {
    min-width:200px;
}


@media screen and (max-device-width: 480px) and (orientation: portrait) {
    .downloadBtn {
        align-items:center;
    }
}


    .app-store-btn img {
        background-color: #000;
        border-radius: 10px;
    }

    .app-store-btn:hover img {
        background-color: blue;
        border-radius: 10px;
    }

    .app-store-btn:hover {
        color: #fff !important;
    }



    .qa-download-card {
        border-radius: 24px;
        border: 1px solid rgba(15,23,42,.10);
        background: radial-gradient(900px 380px at 10% 0%, rgba(99,102,241,.18), transparent 60%), radial-gradient(700px 320px at 90% 20%, rgba(34,197,94,.14), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.40));
        box-shadow: 0 18px 60px rgba(2,6,23,.10), inset 0 1px 0 rgba(255,255,255,.7);
        backdrop-filter: blur(8px);
    }

    .qa-glow {
        position: absolute;
        inset: auto;
        width: 520px;
        height: 520px;
        filter: blur(40px);
        opacity: .35;
        pointer-events: none;
    }

    .qa-glow-1 {
        left: -180px;
        top: -240px;
        background: radial-gradient(circle, rgba(99,102,241,.9), transparent 60%);
    }

    .qa-glow-2 {
        right: -220px;
        bottom: -260px;
        background: radial-gradient(circle, rgba(34,197,94,.85), transparent 60%);
    }

    .qa-badge {
        background: rgba(99,102,241,.14);
        border: 1px solid rgba(99,102,241,.28);
        color: #1f2a5a;
        font-weight: 700;
        padding: .35rem .6rem;
    }

    .qa-mini {
        font-size: 12px;
        letter-spacing: .14em;
        color: rgba(15,23,42,.55);
        font-weight: 700;
    }

    .qa-title {
        font-weight: 900;
        letter-spacing: -0.02em;
        color: #0f172a;
        font-size: clamp(28px, 3.2vw, 40px);
    }

    .qa-sub {
        color: rgba(15,23,42,.72);
        font-size: 16px;
        max-width: 52ch;
        margin: 0;
    }

    /* Store buttons */
    .qa-store-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 16px;
        text-decoration: none;
        border: 1px solid rgba(15,23,42,.12);
        box-shadow: 0 12px 28px rgba(2,6,23,.10), inset 0 1px 0 rgba(255,255,255,.75);
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, filter .15s ease;
        min-height: 56px;
    }

        .qa-store-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 34px rgba(2,6,23,.14), inset 0 1px 0 rgba(255,255,255,.8);
        }

        .qa-store-btn:active {
            transform: translateY(0);
            filter: brightness(.98);
        }

        .qa-store-btn:focus {
            outline: none;
            box-shadow: 0 0 0 .25rem rgba(59,130,246,.18), 0 16px 34px rgba(2,6,23,.14), inset 0 1px 0 rgba(255,255,255,.8);
        }

    .qa-store-text {
        display: flex;
        flex-direction: column;
        line-height: 1.05;
    }

    .qa-store-small {
        font-size: 12px;
        color: rgba(15,23,42,.62);
        font-weight: 700;
    }

    .qa-store-big {
        font-size: 18px;
        color: #0f172a;
        font-weight: 900;
        letter-spacing: -0.01em;
    }

    /* Apple */
    .qa-store-apple {
        background: linear-gradient(180deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
        border-color: rgba(15,23,42,.18);
    }

    .qa-ic {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: rgba(15,23,42,.08);
        color: #0f172a;
        font-size: 20px;
        font-weight: 900;
    }

    /* Google Play */
    .qa-store-play {
        background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(99,102,241,.06));
        border-color: rgba(34,197,94,.26);
    }

    .qa-gp-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(99,102,241,.95));
        box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
        position: relative;
    }

        .qa-gp-icon::after {
            content: "";
            position: absolute;
            inset: 9px 10px 9px 12px;
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            background: rgba(255,255,255,.88);
            border-radius: 2px;
        }

    .qa-note {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(15,23,42,.62);
        font-weight: 700;
        font-size: 13px;
    }

    .qa-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(34,197,94,.9);
        box-shadow: 0 0 0 4px rgba(34,197,94,.16);
    }

    /* Right preview (optional decorative) */
    .qa-preview {
        position: relative;
        min-height: 240px;
    }

    .qa-preview-card {
        border-radius: 22px;
        border: 1px solid rgba(15,23,42,.10);
        background: rgba(255,255,255,.55);
        box-shadow: 0 18px 55px rgba(2,6,23,.10), inset 0 1px 0 rgba(255,255,255,.75);
        padding: 16px;
    }

    .qa-preview-card-2 {
        position: absolute;
        inset: auto 20px -18px auto;
        width: 74%;
        height: 70%;
        transform: rotate(4deg);
        opacity: .55;
        filter: blur(.2px);
    }

    .qa-preview-top {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
    }

    .qa-pill {
        font-size: 12px;
        font-weight: 800;
        color: rgba(15,23,42,.72);
        border: 1px solid rgba(15,23,42,.10);
        background: rgba(255,255,255,.55);
        border-radius: 999px;
        padding: 6px 10px;
    }

    .qa-preview-mid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .qa-line {
        height: 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(15,23,42,.10), rgba(15,23,42,.04));
    }

    .qa-preview-bot {
        display: flex;
        gap: 10px;
    }

    .qa-chip {
        flex: 1;
        height: 34px;
        border-radius: 14px;
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(99,102,241,.08);
    }

    @media (max-width: 991.98px) {
        .qa-preview-card-2 {
            display: none;
        }
    }

    @media (max-width: 575.98px) {
        .qa-store-btn {
            width: 100%;
            justify-content: flex-start;
        }
    }

    /* Dark backgrounds support (optional) */
    @media (prefers-color-scheme: dark) {
        .qa-download-card {
            background: radial-gradient(900px 380px at 10% 0%, rgba(99,102,241,.22), transparent 60%), radial-gradient(700px 320px at 90% 20%, rgba(34,197,94,.18), transparent 55%), linear-gradient(180deg, rgba(2,6,23,.62), rgba(2,6,23,.35));
            border-color: rgba(148,163,184,.18);
        }

        .qa-title {
            color: rgba(255,255,255,.92);
        }

        .qa-sub, .qa-mini, .qa-note {
            color: rgba(226,232,240,.74);
        }

        .qa-store-big {
            color: rgba(255,255,255,.92);
        }

        .qa-store-small {
            color: rgba(226,232,240,.72);
        }

        .qa-store-btn {
            border-color: rgba(148,163,184,.18);
        }

        .qa-preview-card {
            background: rgba(2,6,23,.35);
            border-color: rgba(148,163,184,.14);
        }

        .qa-pill {
            background: rgba(2,6,23,.35);
            border-color: rgba(148,163,184,.14);
            color: rgba(226,232,240,.82);
        }

        .qa-line {
            background: linear-gradient(90deg, rgba(226,232,240,.16), rgba(226,232,240,.06));
        }
    }