/* ==========================================================
   COLOR SCHEME
========================================================== */

:root{
    --ons-bg:#0a0a0d;
    --ons-bg-alt:#111013;
    --ons-surface:#18151a;
    --ons-surface-alt:#1d171b;
    --ons-border:rgba(255,255,255,.08);
    --ons-red:#e8283f;
    --ons-red-dark:#c81f35;
    --ons-red-glow:rgba(232,40,63,.35);
    --ons-text:#ffffff;
    --ons-text-muted:#a8adb3;
}

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    overflow-x:hidden;
    background:var(--ons-bg);
    color:var(--ons-text);
}

button:not(:hover):not(:active):not(.has-background) {
    background-color: transparent;
}

.site,
#page{
    width:100%;
    margin:0;
    padding:0;
}

.site-content,
.content-area,
.site-main{
    margin:0;
    padding:0;
}

.entry-content,
.entry-footer,
.entry-header{
    margin:0;
}

img{
    max-width:100%;
    height:auto;
}

/* ==========================================================
   HEADER
========================================================== */

svg#Layer_2 path {
    fill: red;
}

svg#Layer_2 {
    position: absolute;
    width: 40px;
    left: -20px;
}

.ons777-header{
    width:100%;
    background:var(--ons-bg-alt);
    border-bottom:1px solid var(--ons-border);
}

