*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter','Tajawal',sans-serif;
    background:#0b0f19;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

ul{
    list-style:none;
}

/* ==================================
   VARIABLES
================================== */

:root{

    --primary:#D6009F;
    --primary-light:#FF4DD2;

    --dark:#0b0f19;
    --dark-2:#111827;
    --dark-3:#1f2937;

    --text:#ffffff;
    --text-soft:#b5bfd1;

    --border:rgba(255,255,255,.08);

    --shadow:
            0 20px 40px rgba(0,0,0,.35);

    --glow:
            0 0 20px rgba(214,0,159,.45);

}

/* ==================================
   CONTAINER
================================== */

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

.section{
    padding:120px 0;
}

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

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    backdrop-filter:blur(25px);
    background:rgba(10,15,25,.75);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

    font-size:24px;
    font-weight:800;

}

.logo img{
    width:auto;
    height:48px;
}

.nav{

    display:flex;
    align-items:center;
    gap:40px;

}

.nav a{

    color:#d7def0;
    font-size:15px;
    font-weight:500;

    transition:.3s;

}

.nav a:hover{
    color:#ffffff;
}

.header-download-btn{

    padding:12px 24px;

    background:var(--primary);

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.header-download-btn:hover{

    transform:translateY(-2px);

    box-shadow:var(--glow);

}

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

.mobile-menu-btn{

    display:none;

    width:42px;
    height:42px;

    background:none;

    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.mobile-menu-btn span{

    width:24px;
    height:2px;

    background:#fff;

    transition:.3s;

}

.mobile-menu{

    display:none;

    position:fixed;
    top:80px;
    left:0;

    width:100%;

    background:#111827;

    z-index:998;

}

.mobile-menu a{

    display:block;

    padding:16px 24px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

/* ==================================
   HERO
================================== */

.hero{

    position:relative;

    min-height:calc(100vh - 80px);

    margin-top:80px;

    display:flex;
    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;
    inset:0;

    background:
            radial-gradient(circle at top left,
                    rgba(214,0,159,.35),
                    transparent 40%),

            radial-gradient(circle at bottom right,
                    rgba(99,102,241,.25),
                    transparent 40%);

    z-index:-1;

}

.hero-container{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(214,0,159,.15);

    border:1px solid rgba(214,0,159,.3);

    margin-bottom:25px;

    color:#d9dcff;

    font-size:14px;

}

.hero h2{

    font-size:clamp(28px,4.5vw,48px);
    line-height:1.3;
    font-weight:700;

    margin-bottom:25px;

}

.hero h2 span{

    display:block;

    margin-top:8px;

    font-size:.62em;
    font-weight:600;

    color:var(--primary-light);

}

.hero-description{

    font-size:20px;

    color:var(--text-soft);

    max-width:650px;

    margin-bottom:40px;

}

.hero-stats{

    display:flex;
    gap:40px;

    margin-bottom:40px;

}

.stat strong{

    display:block;

    font-size:30px;
    font-weight:800;

}

.stat span{

    color:var(--text-soft);
    font-size:14px;

}

.hero-buttons{

    display:flex;
    gap:18px;

    margin-bottom:35px;

}

.btn-primary{

    padding:18px 34px;

    border-radius:14px;

    background:var(--primary);

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
            0 10px 35px rgba(214,0,159,.5);

}

.btn-secondary{

    padding:18px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.1);

    background:rgba(255,255,255,.04);

}

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

    color:#9ca3af;

}

.hero-image{

    display:flex;
    justify-content:center;

}

.hero-image img{

    max-height:720px;

    animation:float 5s ease-in-out infinite;

    /* El render llega sobre fondo negro: "screen" funde ese negro con el degradado del hero */
    mix-blend-mode:screen;

    filter:drop-shadow(0 20px 50px rgba(214,0,159,.4));

}

@keyframes float{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

}

/* ==================================
   SECTION TITLE
================================== */

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-size:clamp(28px,4vw,44px);
    font-weight:800;

    margin-bottom:16px;

}

.section-heading p{

    color:var(--text-soft);

    max-width:700px;

    margin:auto;

}

/* ==================================
   SCREENSHOTS
================================== */

.screenshotSwiper{

    padding-bottom:60px;

}

.swiper-slide{

    display:flex;
    justify-content:center;

}

.swiper-slide img{

    width:280px;

    border-radius:28px;

    box-shadow:
            0 25px 60px rgba(0,0,0,.5);

}

.swiper-pagination-bullet{

    background:#fff !important;

}

/* ==================================
   FEATURES
================================== */

.features-grid{

    display:grid;

    grid-template-columns:
            repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.feature-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(214,0,159,.4);

    box-shadow:
            0 20px 40px rgba(214,0,159,.15);

}

