:root {
    --grad-left: #8ea0ff;
    --grad-right: #7fd3e6;
    --card: #ffffff;
    --shadow: 0 18px 40px rgba(34, 40, 80, .18);
    --radius: 8px;

    --btnGreen: #20b764;
    --btnBlue: #1da0da;

    --muted: #6b7280;
    --text: #0f172a;

    --softBorder: rgba(15, 23, 42, .08);
    --pill: #f2f2f2;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: #231e40;
    min-height: 100vh;
}

.page {
    width: min(580px, 94vw);
    margin: 22px auto 34px;
}

/* ===== HERO CARD ===== */
/* ===== HERO V2 (matches screenshot layout) ===== */
.hero-card.hero-v2 {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}

/* background image + overlay */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}

.hero-bg-thmbn {
    width: 87.5%;
    height: 87.5%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    
    margin: 25px auto; 
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(12, 35, 85, .55) 0%,
            rgba(28, 70, 155, .55) 45%,
            rgba(40, 95, 190, .55) 100%);
}

/* foreground content */
.hero-inner {
    position: relative;
    z-index: 1;
    padding: 42px 18px 42px;
    color: #fff;
}

/* top row: logo + meta */
.hero-top {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: start;
    margin-top: 26px;
    /* leave space for menu-btn */
}

.hero-logo-card {
    width: 140px;
    height: 110px;
    background: rgba(255, 255, 255, .96);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
}

.hero-logo {
    width: 115px;
    height: auto;
    display: block;
}

/* meta */
.hero-app-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .3px;
    margin-bottom: 6px;
}

.hero-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.hero-stars {
    display: flex;
    gap: 3px;
    font-size: 18px;
    color: #f7c948;
    line-height: 1;
}

.hero-shield {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .25);
}

.hero-version {
    font-weight: 800;
    font-size: 12px;
    opacity: .95;
    margin-bottom: 8px;
}

.hero-cat {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .5px;
    opacity: .95;
}

/* description like screenshot */
.hero-desc {
    margin: 18px 0 16px;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    text-align: left;
}

/* stacked download buttons */
.hero-downloads {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-top: 8px;
}