.ons777-topbar{
    width:100%;
    max-width:1600px;
    height:60px;
    margin:0 auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.ons777-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.ons777-logo img{
    height:28px;
    max-width:130px;
    width:auto;
    object-fit:contain;
    display:block;
}

@media (max-width:1200px){
    .ons777-logo img{
        height:24px;
        max-width:100px;
    }
}

.main-navigation{
    flex:1;
    min-width:0;
    display:flex;
    justify-content:center;
}

.ons777-menu{
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:center;
    list-style:none;

    margin:0;
    padding:0;

    gap:28px;

    max-width:100%;
    min-width:0;
    /* overflow-x:auto; */
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.ons777-menu::-webkit-scrollbar{
    display:none;
}

.ons777-menu li{
    margin:0;
    padding:0;
}

.ons777-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    line-height:50px;
    transition:.2s ease;
    position: relative;
}

.ons777-menu li a:hover{
    color:var(--ons-red);
}

.ons777-menu .current-menu-item>a,
.ons777-menu .current_page_item>a{
    color:var(--ons-red);
    border-bottom:none;
}

.ons777-nav-toggle{
    display:none;
    width:44px;
    height:44px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    flex-shrink:0;

    border:0;
    background:none;
    cursor:pointer;
    position:relative;
    z-index:2;
}

.ons777-nav-toggle span{
    width:26px;
    height:3px;
    border-radius:2px;
    background:#fff;
    transition:.2s ease;
}

.ons777-nav-toggle.is-active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.ons777-nav-toggle.is-active span:nth-child(2){
    opacity:0;
}

.ons777-nav-toggle.is-active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

@media (max-width:1200px){

    .ons777-topbar{
        position:relative;
        height:60px;
    }

    .ons777-nav-toggle{
        display:flex;
    }

    .main-navigation{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        flex:none;
        justify-content:flex-start;

        background:var(--ons-bg-alt);
        border-bottom:1px solid var(--ons-border);

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

    .main-navigation.is-open{
        max-height:80vh;
        overflow-y:auto;
    }

    .ons777-menu{
        flex-direction:column;
        align-items:stretch;
        width:100%;
        gap:0;
    }

    .ons777-menu li{
        width:100%;
        border-bottom:1px solid var(--ons-border);
    }

    .ons777-menu li:last-child{
        border-bottom:0;
    }

    .ons777-menu li a{
        display:flex;
        align-items:center;
        width:100%;
        padding:14px 20px;
        line-height:normal;
    }
}

.ons777-settings{
    color:#fff;
    font-size:20px;
    text-decoration:none;
}

.ons777-settings:hover{
    color:#fff;
}

/* ==========================================================
   FOOTER
========================================================== */

.ons777-footer{
    width:100%;
    margin:0;
    padding:0;
    background:var(--ons-bg-alt);
    color:var(--ons-text-muted);
    border-top:1px solid var(--ons-border);
    clear:both;
}

/* =======================
   TOP GRID
======================= */

.footer-top{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:50px 20px 40px;

    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:40px;
}


.footer-col-title{
    margin:0 0 18px;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

/* Brand column */

.footer-logo{
    display:inline-flex;
    margin-bottom:18px;
}

.footer-logo img{
    height:32px;
    max-width:150px;
    width:auto;
    object-fit:contain;
    display:block;
}

.footer-badges{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-badges img{
    height:34px;
    width:auto;
}

.footer-tagline{
    margin:0;
    max-width:340px;
    font-size:14px;
    line-height:1.7;
    color:var(--ons-text-muted);
}

/* Quick links column */

.footer-nav{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-nav li{
    margin:0;
}

.footer-nav a{
    color:var(--ons-text-muted);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.2s ease;
}

.footer-nav a::before{
    content:"\203A";
    color:var(--ons-red);
    margin-right:8px;
}

.footer-nav a:hover{
    color:var(--ons-red);
}

/* Get in touch column */

.footer-contact-list{
    list-style:none;
    margin:0 0 22px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact-list li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
}

.footer-contact-list a{
    color:inherit;
    text-decoration:none;
    transition:.2s ease;
}

.footer-contact-list a:hover{
    color:var(--ons-red);
}

.footer-contact-list i{
    width:34px;
    height:34px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--ons-surface);
    border:1px solid var(--ons-border);
    color:var(--ons-red);
    font-size:14px;
}

.footer-security{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.footer-security img{
    width:40px;
    height:auto;
    flex-shrink:0;
}

.security-text h4{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.security-text p{
    margin:4px 0 0;
    color:var(--ons-text-muted);
    font-size:13px;
}

.footer-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border-radius:999px;
    background:var(--ons-red);
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 8px 20px var(--ons-red-glow);
    transition:.2s ease;
}

.footer-cta:hover{
    background:var(--ons-red-dark);
    color:#fff;
}

/* =======================
   BOTTOM BAR
======================= */

.footer-bottom{
    border-top:1px solid var(--ons-border);
    padding:18px 0;
}

.footer-bottom-inner{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    font-size:13px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-bottom-links a{
    color:var(--ons-text-muted);
    text-decoration:none;
    transition:.2s ease;
}

.footer-bottom-links a:hover{
    color:var(--ons-red);
}

/* =======================
   MOBILE
======================= */

@media (max-width:991px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
        gap:34px;
    }

    .footer-badges{
        justify-content:center;
    }

    .footer-tagline{
        margin:0 auto;
    }

    .footer-nav a::before{
        display:none;
    }

    .footer-contact-list li{
        justify-content:center;
    }

    .footer-security{
        justify-content:center;
    }

    .footer-cta{
        display:flex;
    }

    .footer-bottom-inner{
        justify-content:center;
        text-align:center;
    }

    .security-text h4{
        font-size:16px;
    }

    .security-text p{
        font-size:13px;
    }
}

/* ==========================================================
   MOBILE BOTTOM NAV
========================================================== */

.ons777-mobile-nav{
    display:none;
    position:fixed !important;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    align-items:center;
    justify-content:space-around;
    gap:10px;
    width:100%;
    margin:0;
    background:var(--ons-bg-alt);
    border-top:1px solid var(--ons-border);
    padding:10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow:0 -8px 24px rgba(0,0,0,.35);
    list-style:none;
}

.ons777-mobile-nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    flex:1;
    color:var(--ons-text-muted);
    text-decoration:none;
    font-size:11px;
    font-weight:700;
}

.ons777-mobile-nav-icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--ons-surface);
    border:1px solid var(--ons-border);
    color:var(--ons-text);
    font-size:15px;
}

.ons777-mobile-nav-item:hover{
    color:var(--ons-red);
}

.ons777-mobile-nav-item:hover .ons777-mobile-nav-icon{
    border-color:var(--ons-red);
    color:var(--ons-red);
}

.ons777-mobile-nav-cta{
    flex:0 0 auto;
}

.ons777-mobile-nav-cta .ons777-mobile-nav-icon{
    width:auto;
    height:44px;
    padding:0 22px;
    border-radius:999px;
    flex-direction:row;
    gap:8px;
    background:var(--ons-red);
    border-color:var(--ons-red);
    color:#fff;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 20px var(--ons-red-glow);
}

.ons777-mobile-nav-cta:hover .ons777-mobile-nav-icon{
    background:var(--ons-red-dark);
    border-color:var(--ons-red-dark);
    color:#fff;
}

@media (max-width:1200px){

    .ons777-mobile-nav{
        display:flex !important;
    }

    body{
        padding-bottom:78px;
    }
}

/* ==========================================================
   FLOATING WHATSAPP
========================================================== */

.ons777-whatsapp-float{
    position:fixed !important;
    right:24px;
    bottom:24px;
    z-index:9998;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    font-size:28px;
    text-decoration: none;
    box-shadow:0 10px 26px rgba(37,211,102,.45);
    transition:.2s ease;
}

.ons777-whatsapp-float:hover{
    background:#1ebc59;
    color:#fff;
    transform:translateY(-3px);
}

@media (max-width:1200px){
    .ons777-whatsapp-float{
        right:16px;
        bottom:calc(78px + 16px + env(safe-area-inset-bottom));
        width:50px;
        height:50px;
        font-size:24px;
    }
}

/* ==========================================================
   REMOVE TWENTY TWENTY-ONE DEFAULT SPACING
========================================================== */

.site-main>*{
    margin-top:0;
}

.site-main{
    padding-bottom:0 !important;
}

.site-content{
    padding-bottom:0 !important;
}

.entry-content{
    margin-bottom:0 !important;
}

.entry-footer{
    margin-bottom:0 !important;
}

.wp-site-blocks{
    padding:0;
}

.alignwide,
.alignfull{
    margin-left:auto;
    margin-right:auto;
}

footer{
    margin-bottom:0 !important;
}

/* ==========================================================
   GUIDE PAGES (How to Register / Login / Download APK)
========================================================== */

.ons-guide-page h1,
.ons-guide-page h2,
.ons-guide-page h3,
.ons-guide-page h4{
    color:var(--ons-text);
    margin:0;
}

.ons-guide-page p{
    color:var(--ons-text-muted);
}

.ons-guide-container{
    width:100%;
    max-width:920px;
    margin:0 auto;
    padding:0 20px;
}

.ons-guide-accent{
    color:var(--ons-red);
}

.ons-guide-eyebrow{
    display:inline-block;
    color:var(--ons-red);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:12px;
}

.ons-guide-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    padding:14px 32px;
    border-radius:6px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    background:var(--ons-red);
    color:#fff;
    border:1px solid transparent;
    box-shadow:0 8px 20px var(--ons-red-glow);
    transition:.2s ease;
    white-space:nowrap;
}

.ons-guide-btn:hover{
    background:var(--ons-red-dark);
    color:#fff;
}

.ons-guide-btn-outline{
    background:transparent;
    color:var(--ons-text);
    border-color:rgba(255,255,255,.25);
    box-shadow:none;
}

.ons-guide-btn-outline:hover{
    background:transparent;
    border-color:var(--ons-red);
    color:var(--ons-red);
}

/* ---------- Hero ---------- */

.ons-guide-hero{
    background:var(--ons-bg-alt);
    border-bottom:1px solid var(--ons-border);
    padding:64px 0;
    text-align:center;
}

.ons-guide-breadcrumb{
    font-size:13px;
    color:var(--ons-text-muted);
    margin-bottom:18px;
}

.ons-guide-breadcrumb a{
    color:var(--ons-text-muted);
    text-decoration:none;
}

.ons-guide-breadcrumb a:hover{
    color:var(--ons-red);
}

.ons-guide-hero h1{
    font-size:38px;
    font-weight:800;
    line-height:1.2;
    margin:0 0 18px;
}

.ons-guide-hero p{
    max-width:640px;
    margin:0 auto;
    font-size:16px;
    line-height:1.7;
}

/* ---------- Section ---------- */

.ons-guide-section{
    padding:60px 0;
    border-top:1px solid var(--ons-border);
}

.ons-guide-section-head{
    text-align:center;
    max-width:680px;
    margin:0 auto 40px;
}

.ons-guide-section-head h2{
    font-size:28px;
    margin-top:6px;
}

.ons-guide-section-head p{
    margin-top:14px;
    font-size:15px;
    line-height:1.7;
}

/* ---------- Benefit / feature grid ---------- */

.ons-guide-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.ons-guide-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    flex:0 1 calc((100% - 40px) / 3);
    background:var(--ons-surface);
    border:1px solid var(--ons-border);
    border-radius:12px;
    padding:22px;
    transition:.2s ease;
}