.feature-icon{

    font-size:48px;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.feature-card p{

    color:var(--text-soft);

}

/* ==================================
   REVIEWS
================================== */

.reviews-grid{

    display:grid;

    grid-template-columns:
            repeat(auto-fit,minmax(320px,1fr));

    gap:24px;

}

.review-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

}

.stars{

    color:#FFD700;

    margin-bottom:15px;

    font-size:22px;

}

.review-card p{

    margin-bottom:20px;

    color:#dbe2f1;

}

.review-card span{

    color:#9ca3af;

}

/* ==================================
   DOWNLOAD
================================== */

.download-section{

    padding:120px 0;

}

.download-box{

    background:
            linear-gradient(
                    135deg,
                    rgba(214,0,159,.25),
                    rgba(214,0,159,.08)
            );

    border:1px solid rgba(214,0,159,.25);

    border-radius:30px;

    text-align:center;

    padding:70px 40px;

}

.download-box h2{

    font-size:clamp(30px,5vw,48px);

    margin-bottom:20px;

}

.download-box p{

    color:#c9d2e4;

    margin-bottom:40px;

}

.download-info{

    display:flex;
    justify-content:center;
    gap:60px;

    margin-bottom:50px;

}

.download-info div{

    display:flex;
    flex-direction:column;
    gap:6px;

}

.download-info strong{

    font-size:20px;

}

.download-info span{

    color:#bfc8d8;

}

.btn-download{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    white-space:nowrap;

    padding:22px 60px;

    border-radius:18px;

    background:var(--primary);

    font-size:22px;
    font-weight:700;

    margin-bottom:20px;

    transition:.3s;

}

.download-icon{

    width:24px;
    height:24px;

    display:inline-block;

    flex-shrink:0;

    animation:downloadFloat 2s ease-in-out infinite;

}

@keyframes downloadBounce{

    0%{
        transform:translateY(0);
    }

    10%{
        transform:translateY(3px);
    }

    20%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes downloadFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(4px);
    }

}

.btn-download:hover{

    transform:translateY(-4px);

    box-shadow:
            0 0 40px rgba(214,0,159,.6);

}

/* ==================================
   FAQ
================================== */

.faq-list{

    max-width:900px;
    margin:auto;

}

.faq-item{

    margin-bottom:16px;

    border:1px solid var(--border);

    border-radius:16px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    padding:24px;

    background:#111827;

    color:#fff;

    text-align:left;

    font-size:18px;

}

.faq-answer{

    display:none;

    padding:24px;

    background:#0f172a;

    color:#bfc8d8;

}

.faq-item.active .faq-answer{

    display:block;

}

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

.footer{

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;

}

.footer img{

    width:70px;

    margin:auto auto 20px;

}

.footer p{

    color:#9ca3af;

    margin-bottom:20px;

}

.footer-links{

    display:flex;
    justify-content:center;
    gap:25px;

}

.footer-links a{

    color:#cfd5e1;

}

/* ==================================
   TABLET
================================== */

