: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: linear-gradient(90deg,
            var(--grad-left),
            var(--grad-right));
    min-height: 100vh;
}

.page {
    width: min(580px, 94vw);
    margin: 22px auto 34px;
}

/* ===== HERO CARD ===== */
.hero-card {
    position: relative;
    background: var(--card);
    border-radius: 4px;
    box-shadow: var(--shadow);
    padding: 16px 16px 18px;
    overflow: hidden;
}

/* 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);
}

/* 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;
}

.hero-image-wrap {
    margin-top: 26px;
    /* leave space for MENU */
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 10px 20px rgba(10, 20, 60, .20) inset;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.cta-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 8px 0;
}

.cta {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
}

/* 🔁 replace svg rule with image rule */
.cta img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

/* Optional: force white icons if PNG is dark */
.cta img {
    filter: brightness(0) invert(1);
}

.cta.whatsapp {
    background: var(--btnGreen);
}

.cta.telegram {
    background: var(--btnBlue);
}

/* ===== 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;
}

/* ===== Download Cards Section (exact style like screenshot) ===== */
.download-hero {
    margin: 22px 0 8px;
}

.download-card {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 16px;
    padding: 22px 18px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Title */
.download-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 22px;
    color: #111;
    text-align: center;
}

/* Button row */
.download-actions {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.download-btn {
    display: inline-flex;
    flex-direction: column; /* Stacks text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    
    padding: 14px 40px;
    background: var(--btnGreen);
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(32, 183, 100, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

/* This ensures the version info takes up its own line and centers */
.download-btn span {
    display: block;
    width: 100%;
}

.download-btn small {
    display: block;         /* Forces it to a new line */
    width: 100%;
    margin-top: 4px;       /* Adds a little breathing room */
    font-size: 11px;
    font-weight: normal;
    opacity: 0.9;          /* Makes it slightly subtle but readable */
}

/* Wrapper to ensure the whole button is centered on the page */
.download-actions {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

/* Icon */
.download-btn img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* Text */
.download-btn span {
    display: block;
    text-align: left;
}

/* Android */
.download-btn.android {
    background: #55c21b;
    /* same green */
    color: #000;
}

/* iOS */
.download-btn.ios {
    background: #0b4a8b;
    /* same blue */
    color: #000;
}



/* Mobile */
@media (max-width: 600px) {
    .download-actions {
        display: flex;          
        flex-direction: column; 
        align-items: center;    
        gap: 18px;
    }

    .download-btn {
        width: 80%;             
        max-width: 360px;
        display: flex; 
        justify-content: center;
    }

    .download-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ===== Payment Method Section (matches screenshot) ===== */
.pay-section {
    margin: 22px 0 8px;
}

.pay-card {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 16px;
    padding: 22px 18px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pay-title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0b1220;
}

/* logos row */
.pay-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: nowrap;
}

/* each logo */
.pay-logo {
    width: 92px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

/* Responsive like mobile */
@media (max-width: 720px) {
    .pay-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pay-title {
        font-size: 22px;
    }

    .pay-logo {
        width: 84px;
        height: 66px;
    }
}

/* ===== 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: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.content-card h2 {
    margin: 14px 0 6px;
    font-size: 16.5px;
    font-weight: 900;
}

.content-card h3 {
    margin: 12px 0 6px;
    font-size: 14.5px;
    font-weight: 900;
}

.content-card h4 {
    margin: 12px 0 6px;
    font-size: 13.5px;
    font-weight: 900;
}

.content-card p {
    margin: 0 0 10px;
    color: #111827;
    opacity: .92;
    font-size: 12.75px;
    line-height: 1.6;
}

.content-card li{
    margin: 0 0 10px;
    color: #151d2e;
    opacity: .92;
    font-size: 12.5px;
    line-height: 1.25;
}

/* 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: 28px 0 10px;
    text-align: center;
}

.testi-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: .2px;
    color: #0b1220;
}

/* 2x2 grid */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 32px;
    justify-content: center;
}

/* cards */
.testi-card {
    background: rgba(255, 255, 255, .92);
    border-radius: 14px;
    padding: 28px 22px 24px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .14);
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.testi-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.testi-quote {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

/* stars (big yellow, centered) */
.testi-stars {
    display: flex;
    gap: 6px;
    font-size: 32px;
    line-height: 1;
    color: #f6c244;
    /* warm yellow */
    text-shadow: 0 2px 0 rgba(0, 0, 0, .05);
}

/* Responsive */
@media (max-width: 760px) {
    .testi-title {
        font-size: 28px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testi-name {
        font-size: 20px;
    }

    .testi-quote {
        font-size: 17px;
    }

    .testi-stars {
        font-size: 34px;
    }
}


/* ===== FAQ (matches screenshot layout, fits current site) ===== */
.faq-section {
    margin-top: 18px;
}

.faq-title {
    margin: 0 0 14px;
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: .2px;
    color: #0b1220;
}

.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: #4f74ff;
    /* blue like screenshot */
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;

    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: 16px;
    color: #0f172a;
    background: #ffffff;
}

/* Smooth open/close feel */
.faq-item[open] .faq-q {
    filter: brightness(1.02);
}

/* Make it fit your mobile layout */
@media (max-width: 560px) {
    .faq-title {
        font-size: 20px;
    }

    .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);
}