.ons-guide-card:hover{
    border-color:var(--ons-red);
}

.ons-guide-card i{
    flex-shrink:0;
    width:42px;
    height:42px;
    border-radius:10px;
    background:var(--ons-surface-alt);
    border:1px solid var(--ons-red);
    color:var(--ons-red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.ons-guide-card span{
    padding-top:8px;
    font-size:14px;
    font-weight:600;
    line-height:1.5;
    color:var(--ons-text);
}

/* ---------- Steps ---------- */

.ons-guide-steps{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:760px;
    margin:0 auto;
}

.ons-guide-step{
    display:flex;
    gap:20px;
    background:var(--ons-surface);
    border:1px solid var(--ons-border);
    border-radius:12px;
    padding:22px 26px;
}

.ons-guide-step-num{
    flex-shrink:0;
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--ons-red);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:800;
    box-shadow:0 8px 18px var(--ons-red-glow);
}

.ons-guide-step-body h4{
    font-size:16px;
    margin-bottom:6px;
}

.ons-guide-step-body p{
    font-size:14px;
    line-height:1.6;
    margin:0;
}

.ons-guide-step-body a{
    color:var(--ons-red);
    font-weight:600;
    text-decoration:none;
}

.ons-guide-step-body a:hover{
    text-decoration:underline;
}

/* ---------- Callout note ---------- */

.ons-guide-note{
    display:flex;
    align-items:flex-start;
    gap:14px;
    max-width:760px;
    margin:28px auto 0;
    background:var(--ons-surface-alt);
    border:1px solid var(--ons-red);
    border-radius:12px;
    padding:20px 24px;
}

.ons-guide-note i{
    flex-shrink:0;
    margin-top:2px;
    color:var(--ons-red);
    font-size:18px;
}

.ons-guide-note p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}