@media (max-width: 992px){

    .hero{
        padding-top:10px;
        min-height:auto;
    }

    .hero-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .hero-content{
        order:1;
    }

    .hero-image{
        order:2;
    }

    .hero-image img{
        max-height:520px;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero h1{
        font-size:56px;
    }
}


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

@media (max-width:768px){

    .nav,
    .header-download-btn{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .section{
        padding:70px 0;
    }

    .container{
        padding:0 18px;
    }

    .hero{
        padding-bottom:50px;
    }

    .hero-badge{
        font-size:13px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero-description{
        font-size:16px;
        margin-bottom:30px;
    }

    .hero-image img{
        max-height:420px;
        width:auto;
    }

    .hero-stats{
        gap:20px;
        flex-wrap:wrap;
    }

    .stat{
        min-width:90px;
    }

    .stat strong{
        font-size:24px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-features{
        gap:12px;
        font-size:14px;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:15px;
    }

    .swiper-slide img{
        width:220px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:28px;
    }

    .reviews-grid{
        grid-template-columns:1fr;
    }

    .download-box{
        padding:40px 24px;
    }

    .download-box h2{
        font-size:34px;
    }

    .download-info{
        flex-direction:column;
        gap:20px;
    }

    .btn-download{
        width:100%;
        padding:18px;
        font-size:18px;
    }

    .faq-question{
        padding:18px;
        font-size:16px;
    }

    .faq-answer{
        padding:18px;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:15px;
    }
}


/* ==================================
   SMALL PHONE
================================== */

@media (max-width:480px){

    .logo span{
        font-size:20px;
    }
    .hero h1{
        font-size:34px;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-image img{
        max-height:340px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .stat strong{
        font-size:20px;
    }

    .stat span{
        font-size:12px;
    }

    .feature-card{
        padding:22px;
    }

    .feature-card h3{
        font-size:20px;
    }

    .download-box h2{
        font-size:28px;
    }

    .download-box{
        padding:30px 20px;
    }
}

/* ==================================
   MARCA / LOGOTIPO EN TEXTO
================================== */

.logo-text{

    font-size:26px;
    font-weight:800;
    letter-spacing:-.5px;

    background:linear-gradient(90deg,#ffffff 0%,#e9d5ff 55%,#c084fc 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

    white-space:nowrap;

}

.logo-text em{

    font-style:normal;

    background:linear-gradient(90deg,#f0abfc 0%,#a855f7 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* ==================================
   PILDORA DE RECOMPENSA EN EL HERO
================================== */

.hero-reward-pill{

    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-top:28px;
    padding:14px 22px;

    max-width:560px;

    border-radius:999px;

    background:linear-gradient(90deg,rgba(168,85,247,.22),rgba(236,72,153,.14));
    border:1px solid rgba(232,121,249,.45);

    box-shadow:0 0 30px rgba(168,85,247,.28);

    color:#f3e8ff;
    font-size:15px;
    line-height:1.45;

    transition:.3s;

}

.hero-reward-pill:hover{

    transform:translateY(-3px);

    border-color:rgba(232,121,249,.9);
    box-shadow:0 0 45px rgba(232,121,249,.5);

}

.hero-reward-pill strong{
    color:#ffd76a;
}

.pill-gift{
    font-size:24px;
    line-height:1;
    flex-shrink:0;
}

.pill-arrow{
    font-size:20px;
    color:#f0abfc;
    flex-shrink:0;
}

/* ==================================
   RECOMPENSAS + GUIA DE INSTALACION
================================== */

.rewards-install{

    position:relative;

    padding:110px 0 120px;

    overflow:hidden;

    background:linear-gradient(180deg,#0b0f19 0%,#170a2b 45%,#0b0f19 100%);

    border-top:1px solid rgba(168,85,247,.18);
    border-bottom:1px solid rgba(168,85,247,.18);

}

.rewards-install .ri-glow{

    position:absolute;
    inset:0;

    pointer-events:none;

    background:
            radial-gradient(600px 400px at 22% 35%,rgba(168,85,247,.30),transparent 70%),
            radial-gradient(600px 400px at 80% 65%,rgba(236,72,153,.22),transparent 70%);

}

.rewards-install .container{
    position:relative;
    z-index:2;
}

.ri-heading{

    text-align:center;
    margin-bottom:60px;

}

.ri-kicker{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:9px 20px;
    margin-bottom:22px;

    border-radius:999px;

    background:rgba(255,201,60,.12);
    border:1px solid rgba(255,201,60,.45);

    color:#ffd76a;
    font-size:14px;
    font-weight:600;
    letter-spacing:.3px;

}

.ri-heading h2{

    font-size:clamp(30px,4.4vw,50px);
    font-weight:800;
    line-height:1.2;

    margin-bottom:18px;

}

.ri-heading h2 span{

    background:linear-gradient(90deg,#e879f9 0%,#a855f7 60%,#7dd3fc 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

}

.ri-heading p{

    max-width:720px;
    margin:auto;

    color:var(--text-soft);
    font-size:17px;

}

.ri-heading p strong{
    color:#ffffff;
}

.ri-grid{

    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:56px;

    align-items:center;

}

/* ---------- Visual de recompensas ---------- */

.ri-visual{

    position:relative;

    text-align:center;

}

.ri-visual > img{

    width:100%;
    max-width:460px;

    margin:auto;

    border-radius:28px;

    filter:drop-shadow(0 25px 60px rgba(168,85,247,.45));

    animation:ri-float 6s ease-in-out infinite;

}

@keyframes ri-float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}

.ri-seal{

    position:absolute;
    top:6%;
    right:2%;

    width:110px;
    height:110px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(140deg,#ffd76a,#f59e0b);

    color:#3b1d00;
    text-align:center;
    line-height:1.15;

    box-shadow:0 10px 30px rgba(245,158,11,.55);

    transform:rotate(-8deg);

}

.ri-seal strong{
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
}

.ri-seal span{
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.ri-brands{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;

    margin-top:26px;

}

.brand-chip{

    display:inline-flex;
    align-items:center;

    padding:12px 26px;

    border-radius:14px;

    font-size:17px;
    font-weight:800;
    letter-spacing:.2px;

}

.brand-amazon{

    background:#141821;
    color:#ffffff;

    border:1px solid rgba(255,153,0,.55);
    box-shadow:0 8px 24px rgba(0,0,0,.45);

}

.brand-amazon::after{

    content:"";

    display:block;
    width:22px;
    height:2px;

    margin-left:8px;

    border-radius:2px;
    background:#ff9900;

}

.brand-meli{

    background:#ffe600;
    color:#2d3277;

    border:1px solid rgba(255,230,0,.9);
    box-shadow:0 8px 24px rgba(255,230,0,.25);

}

/* ---------- Pasos de instalacion ---------- */

.ri-steps{

    padding:36px 34px 34px;

    border-radius:26px;

    background:rgba(17,10,32,.72);
    border:1px solid rgba(168,85,247,.30);

    backdrop-filter:blur(14px);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.ri-steps h3{

    font-size:26px;
    font-weight:800;

    margin-bottom:26px;

}

.steps-list{

    list-style:none;

    display:flex;
    flex-direction:column;
    gap:18px;

    margin-bottom:30px;

}

.step-card{

    position:relative;

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 20px 18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.step-card:hover{

    transform:translateX(6px);

    background:rgba(168,85,247,.10);
    border-color:rgba(232,121,249,.45);

}

.step-card-hot{

    background:linear-gradient(90deg,rgba(255,201,60,.10),rgba(168,85,247,.10));
    border-color:rgba(255,201,60,.40);

}

.step-num{

    position:absolute;
    top:-11px;
    left:-11px;

    width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#a855f7,#e879f9);

    font-size:15px;
    font-weight:800;

    box-shadow:0 6px 18px rgba(168,85,247,.6);

}

.step-icon{

    width:64px;
    height:64px;

    flex-shrink:0;

    object-fit:contain;

    filter:drop-shadow(0 6px 16px rgba(168,85,247,.5));

}

.step-text h4{

    font-size:18px;
    font-weight:700;

    margin-bottom:5px;

}

.step-text p{

    color:var(--text-soft);
    font-size:15px;
    line-height:1.55;

}

.step-text strong{
    color:#ffd76a;
}

.ri-cta{

    width:100%;

    padding:20px 28px;

    font-size:19px;

    background:linear-gradient(90deg,#a855f7,#e879f9);

    box-shadow:0 14px 40px rgba(168,85,247,.45);

    animation:ri-pulse 2.6s ease-in-out infinite;

}

@keyframes ri-pulse{
    0%,100%{ box-shadow:0 14px 40px rgba(168,85,247,.40); }
    50%{ box-shadow:0 14px 55px rgba(232,121,249,.75); }
}

.ri-legal{

    display:block;

    margin-top:14px;

    text-align:center;

    color:#9aa3b5;
    font-size:12.5px;

}

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

@media (max-width:992px){

    .ri-grid{
        grid-template-columns:1fr;
        gap:44px;
    }

    .ri-visual > img{
        max-width:380px;
    }

}

@media (max-width:768px){

    .rewards-install{
        padding:80px 0 90px;
    }

    .ri-heading{
        margin-bottom:44px;
    }

    .ri-steps{
        padding:28px 18px 24px;
    }

    .ri-steps h3{
        font-size:22px;
    }

    .step-card{
        gap:14px;
        padding:16px 14px;
    }

    .step-icon{
        width:52px;
        height:52px;
    }

    .step-text h4{
        font-size:16.5px;
    }

    .step-text p{
        font-size:14px;
    }

    .ri-seal{
        width:88px;
        height:88px;
        top:2%;
        right:0;
    }

    .ri-seal strong{ font-size:12px; }
    .ri-seal span{ font-size:11px; }

    .hero-reward-pill{
        font-size:14px;
        padding:12px 16px;
        gap:10px;
    }

    .logo-text{
        font-size:21px;
    }

    .ri-cta{
        padding:18px 20px;
        font-size:16px;
    }

}

@media (max-width:480px){

    .brand-chip{
        padding:10px 18px;
        font-size:15px;
    }

    .step-card{
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }

    .step-icon{
        width:46px;
        height:46px;
    }

    .logo img{
        height:38px;
    }

    .logo-text{
        font-size:18px;
    }

}

/* ---------- Ajustes de cabecera con la marca en texto ---------- */

.header .logo{
    flex-shrink:0;
    margin-right:26px;
}

.header .nav{
    gap:30px;
}

@media (max-width:1150px){

    .header .nav{
        gap:22px;
        font-size:15px;
    }

    .logo-text{
        font-size:22px;
    }

}

.brand-amazon::after{
    width:26px;
    height:9px;
    margin-left:10px;
    background:none;
    border-bottom:3px solid #ff9900;
    border-radius:0 0 50% 50% / 0 0 100% 100%;
}

@media (max-width:768px){

    .ri-seal strong{ font-size:10.5px; letter-spacing:-.2px; }
    .ri-seal span{ font-size:10.5px; }

}

.ri-seal{
    padding:0 10px;
}

.ri-seal strong{
    font-size:12px;
    letter-spacing:-.2px;
}

.ri-seal span{
    font-size:12px;
}

@media (max-width:768px){

    .ri-seal strong,
    .ri-seal span{
        font-size:10px;
    }

}