.hero-dl {
    width: min(440px, 92%);
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .3px;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.hero-dl-ic {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* make icon white-ish if needed */
}

/* keep your existing brand colors */
.hero-dl-android {
    background: #55c21b;
    color: #000;
}

.hero-dl-ios {
    background: #0b4a8b;
    color: #000;
}

/* responsive */
@media (max-width: 520px) {
    .hero-top {
        grid-template-columns: 130px 1fr;
        gap: 12px;
    }

    .hero-logo-card {
        width: 130px;
        height: 104px;
    }

    .hero-app-title {
        font-size: 18px;
    }

    .hero-dl {
        font-size: 12px;
    }
}

/* top-left MENU button */
/* RGB cycling animation */
@keyframes rgbCycle {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes rgbText {
    0% {
        color: #ff004c;
    }

    16% {
        color: #ff7a00;
    }

    33% {
        color: #ffe600;
    }

    50% {
        color: #00ff6a;
    }

    66% {
        color: #00c8ff;
    }

    83% {
        color: #8a2be2;
    }

    100% {
        color: #ff004c;
    }
}

/* Apply to the MENU button */
.menu-btn {
    position: absolute;
    top: 12px;
    /* slightly more breathing room */
    left: 12px;

    display: flex;
    align-items: center;
    gap: 14px;
    /* ⬆ space between hamburger & text */

    padding: 10px 18px;
    /* ⬆ bigger pill */

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;

    font-weight: 800;
    font-size: 16px;
    /* ⬆ text size */
    letter-spacing: .4px;

    cursor: pointer;
    user-select: none;

    animation: rgbText 0.45s linear infinite;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    text-shadow: 0 0 6px rgba(255, 255, 255, .35);

    z-index: 100;
}

/* Bigger hamburger */
.hamburger {
    width: 24px;
    /* ⬆ */
    height: 16px;
    display: grid;
    gap: 4px;
}

.hamburger span {
    height: 3px;
    /* ⬆ bar thickness */
    border-radius: 3px;
    background: currentColor;
    box-shadow: 0 0 6px rgba(255, 255, 255, .35);
    animation: rgbText 0.45s linear infinite;
}

/* ===== Drawer Overlay ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 9998;
}

/* ===== Drawer Panel ===== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    /* drawer width like screenshot */
    max-width: 86vw;
    background: #5176fa;
    /* dark teal background */
    transform: translateX(-110%);
    transition: transform .22s ease;
    z-index: 9999;
    box-shadow: 6px 0 22px rgba(0, 0, 0, .25);
    overflow: hidden;
}

/* Header */
.drawer-header {
    height: 68px;
    background: #04274b;
    /* purple bar */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-title {
    color: #fff;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: .2px;
    line-height: 1;
}

/* Close X (top-left) */
.drawer-close {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* Menu list */
.drawer-nav {
    padding: 0;
    margin: 0;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    color: #e8f0f2;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
}

.drawer-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
}

/* Active row (blue highlight like screenshot) */
.drawer-item.is-active {
    background: #6ea4ff;
    color: #ffffff;
}

/* ===== Open State ===== */
.drawer-open .drawer {
    transform: translateX(0);
}

.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Optional: prevent body scroll when open */
.drawer-open {
    overflow: hidden;
}

/* ===== Help / Contact Section ===== */
.help-section {
    margin: 28px 0 10px;
    display: flex;
    justify-content: center;
}

.help-card {
    width: 100%;
    max-width: 720px;

    background: #5566a0;
    /* blue-purple panel like screenshot */
    border-radius: 14px;
    padding: 18px 16px 20px;

    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    text-align: center;
}

.help-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
}

/* buttons row */
.help-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* shared button */
.help-btn {
    min-width: 220px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #fff;

    box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

/* icons */
.help-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* force white icon */
}

/* WhatsApp */
.help-btn.whatsapp {
    background: #25d366;
}

/* Telegram */
.help-btn.telegram {
    background: #1da1f2;
}

/* mobile */
@media (max-width: 600px) {
    .help-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ===== More About App Section ===== */
.about-app-section {
    margin: 24px 0 12px;
}

.about-app-card {
    padding: 18px 20px 20px;
}

/* title */
.about-app-title {
    margin: 4px 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

/* table layout */
.about-app-table {
    display: grid;
    gap: 10px;
}

/* rows */
.about-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
}

/* left labels */
.about-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* right values */
.about-value {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    text-align: right;
    white-space: nowrap;
}

/* allow multi-line OS text */
.about-value br {
    content: "";
}

/* mobile friendliness */
@media (max-width: 600px) {
    .about-value {
        text-align: left;
        white-space: normal;
    }
}



/* ===== CONTENT SECTION ===== */
.content-card {
    margin-top: 18px;
    background: var(--card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 16px 16px 18px;
}

.content-card h1 {
    margin: 4px 0 10px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.content-card h2 {
    margin: 14px 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.content-card h3 {
    margin: 12px 0 6px;
    font-size: 15px;
    font-weight: 900;
}

.content-card h4 {
    margin: 12px 0 6px;
    font-size: 14px;
    font-weight: 900;
}

.content-card p {
    margin: 0 0 10px;
    color: #111827;
    opacity: .92;
    font-size: 13.1px;
    line-height: 1.6;
}

.content-card li {
    margin: 0 0 10px;
    color: #182136;
    font-size: 13.1px;
    line-height: 1.6;
}

/* 1. Reset the counter on the main body */
body {
    counter-reset: faq-counter;
}

/* 2. Target the H3 headers inside your content cards */
.content-card h3 {
    position: relative;
    padding-left: 28px; /* Creates space for the number so it doesn't overlap text */
}

/* 3. Add the number before the H3 */
.content-card h3::before {
    counter-increment: faq-counter;    /* Count up by 1 */
    content: counter(faq-counter) ". "; /* Display the number + a dot */
    
    /* Position the number nicely on the left */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text); /* Uses your existing text color */
}

/* small screens */
@media (max-width: 420px) {
    .cta-row {
        gap: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .download-row {
        gap: 10px;
    }

    .content-card p {
        text-align: left;
    }
}

/* ===== Testimonial Section (pixel-close to screenshot) ===== */
.testi-section {
    margin: 30px 0 10px;
    padding: 6px 0 6px;
    text-align: center;
}

.testi-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .2px;
    color: #fff;
}

/* 2x2 layout like screenshot */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 34px;
}

/* Card */
.testi-card {
    border-radius: 18px;
    padding: 22px 24px;
    min-height: 150px;

    background: linear-gradient(180deg, #0f3a8a 0%, #4a78da 55%, #5c86e8 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);

    color: #fff;
    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Name top centered */
.testi-name {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
}

/* Stars + Date row */
.testi-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

/* Stars smaller than your old version */
.testi-stars {
    display: flex;
    font-size: 22px;
    line-height: 1;
    color: #f7c948;
    /* warm yellow like screenshot */
    text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
}

/* Date on right */
.testi-date {
    font-size: 18px;
    color: rgba(255, 255, 255, .92);
    white-space: nowrap;
}

/* Quote bottom */
.testi-quote {
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
}

/* Responsive: stack to 1 column */
@media (max-width: 760px) {
    .testi-title {
        font-size: 28px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testi-name {
        font-size: 20px;
    }

    .testi-date {
        font-size: 14px;
    }

    .testi-quote {
        font-size: 14px;
    }
}

/* ===== FAQ (matches screenshot layout, fits current site) ===== */
.faq-section {
    margin-top: 18px;
}

.faq-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .2px;
    color: #fff;
}

.faq-wrap {
    display: grid;
    gap: 12px;
}

/* card shell */
.faq-item {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

/* remove default marker */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
}

/* question bar */
.faq-q {
    cursor: pointer;
    user-select: none;
    padding: 16px 18px;
    background: #242b57;
    /* blue like screenshot */
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* arrow icon */
.faq-icon {
    font-size: 22px;
    font-weight: 900;
    opacity: .95;
}

/* answer panel */
.faq-a {
    padding: 14px 18px 16px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
}

/* Smooth open/close feel */
.faq-item[open] .faq-q {
    filter: brightness(1.02);
}

/* Mobile Responsiveness - Flexbox Fix */
@media (max-width: 600px) {
    .specs-table thead {
        display: none; /* Hides the normal header row */
    }

    .specs-table, .specs-table tbody, .specs-table tr, .specs-table td {
        display: block; /* Stacks everything vertically */
        width: 100%;
    }

    .specs-table tr {
        margin-bottom: 20px; /* Space between the Android and iOS blocks */
        border: 1px solid #eee; /* Adds a border around the card */
        border-radius: 8px; /* Rounded corners for the card */
        box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow for depth */
        background: #fff;
    }

    .specs-table td {
        display: flex; /* This is the key fix: enables Flexbox */
        justify-content: space-between; /* Pushes Label to left, Value to right */
        align-items: flex-start; /* Aligns them at the top */
        text-align: right; 
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 0; /* Reset previous padding */
    }

    /* The Label (e.g., "Platform") */
    .specs-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #2a2a5a; /* Deep blue/purple brand color */
        text-align: left;
        
        /* Flexbox Settings */
        flex-basis: 40%; /* Dedicates 40% width to the label */
        flex-shrink: 0;  /* Prevents the label from getting squished */
        padding-right: 10px; /* Space between label and value */
    }

    /* Specific fix for the "Performance Tip" if it gets too long */
    .specs-table td:last-child {
        border-bottom: none;
    }
}

/* Make it fit your mobile layout */
@media (max-width: 560px) {
    .faq-title {
        font-size: 22px;
    }

    .faq-q {
        font-size: 16px;
        padding: 14px 14px;
    }

    .faq-a {
        font-size: 16px;
        padding: 12px 14px 14px;
    }

    .faq-section {
        padding: 16px 8px 20px;
    }
}


.footer-only {
    display: inline-block;
    margin: 24px auto 30px;
    padding: 6px 14px;

    background: #ffffff;
    color: #111;

    font-size: 11px;
    font-weight: 500;

    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}