/* ---------- Checklist / tips ---------- */

.ons-guide-list{
    list-style:none;
    max-width:640px;
    margin:0 auto;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ons-guide-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:15px;
    line-height:1.6;
    color:var(--ons-text-muted);
}

.ons-guide-list i{
    flex-shrink:0;
    width:24px;
    height:24px;
    margin-top:2px;
    border-radius:50%;
    background:var(--ons-surface);
    border:1px solid var(--ons-red);
    color:var(--ons-red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
}

/* ---------- FAQ (JS already wired globally via ons777-header-footer.js) ---------- */

.ons-guide-faq{
    max-width:760px;
    margin:0 auto;
}

.ons-faq-list{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ons-faq-item{
    background:var(--ons-surface);
    border:1px solid var(--ons-border);
    border-radius:10px;
    overflow:hidden;
}

.ons-faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:none;
    border:0;
    color:var(--ons-text);
    font-size:15px;
    font-weight:700;
    text-align:left;
    padding:20px 24px;
    cursor:pointer;
}

.ons-faq-question i{
    flex-shrink:0;
    color:var(--ons-text-muted);
    transition:transform .2s ease;
}

.ons-faq-item.is-open .ons-faq-question i{
    transform:rotate(180deg);
    color:var(--ons-red);
}

.ons-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
}

.ons-faq-answer p{
    margin:0;
    padding:0 24px 20px;
    font-size:14px;
    line-height:1.7;
}

/* ---------- CTA banner ---------- */

.ons-guide-cta{
    text-align:center;
    background:var(--ons-bg-alt);
    border-top:1px solid var(--ons-border);
    padding:60px 0;
}

.ons-guide-cta h2{
    font-size:26px;
    margin-bottom:14px;
}

.ons-guide-cta p{
    max-width:520px;
    margin:0 auto 26px;
    font-size:15px;
}

/* ---------- Responsive ---------- */

@media (max-width:900px){
    .ons-guide-card{
        flex-basis:calc((100% - 20px) / 2);
    }
}

@media (max-width:600px){
    .ons-guide-hero{
        padding:44px 0;
    }

    .ons-guide-hero h1{
        font-size:28px;
    }

    .ons-guide-card{
        flex-basis:100%;
    }

    .ons-guide-step{
        flex-direction:column;
        gap:12px;
    }
}
