/*==================================================
SKYRA REWARDS — DESIGN V2
BLOC 1
THEME BLANC + BLEU
==================================================*/


/*==================================================
VARIABLES SKYRA
==================================================*/

:root{

    --skyra-blue:#1677FF;

    --skyra-blue-dark:#0B2A4A;

    --skyra-blue-light:#EAF3FF;

    --skyra-blue-soft:#F4F8FF;

    --skyra-white:#FFFFFF;

    --skyra-bg:#F6F9FD;

    --skyra-text:#344054;

    --skyra-muted:#667085;

    --skyra-border:#E4EAF2;

    --skyra-radius:24px;

    --skyra-transition:
        .35s cubic-bezier(.22,1,.36,1);

}


/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    margin:0;

    font-family:
        'Poppins',
        Arial,
        sans-serif;

    background:var(--skyra-bg);

    color:var(--skyra-text);

    overflow-x:hidden;

}


.container {

    width:100%;

    max-width:1280px;

    margin:0 auto;

    padding-left:50px;
    padding-right:50px;

}


@media(max-width:600px){

    .container {

        padding-left:18px;
        padding-right:18px;

    }

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    height:auto;

}


/*==================================================
SECTIONS
==================================================*/

.rewards-page .section{

    position:relative;

    padding:110px 0;

}


/*==================================================
TITRES
==================================================*/

.rewards-page .section-title{

    max-width:850px;

    margin:0 auto 65px;

    text-align:center;

}

.rewards-page .section-title h2{

    color:var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.rewards-page .section-title h2 span{

    color:var(--skyra-blue);

}

.rewards-page .section-title p{

    max-width:700px;

    margin:18px auto 0;

    color:var(--skyra-muted);

    font-size:17px;

    line-height:1.8;

}


/*==================================================
HERO
==================================================*/

.rewards-hero{

    position:relative;

    min-height:760px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

        radial-gradient(
            circle at 85% 25%,
            rgba(22,119,255,.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(22,119,255,.06),
            transparent 32%
        ),

        #FFFFFF;

}


/*==================================================
FORMES DECORATIVES
==================================================*/

.rewards-hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-280px;

    top:-260px;

    border-radius:50%;

    background:

        rgba(22,119,255,.06);

}

.rewards-hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:

        rgba(22,119,255,.05);

}


/*==================================================
CONTENU HERO
==================================================*/

.rewards-hero-content{

    position:relative;

    z-index:3;

    max-width:650px;

}


/*==================================================
MINI TITRE
==================================================*/

.rewards-hero-content .mini-title{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:9px 18px;

    margin-bottom:25px;

    border-radius:50px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

    font-size:14px;

    font-weight:700;

}

.rewards-hero-content .mini-title i{

    font-size:16px;

}


/*==================================================
GRAND TITRE
==================================================*/

.rewards-hero-content h1{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:68px;

    line-height:1.05;

    font-weight:850;

    letter-spacing:-3px;

}

.rewards-hero-content h1 span{

    position:relative;

    color:

        var(--skyra-blue);

}

.rewards-hero-content h1 span::after{

    content:"";

    position:absolute;

    left:3px;

    right:3px;

    bottom:-7px;

    height:5px;

    border-radius:20px;

    background:

        rgba(22,119,255,.18);

}


/*==================================================
DESCRIPTION
==================================================*/

.rewards-hero-content > p{

    max-width:590px;

    margin:

        30px 0 35px;

    color:

        var(--skyra-muted);

    font-size:18px;

    line-height:1.8;

}


/*==================================================
BOUTON PRINCIPAL
==================================================*/

.rewards-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:

        16px 27px;

    border-radius:14px;

    background:

        var(--skyra-blue);

    color:#fff;

    font-size:15px;

    font-weight:700;

    box-shadow:

        0 14px 30px

        rgba(22,119,255,.22);

    transition:

        var(--skyra-transition);

}

.rewards-btn-primary:hover{

    color:#fff;

    background:

        #075EDB;

    transform:

        translateY(-4px);

}


/*==================================================
BOUTON SECONDAIRE
==================================================*/

.rewards-btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:

        15px 22px;

    color:

        var(--skyra-blue-dark);

    font-size:15px;

    font-weight:700;

    transition:

        var(--skyra-transition);

}

.rewards-btn-secondary i{

    color:

        var(--skyra-blue);

}

.rewards-btn-secondary:hover{

    color:

        var(--skyra-blue);

    transform:

        translateX(4px);

}


/*==================================================
MINI STATS
==================================================*/

.rewards-mini-stats{

    display:flex;

    gap:35px;

    margin-top:45px;

}

.rewards-mini-stat strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:25px;

    font-weight:800;

}

.rewards-mini-stat span{

    color:

        var(--skyra-muted);

    font-size:12px;

}


/*==================================================
ZONE VISUELLE
==================================================*/

.rewards-hero-visual{

    position:relative;

    z-index:2;

    width:100%;

    min-height:560px;

    display:flex;

    align-items:center;

    justify-content:center;

}


/*==================================================
ORB
==================================================*/

.rewards-main-orb{

    position:relative;

    width:360px;

    height:360px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        radial-gradient(
            circle at 35% 30%,
            #FFFFFF,
            #EEF6FF 55%,
            #DCEBFF
        );

    box-shadow:

        0 35px 80px

        rgba(22,119,255,.14),

        inset 0 0 0 18px

        rgba(255,255,255,.9);

}

.rewards-main-orb::before{

    content:"";

    position:absolute;

    width:430px;

    height:430px;

    border-radius:50%;

    border:

        1px dashed

        rgba(22,119,255,.25);

    animation:

        rewardsRotate 18s linear infinite;

}

.rewards-main-orb::after{

    content:"";

    position:absolute;

    width:510px;

    height:510px;

    border-radius:50%;

    border:

        1px solid

        rgba(22,119,255,.10);

}


/*==================================================
ICONE
==================================================*/

.rewards-orb-icon{

    width:150px;

    height:150px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        linear-gradient(
            145deg,
            #1677FF,
            #4C9AFF
        );

    color:#fff;

    font-size:65px;

    box-shadow:

        0 25px 50px

        rgba(22,119,255,.28);

    animation:

        rewardsFloat 4s ease-in-out infinite;

}


/*==================================================
PANNEAU POINTS
==================================================*/

.rewards-points-panel{

    position:absolute;

    left:0;

    top:60px;

    min-width:220px;

    padding:20px 22px;

    border-radius:20px;

    background:

        rgba(255,255,255,.96);

    border:

        1px solid

        var(--skyra-border);

    box-shadow:

        0 20px 50px

        rgba(22,42,70,.10);

    backdrop-filter:

        blur(15px);

}

.rewards-points-panel small{

    display:block;

    margin-bottom:6px;

    color:

        var(--skyra-muted);

    font-size:12px;

}

.rewards-points-panel strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:30px;

}

.rewards-points-panel span{

    display:block;

    margin-top:8px;

    color:

        var(--skyra-blue);

    font-size:12px;

    font-weight:700;

}


/*==================================================
PROGRESSION
==================================================*/

.rewards-progress-panel{

    position:absolute;

    right:-15px;

    bottom:55px;

    width:250px;

    padding:20px;

    border-radius:20px;

    background:

        var(--skyra-blue-dark);

    color:#fff;

    box-shadow:

        0 25px 55px

        rgba(11,42,74,.20);

}

.rewards-progress-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

}

.rewards-progress-top span{

    color:#B8C7D8;

    font-size:12px;

}

.rewards-progress-top strong{

    color:#fff;

    font-size:14px;

}

.rewards-progress-bar{

    width:100%;

    height:8px;

    overflow:hidden;

    border-radius:20px;

    background:

        rgba(255,255,255,.12);

}

.rewards-progress-bar span{

    display:block;

    width:72%;

    height:100%;

    border-radius:20px;

    background:

        linear-gradient(
            90deg,
            #1677FF,
            #78B5FF
        );

}


/*==================================================
BADGE NIVEAU
==================================================*/

.rewards-floating-badge{

    position:absolute;

    right:25px;

    top:40px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 17px;

    border-radius:50px;

    background:#fff;

    color:

        var(--skyra-blue-dark);

    font-size:13px;

    font-weight:700;

    box-shadow:

        0 15px 35px

        rgba(11,42,74,.10);

    animation:

        rewardsFloat 5s ease-in-out infinite;

}

.rewards-floating-badge i{

    color:

        var(--skyra-blue);

}


/*==================================================
ANIMATIONS
==================================================*/

@keyframes rewardsFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes rewardsRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*==================================================
APPARITION
==================================================*/

.rewards-page .animate{

    opacity:0;

    transform:translateY(35px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.rewards-page .animate.visible{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .rewards-hero{

        padding:90px 0;

    }

    .rewards-hero-content{

        max-width:760px;

        margin:auto;

        text-align:center;

    }

    .rewards-hero-content > p{

        margin-left:auto;

        margin-right:auto;

    }

    .rewards-hero-buttons{

        justify-content:center;

    }

    .rewards-mini-stats{

        justify-content:center;

    }

    .rewards-hero-visual{

        margin-top:70px;

    }

}


@media(max-width:600px){

    .rewards-page .section{

        padding:75px 0;

    }

    .rewards-hero-content h1{

        font-size:43px;

        letter-spacing:-1.8px;

    }

    .rewards-hero-content > p{

        font-size:16px;

    }

    .rewards-hero-buttons{

        flex-direction:column;

    }

    .rewards-btn-primary,
    .rewards-btn-secondary{

        width:100%;

        justify-content:center;

    }

    .rewards-main-orb{

        width:240px;

        height:240px;

    }

    .rewards-main-orb::before{

        width:285px;

        height:285px;

    }

    .rewards-main-orb::after{

        width:330px;

        height:330px;

    }

    .rewards-orb-icon{

        width:100px;

        height:100px;

        font-size:42px;

    }

    .rewards-points-panel{

        top:5px;

        left:0;

        min-width:170px;

        padding:15px;

    }

    .rewards-points-panel strong{

        font-size:24px;

    }

    .rewards-progress-panel{

        right:0;

        bottom:0;

        width:190px;

        padding:15px;

    }

    .rewards-floating-badge{

        top:35px;

        right:-5px;

        font-size:11px;

        padding:10px 13px;

    }

}


 /*==================================================
SKYRA REWARDS
BLOC 2 — PARCOURS VISUEL
==================================================*/


.rewards-how{

    position:relative;

    background:#F6F9FD;

    overflow:hidden;

}


/*==================================================
PETIT TITRE
==================================================*/

.rewards-how .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    color:var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.rewards-how .mini-title i{

    font-size:15px;

}


/*==================================================
PARCOURS
==================================================*/

.rewards-steps{

    position:relative;

    display:grid;

    grid-template-columns:
        1fr
        80px
        1fr
        80px
        1fr;

    align-items:center;

    margin-top:80px;

}


/*==================================================
ÉTAPE
==================================================*/

.reward-step{

    position:relative;

    min-height:300px;

    padding:35px 30px;

    background:#fff;

    border-radius:30px;

    border:

        1px solid

        var(--skyra-border);

    transition:

        var(--skyra-transition);

}

.reward-step:hover{

    transform:

        translateY(-10px);

    border-color:

        rgba(22,119,255,.18);

    box-shadow:

        0 25px 60px

        rgba(11,42,74,.08);

}


/*==================================================
NUMERO
==================================================*/

.step-number{

    position:absolute;

    top:22px;

    right:25px;

    color:

        rgba(22,119,255,.10);

    font-size:42px;

    line-height:1;

    font-weight:800;

}


/*==================================================
ICONE
==================================================*/

.step-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    border-radius:20px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

    font-size:27px;

    transition:

        var(--skyra-transition);

}

.reward-step:hover .step-icon{

    color:#fff;

    background:

        var(--skyra-blue);

    transform:

        rotate(-5deg)
        scale(1.08);

}


/*==================================================
CONTENU
==================================================*/

.step-content span{

    color:

        var(--skyra-blue);

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

}

.step-content h3{

    margin:

        8px 0
        12px;

    color:

        var(--skyra-blue-dark);

    font-size:25px;

    font-weight:800;

}

.step-content p{

    margin:0;

    color:

        var(--skyra-muted);

    font-size:14px;

    line-height:1.8;

}


/*==================================================
LIGNE ENTRE LES ÉTAPES
==================================================*/

.step-line{

    position:relative;

    height:2px;

    background:

        #D9E7F7;

}

.step-line span{

    position:absolute;

    left:50%;

    top:50%;

    width:11px;

    height:11px;

    border-radius:50%;

    background:

        var(--skyra-blue);

    transform:

        translate(-50%,-50%);

    box-shadow:

        0 0 0 7px

        rgba(22,119,255,.08);

}


/*==================================================
FOOTER
==================================================*/

.rewards-how-footer{

    display:flex;

    align-items:center;

    gap:18px;

    max-width:650px;

    margin:

        65px auto 0;

    padding:

        22px 25px;

    border-left:

        4px solid

        var(--skyra-blue);

    background:#fff;

}

.how-footer-icon{

    width:45px;

    height:45px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

}

.rewards-how-footer strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:15px;

}

.rewards-how-footer p{

    margin:4px 0 0;

    color:

        var(--skyra-muted);

    font-size:13px;

}


/*==================================================
RESPONSIVE TABLETTE
==================================================*/

@media(max-width:1000px){

    .rewards-steps{

        grid-template-columns:1fr;

        gap:25px;

        max-width:600px;

        margin-left:auto;

        margin-right:auto;

    }

    .step-line{

        width:2px;

        height:45px;

        margin:auto;

    }

    .step-line span{

        top:50%;

    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:600px){

    .rewards-how{

        padding-top:75px;

        padding-bottom:75px;

    }

    .rewards-steps{

        margin-top:50px;

    }

    .reward-step{

        min-height:auto;

        padding:28px 24px;

        border-radius:24px;

    }

    .step-number{

        font-size:34px;

        right:20px;

    }

    .step-icon{

        width:60px;

        height:60px;

        margin-bottom:24px;

        border-radius:17px;

        font-size:23px;

    }

    .step-content h3{

        font-size:22px;

    }

    .step-content p{

        font-size:13px;

    }

    .rewards-how-footer{

        align-items:flex-start;

        padding:20px;

    }

}


/*==================================================
SKYRA REWARDS
BLOC 3 — NIVEAUX
==================================================*/


.rewards-levels{

    position:relative;

    background:#fff;

    overflow:hidden;

}


/*==================================================
INTRO
==================================================*/

.levels-intro{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

    margin-bottom:80px;

}

.levels-intro .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.levels-intro h2{

    max-width:700px;

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.levels-intro h2 span{

    color:

        var(--skyra-blue);

}

.levels-intro p{

    max-width:620px;

    margin:18px 0 0;

    color:

        var(--skyra-muted);

    font-size:16px;

    line-height:1.8;

}


/*==================================================
BADGE NIVEAU ACTUEL
==================================================*/

.levels-intro-badge{

    min-width:190px;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    border-radius:20px;

    background:

        var(--skyra-blue-light);

    border:

        1px solid

        rgba(22,119,255,.10);

}

.levels-intro-badge > i{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue);

    color:#fff;

}

.levels-intro-badge small{

    display:block;

    color:

        var(--skyra-muted);

    font-size:11px;

}

.levels-intro-badge strong{

    display:block;

    margin-top:3px;

    color:

        var(--skyra-blue-dark);

    font-size:22px;

}


/*==================================================
ROUTE DE PROGRESSION
==================================================*/

.levels-road{

    position:relative;

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:50px 0 20px;

}


/*==================================================
LIGNE
==================================================*/

.levels-road-line{

    position:absolute;

    left:8%;

    right:8%;

    top:91px;

    height:4px;

    overflow:hidden;

    border-radius:10px;

    background:

        #E7EEF7;

}

.levels-road-line span{

    display:block;

    width:70%;

    height:100%;

    border-radius:10px;

    background:

        linear-gradient(
            90deg,
            #A8CFFF,
            var(--skyra-blue)
        );

}


/*==================================================
ITEM
==================================================*/

.level-item{

    position:relative;

    z-index:2;

    width:24%;

    text-align:center;

}


/*==================================================
MARKER
==================================================*/

.level-marker{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    border-radius:50%;

    background:#fff;

    color:

        #A0AEC0;

    border:

        5px solid

        #E8EEF6;

    box-shadow:

        0 10px 25px

        rgba(11,42,74,.07);

    font-size:25px;

    transition:

        var(--skyra-transition);

}

.level-item.active .level-marker{

    color:#fff;

    background:

        var(--skyra-blue);

    border-color:

        #CFE3FF;

    box-shadow:

        0 15px 35px

        rgba(22,119,255,.25);

    transform:

        scale(1.12);

}


/*==================================================
NIVEAU
==================================================*/

.level-info small{

    display:block;

    margin-bottom:5px;

    color:

        var(--skyra-blue);

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

}

.level-info h3{

    margin:0 0 7px;

    color:

        var(--skyra-blue-dark);

    font-size:25px;

    font-weight:800;

}

.level-info strong{

    display:block;

    margin-bottom:12px;

    color:

        #7B8798;

    font-size:12px;

}

.level-info p{

    max-width:210px;

    margin:auto;

    color:

        var(--skyra-muted);

    font-size:13px;

    line-height:1.7;

}


/*==================================================
VARIATIONS VISUELLES
==================================================*/

.level-bronze .level-marker{

    background:#F7F9FC;

}

.level-silver .level-marker{

    background:#F5F7FA;

}

.level-gold .level-marker{

    background:

        var(--skyra-blue);

}

.level-vip .level-marker{

    background:

        #0B2A4A;

    color:#fff;

    border-color:#D5E4F5;

}


/*==================================================
ZONE BAS
==================================================*/

.levels-bottom{

    display:grid;

    grid-template-columns:auto 1fr 330px;

    align-items:center;

    gap:20px;

    margin-top:65px;

    padding:22px 25px;

    border:

        1px solid

        var(--skyra-border);

    border-radius:20px;

    background:

        #F8FBFF;

}

.levels-bottom-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

}

.levels-bottom strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:14px;

}

.levels-bottom > div:nth-child(2) span{

    display:block;

    margin-top:3px;

    color:

        var(--skyra-muted);

    font-size:12px;

}


/*==================================================
PROGRESSION BAS
==================================================*/

.levels-bottom-progress{

    width:100%;

}

.levels-bottom-progress > div:first-child{

    display:flex;

    justify-content:space-between;

    margin-bottom:7px;

}

.levels-bottom-progress span{

    color:

        var(--skyra-muted);

    font-size:11px;

}

.levels-bottom-progress strong{

    color:

        var(--skyra-blue);

    font-size:11px;

}

.progress-track{

    width:100%;

    height:7px;

    overflow:hidden;

    border-radius:10px;

    background:

        #E4EDF8;

}

.progress-track span{

    display:block;

    width:70%;

    height:100%;

    border-radius:10px;

    background:

        var(--skyra-blue);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

    .levels-intro{

        align-items:flex-start;

        flex-direction:column;

    }

    .levels-road{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:50px 25px;

    }

    .levels-road-line{

        display:none;

    }

    .level-item{

        width:100%;

    }

    .levels-bottom{

        grid-template-columns:auto 1fr;

    }

    .levels-bottom-progress{

        grid-column:1 / -1;

    }

}


@media(max-width:600px){

    .levels-intro h2{

        font-size:34px;

    }

    .levels-intro-badge{

        width:100%;

    }

    .levels-road{

        grid-template-columns:1fr;

        gap:35px;

    }

    .level-item{

        display:grid;

        grid-template-columns:70px 1fr;

        align-items:center;

        gap:20px;

        text-align:left;

    }

    .level-marker{

        width:65px;

        height:65px;

        margin:0;

    }

    .level-item.active .level-marker{

        transform:scale(1.05);

    }

    .level-info p{

        max-width:none;

        margin:0;

    }

    .levels-bottom{

        padding:20px;

    }

}


/*==================================================
SKYRA REWARDS
BLOC 4 — MISSIONS
==================================================*/


.rewards-missions{

    position:relative;

    background:

        #F6F9FD;

    overflow:hidden;

}


/*==================================================
HEADER
==================================================*/

.missions-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

    margin-bottom:55px;

}

.missions-header .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.missions-header h2{

    max-width:700px;

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.missions-header h2 span{

    color:

        var(--skyra-blue);

}

.missions-header p{

    max-width:620px;

    margin:18px 0 0;

    color:

        var(--skyra-muted);

    font-size:16px;

    line-height:1.8;

}


/*==================================================
SCORE
==================================================*/

.missions-score{

    min-width:180px;

    padding:20px 24px;

    border-left:

        3px solid

        var(--skyra-blue);

    background:#fff;

}

.missions-score span{

    display:block;

    color:

        var(--skyra-muted);

    font-size:11px;

}

.missions-score strong{

    display:block;

    margin:3px 0;

    color:

        var(--skyra-blue);

    font-size:34px;

    line-height:1;

}

.missions-score small{

    color:

        var(--skyra-muted);

    font-size:11px;

}


/*==================================================
MISSION PRINCIPALE
==================================================*/

.mission-feature{

    position:relative;

    display:grid;

    grid-template-columns:

        1.2fr .8fr;

    min-height:390px;

    overflow:hidden;

    border-radius:35px;

    background:

        var(--skyra-blue-dark);

    box-shadow:

        0 30px 70px

        rgba(11,42,74,.12);

}


/*==================================================
DECOR
==================================================*/

.mission-feature::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-200px;

    top:-250px;

    border-radius:50%;

    background:

        rgba(22,119,255,.25);

}

.mission-feature::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    left:-150px;

    bottom:-180px;

    border-radius:50%;

    background:

        rgba(255,255,255,.04);

}


/*==================================================
CONTENU
==================================================*/

.mission-feature-content{

    position:relative;

    z-index:2;

    padding:55px;

}

.mission-label{

    display:inline-flex;

    align-items:center;

    gap:9px;

    padding:8px 14px;

    border-radius:30px;

    background:

        rgba(255,255,255,.10);

    color:#A9CEFF;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

}

.mission-feature h3{

    max-width:600px;

    margin:

        22px 0 15px;

    color:#fff;

    font-size:42px;

    line-height:1.15;

    font-weight:800;

}

.mission-feature h3 span{

    color:

        #75B1FF;

}

.mission-feature-content > p{

    max-width:590px;

    margin-bottom:30px;

    color:

        #B9C7D8;

    font-size:14px;

    line-height:1.8;

}


/*==================================================
PROGRESSION
==================================================*/

.mission-progress{

    max-width:520px;

}

.mission-progress-head{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:9px;

}

.mission-progress-head span{

    color:#B9C7D8;

    font-size:12px;

}

.mission-progress-head strong{

    color:#fff;

    font-size:12px;

}

.mission-progress-track{

    width:100%;

    height:8px;

    overflow:hidden;

    border-radius:20px;

    background:

        rgba(255,255,255,.12);

}

.mission-progress-track span{

    display:block;

    width:60%;

    height:100%;

    border-radius:20px;

    background:

        linear-gradient(
            90deg,
            #1677FF,
            #75B1FF
        );

}


/*==================================================
RECOMPENSE
==================================================*/

.mission-reward{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:25px;

}

.mission-reward-icon{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:13px;

    background:

        rgba(255,255,255,.10);

    color:

        #75B1FF;

}

.mission-reward small{

    display:block;

    color:#8FA5BC;

    font-size:10px;

}

.mission-reward strong{

    color:#fff;

    font-size:14px;

}


/*==================================================
VISUEL
==================================================*/

.mission-feature-visual{

    position:relative;

    min-height:390px;

    display:flex;

    align-items:center;

    justify-content:center;

}


/*==================================================
ICONE PRINCIPALE
==================================================*/

.mission-big-icon{

    position:relative;

    z-index:3;

    width:180px;

    height:180px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        rgba(255,255,255,.08);

    border:

        1px solid

        rgba(255,255,255,.12);

    color:

        #75B1FF;

    font-size:70px;

    box-shadow:

        0 20px 60px

        rgba(0,0,0,.15);

}


/*==================================================
ELEMENTS FLOTTANTS
==================================================*/

.mission-floating{

    position:absolute;

    z-index:4;

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 15px;

    border-radius:30px;

    background:#fff;

    color:

        var(--skyra-blue-dark);

    font-size:11px;

    font-weight:700;

    box-shadow:

        0 15px 35px

        rgba(0,0,0,.15);

    animation:

        missionFloat 4s ease-in-out infinite;

}

.mission-floating i{

    color:

        var(--skyra-blue);

}

.mission-floating-one{

    top:55px;

    left:20px;

}

.mission-floating-two{

    right:20px;

    top:130px;

    animation-delay:.8s;

}

.mission-floating-three{

    right:70px;

    bottom:55px;

    animation-delay:1.5s;

}


/*==================================================
MISSIONS SECONDAIRES
==================================================*/

.missions-list{

    margin-top:30px;

}

.mission-row{

    display:grid;

    grid-template-columns:

        55px
        1fr
        220px
        auto;

    align-items:center;

    gap:20px;

    padding:22px 25px;

    margin-bottom:12px;

    background:#fff;

    border:

        1px solid

        var(--skyra-border);

    transition:

        var(--skyra-transition);

}

.mission-row:hover{

    transform:

        translateX(5px);

    border-color:

        rgba(22,119,255,.20);

}

.mission-row-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

}

.mission-row-content strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:14px;

}

.mission-row-content span{

    display:block;

    margin-top:4px;

    color:

        var(--skyra-muted);

    font-size:11px;

}

.mission-row-progress > div:first-child{

    display:flex;

    justify-content:space-between;

    margin-bottom:6px;

}

.mission-row-progress span{

    color:

        var(--skyra-muted);

    font-size:10px;

}

.mission-row-progress strong{

    color:

        var(--skyra-blue);

    font-size:10px;

}

.small-progress{

    width:100%;

    height:6px;

    overflow:hidden;

    border-radius:20px;

    background:

        #E6EEF8;

}

.small-progress span{

    display:block;

    width:100%;

    height:100%;

    border-radius:20px;

    background:

        var(--skyra-blue);

}

.mission-row:nth-child(2)
.small-progress span{

    width:66%;

}

.mission-row:nth-child(3)
.small-progress span{

    width:25%;

}

.mission-row-reward{

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:800;

    white-space:nowrap;

}


/*==================================================
ANIMATION
==================================================*/

@keyframes missionFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

    .missions-header{

        align-items:flex-start;

        flex-direction:column;

    }

    .mission-feature{

        grid-template-columns:1fr;

    }

    .mission-feature-visual{

        min-height:300px;

    }

    .mission-row{

        grid-template-columns:

            55px 1fr;

    }

    .mission-row-progress{

        grid-column:2;

    }

    .mission-row-reward{

        grid-column:2;

    }

}


@media(max-width:600px){

    .missions-header h2{

        font-size:34px;

    }

    .mission-feature-content{

        padding:30px 25px;

    }

    .mission-feature h3{

        font-size:31px;

    }

    .mission-big-icon{

        width:140px;

        height:140px;

        font-size:55px;

    }

    .mission-floating-one{

        left:5px;

    }

    .mission-floating-two{

        right:5px;

    }

    .mission-floating-three{

        right:20px;

    }

    .mission-row{

        padding:18px;

        gap:14px;

    }

}


/*==================================================
SKYRA REWARDS
BLOC 5 — RECOMPENSES
==================================================*/


.rewards-gifts{

    position:relative;

    background:#fff;

    overflow:hidden;

}


/*==================================================
CONTENEUR GLOBAL SKYRA REWARDS
==================================================*/

.rewards-page .container,
.rewards-levels .container,
.rewards-missions .container,
.rewards-gifts .container {

    width:100%;

    max-width:1280px;

    margin-left:auto;
    margin-right:auto;

    padding-left:30px;
    padding-right:30px;

}


/*==================================================
SECTIONS
==================================================*/

.rewards-levels,
.rewards-missions,
.rewards-gifts {

    width:100%;

    padding-top:90px;
    padding-bottom:90px;

}


/*==================================================
GRAND ECRAN
==================================================*/

@media(min-width:1400px){

    .rewards-page .container,
    .rewards-levels .container,
    .rewards-missions .container,
    .rewards-gifts .container {

        max-width:1320px;

    }

}


/*==================================================
TABLETTE
==================================================*/

@media(max-width:900px){

    .rewards-page .container,
    .rewards-levels .container,
    .rewards-missions .container,
    .rewards-gifts .container {

        padding-left:25px;
        padding-right:25px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:600px){

    .rewards-page .container,
    .rewards-levels .container,
    .rewards-missions .container,
    .rewards-gifts .container {

        padding-left:18px;
        padding-right:18px;

    }

    .rewards-levels,
    .rewards-missions,
    .rewards-gifts {

        padding-top:60px;
        padding-bottom:60px;

    }

}

/*==================================================
HEADER
==================================================*/

.gifts-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

    margin-bottom:55px;

}

.gifts-header .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.gifts-header h2{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.gifts-header h2 span{

    color:

        var(--skyra-blue);

}

.gifts-header p{

    max-width:650px;

    margin:18px 0 0;

    color:

        var(--skyra-muted);

    font-size:16px;

    line-height:1.8;

}

.gifts-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    flex-shrink:0;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-decoration:none;

    transition:

        var(--skyra-transition);

}

.gifts-link:hover{

    gap:15px;

}


/*==================================================
GRANDE RECOMPENSE
==================================================*/

.featured-reward{

    position:relative;

    display:grid;

    grid-template-columns:

        1.2fr .8fr;

    min-height:420px;

    overflow:hidden;

    border-radius:35px;

    background:

        var(--skyra-blue);

}


/* DECORATIONS */

.featured-reward::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-180px;

    top:-250px;

    border-radius:50%;

    border:

        1px solid

        rgba(255,255,255,.12);

}

.featured-reward::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    left:-140px;

    bottom:-180px;

    border-radius:50%;

    background:

        rgba(255,255,255,.05);

}


/*==================================================
CONTENU
==================================================*/

.featured-reward-content{

    position:relative;

    z-index:2;

    padding:55px;

}

.featured-tag{

    display:inline-flex;

    padding:8px 14px;

    border-radius:30px;

    background:

        rgba(255,255,255,.13);

    color:#fff;

    font-size:11px;

    font-weight:700;

}

.featured-reward h3{

    max-width:650px;

    margin:

        22px 0 18px;

    color:#fff;

    font-size:42px;

    line-height:1.15;

    font-weight:800;

}

.featured-reward h3 span{

    color:

        #B9D9FF;

}

.featured-reward-content > p{

    max-width:600px;

    margin:0 0 28px;

    color:

        #D7E8FA;

    font-size:14px;

    line-height:1.8;

}


/*==================================================
COUT
==================================================*/

.featured-cost{

    display:flex;

    align-items:center;

    gap:13px;

    margin-bottom:28px;

}

.cost-icon{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:

        rgba(255,255,255,.13);

    color:#fff;

}

.featured-cost small{

    display:block;

    color:

        #B9D9FF;

    font-size:10px;

}

.featured-cost strong{

    display:block;

    margin-top:2px;

    color:#fff;

    font-size:16px;

}


/*==================================================
BOUTON
==================================================*/

.btn-reward{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 20px;

    border-radius:12px;

    background:#fff;

    color:

        var(--skyra-blue);

    font-size:12px;

    font-weight:800;

    text-decoration:none;

    transition:

        var(--skyra-transition);

}

.btn-reward:hover{

    transform:

        translateY(-3px);

    box-shadow:

        0 12px 30px

        rgba(0,0,0,.15);

}


/*==================================================
VISUEL
==================================================*/

.featured-reward-visual{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}


/*==================================================
CERCLE
==================================================*/

.reward-circle{

    position:relative;

    z-index:2;

    width:190px;

    height:190px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        rgba(255,255,255,.10);

    border:

        1px solid

        rgba(255,255,255,.18);

    color:#fff;

    font-size:70px;

    box-shadow:

        0 25px 70px

        rgba(0,0,0,.15);

}


/*==================================================
BULLES
==================================================*/

.reward-bubble{

    position:absolute;

    z-index:3;

    display:flex;

    align-items:center;

    gap:8px;

    padding:11px 15px;

    border-radius:30px;

    background:#fff;

    color:

        var(--skyra-blue-dark);

    font-size:11px;

    font-weight:800;

    box-shadow:

        0 15px 35px

        rgba(0,0,0,.15);

}

.reward-bubble i{

    color:

        var(--skyra-blue);

}

.reward-bubble-one{

    top:75px;

    left:20px;

}

.reward-bubble-two{

    right:20px;

    bottom:75px;

}


/*==================================================
OPTIONS
==================================================*/

.reward-options{

    margin-top:30px;

    display:grid;

    grid-template-columns:

        1fr 1fr;

    gap:12px;

}

.reward-option{

    display:grid;

    grid-template-columns:

        55px 1fr auto;

    align-items:center;

    gap:18px;

    padding:22px 24px;

    background:

        #F8FBFF;

    border:

        1px solid

        var(--skyra-border);

    transition:

        var(--skyra-transition);

}

.reward-option:hover{

    transform:

        translateY(-4px);

    background:#fff;

    border-color:

        rgba(22,119,255,.20);

    box-shadow:

        0 15px 35px

        rgba(11,42,74,.06);

}

.reward-option-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

    font-size:18px;

}

.reward-option-info span{

    display:block;

    margin-bottom:3px;

    color:

        var(--skyra-blue);

    font-size:10px;

    font-weight:700;

    text-transform:uppercase;

}

.reward-option-info h3{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:14px;

}

.reward-option-info p{

    margin:4px 0 0;

    color:

        var(--skyra-muted);

    font-size:11px;

    line-height:1.5;

}

.reward-option > strong{

    color:

        var(--skyra-blue);

    font-size:13px;

    white-space:nowrap;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

    .gifts-header{

        align-items:flex-start;

        flex-direction:column;

    }

    .featured-reward{

        grid-template-columns:1fr;

    }

    .featured-reward-visual{

        min-height:280px;

    }

    .reward-options{

        grid-template-columns:1fr;

    }

}


@media(max-width:600px){

    .gifts-header h2{

        font-size:34px;

    }

    .featured-reward-content{

        padding:30px 25px;

    }

    .featured-reward h3{

        font-size:31px;

    }

    .reward-circle{

        width:140px;

        height:140px;

        font-size:52px;

    }

    .reward-bubble-one{

        left:5px;

    }

    .reward-bubble-two{

        right:5px;

    }

    .reward-option{

        grid-template-columns:

            50px 1fr;

        padding:18px;

    }

    .reward-option > strong{

        grid-column:2;

    }

}



/*==================================================
SKYRA REWARDS
BLOC 6 — CASHBACK
==================================================*/

.rewards-cashback{

    position:relative;

    background:#fff;

    overflow:hidden;

}


/*==================================================
HEADER
==================================================*/

.cashback-header{

    max-width:760px;

    margin-bottom:55px;

}

.cashback-header .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.cashback-header h2{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.cashback-header h2 span{

    color:

        var(--skyra-blue);

}

.cashback-header p{

    max-width:680px;

    margin-top:18px;

    color:

        var(--skyra-muted);

    font-size:16px;

    line-height:1.8;

}


/*==================================================
LAYOUT
==================================================*/

.cashback-layout{

    display:grid;

    grid-template-columns:

        1fr 1fr;

    gap:70px;

    align-items:center;

}


/*==================================================
CONTENU
==================================================*/

.cashback-content{

    position:relative;

}

.cashback-number{

    display:flex;

    align-items:baseline;

    gap:8px;

    margin-bottom:18px;

}

.cashback-number span{

    color:

        var(--skyra-muted);

    font-size:13px;

}

.cashback-number strong{

    color:

        var(--skyra-blue);

    font-size:64px;

    line-height:1;

    font-weight:900;

}

.cashback-number small{

    color:

        var(--skyra-muted);

    font-size:12px;

}


.cashback-content h3{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:30px;

    font-weight:800;

}

.cashback-content h3 span{

    color:

        var(--skyra-blue);

}

.cashback-content > p{

    max-width:570px;

    margin:15px 0 30px;

    color:

        var(--skyra-muted);

    font-size:14px;

    line-height:1.8;

}


/*==================================================
ETAPES
==================================================*/

.cashback-steps{

    border-left:

        2px solid

        #DDEBFA;

}

.cashback-step{

    display:flex;

    align-items:center;

    gap:18px;

    padding:13px 0 13px 20px;

}

.cashback-step > span{

    width:34px;

    height:34px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

    font-size:10px;

    font-weight:800;

}

.cashback-step strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:13px;

}

.cashback-step small{

    display:block;

    margin-top:3px;

    color:

        var(--skyra-muted);

    font-size:11px;

}


/*==================================================
VISUEL
==================================================*/

.cashback-visual{

    min-height:440px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}


/*==================================================
ORBITE
==================================================*/

.cashback-orbit{

    position:relative;

    width:370px;

    height:370px;

    border-radius:50%;

    border:

        1px solid

        #DCEAF8;

}

.cashback-orbit::before{

    content:"";

    position:absolute;

    inset:35px;

    border-radius:50%;

    border:

        1px dashed

        #C9DDF2;

}

.cashback-orbit::after{

    content:"";

    position:absolute;

    inset:90px;

    border-radius:50%;

    background:

        #F3F8FE;

}


/*==================================================
CENTRE
==================================================*/

.cashback-center{

    position:absolute;

    z-index:3;

    left:50%;

    top:50%;

    width:145px;

    height:145px;

    transform:

        translate(-50%,-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue);

    color:#fff;

    box-shadow:

        0 25px 55px

        rgba(22,119,255,.22);

}

.cashback-center i{

    margin-bottom:5px;

    font-size:21px;

}

.cashback-center strong{

    font-size:28px;

    line-height:1;

}

.cashback-center span{

    margin-top:5px;

    font-size:10px;

    opacity:.8;

}


/*==================================================
ELEMENTS ORBITE
==================================================*/

.cashback-orbit-item{

    position:absolute;

    z-index:5;

    display:flex;

    align-items:center;

    gap:7px;

    padding:10px 14px;

    border-radius:30px;

    background:#fff;

    border:

        1px solid

        #E1EBF5;

    color:

        var(--skyra-blue-dark);

    font-size:11px;

    font-weight:800;

    box-shadow:

        0 12px 30px

        rgba(11,42,74,.08);

}

.cashback-orbit-item i{

    color:

        var(--skyra-blue);

}


/* POSITIONS */

.cashback-orbit-one{

    top:25px;

    left:35px;

}

.cashback-orbit-two{

    right:10px;

    top:105px;

}

.cashback-orbit-three{

    left:55px;

    bottom:35px;

}


/*==================================================
NOTE
==================================================*/

.cashback-note{

    display:flex;

    align-items:center;

    gap:13px;

    margin-top:45px;

    padding:16px 20px;

    border:

        1px solid

        #E2EBF4;

    background:

        #F8FBFF;

}

.cashback-note > i{

    color:

        var(--skyra-blue);

    font-size:16px;

}

.cashback-note p{

    margin:0;

    color:

        var(--skyra-muted);

    font-size:11px;

    line-height:1.6;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

    .cashback-layout{

        grid-template-columns:1fr;

        gap:40px;

    }

    .cashback-visual{

        min-height:400px;

    }

}


@media(max-width:600px){

    .cashback-header h2{

        font-size:34px;

    }

    .cashback-number strong{

        font-size:50px;

    }

    .cashback-content h3{

        font-size:26px;

    }

    .cashback-orbit{

        width:300px;

        height:300px;

    }

    .cashback-center{

        width:115px;

        height:115px;

    }

    .cashback-center strong{

        font-size:23px;

    }

    .cashback-orbit-item{

        padding:8px 11px;

        font-size:10px;

    }

    .cashback-orbit-one{

        left:5px;

    }

    .cashback-orbit-two{

        right:0;

    }

    .cashback-orbit-three{

        left:20px;

    }

}


/*==================================================
SKYRA REWARDS
BLOC 7 — PARRAINAGE
==================================================*/

.rewards-referral{

    position:relative;

    background:

        #F6F9FD;

    overflow:hidden;

}


/*==================================================
LAYOUT PRINCIPAL
==================================================*/

.referral-layout{

    display:grid;

    grid-template-columns:

        .85fr 1.15fr;

    gap:80px;

    align-items:center;

    min-height:500px;

}


/*==================================================
VISUEL
==================================================*/

.referral-visual{

    position:relative;

    width:420px;

    height:420px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

}


/*==================================================
CERCLE CENTRAL
==================================================*/

.referral-circle{

    position:relative;

    z-index:4;

    width:170px;

    height:170px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        var(--skyra-blue);

    color:#fff;

    font-size:60px;

    box-shadow:

        0 25px 70px

        rgba(22,119,255,.25);

}

.referral-circle::before{

    content:"";

    position:absolute;

    inset:-25px;

    border-radius:50%;

    border:

        1px dashed

        #BBD7F5;

}

.referral-circle::after{

    content:"";

    position:absolute;

    inset:-55px;

    border-radius:50%;

    border:

        1px solid

        #DCEAF8;

}


/*==================================================
UTILISATEURS
==================================================*/

.referral-user{

    position:absolute;

    z-index:5;

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:

        var(--skyra-blue);

    border:

        1px solid

        #DDEAF6;

    box-shadow:

        0 15px 35px

        rgba(11,42,74,.10);

}

.referral-user-one{

    top:20px;

    left:90px;

}

.referral-user-two{

    top:70px;

    right:35px;

}

.referral-user-three{

    right:45px;

    bottom:55px;

}


/*==================================================
LIGNES
==================================================*/

.referral-line{

    position:absolute;

    z-index:2;

    height:2px;

    background:

        #C9DDF2;

    transform-origin:left center;

}

.referral-line-one{

    width:150px;

    top:95px;

    left:145px;

    transform:rotate(-35deg);

}

.referral-line-two{

    width:140px;

    top:125px;

    left:215px;

    transform:rotate(15deg);

}

.referral-line-three{

    width:155px;

    bottom:105px;

    left:215px;

    transform:rotate(-25deg);

}


/*==================================================
CONTENU
==================================================*/

.referral-content .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.referral-content h2{

    max-width:650px;

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.referral-content h2 span{

    color:

        var(--skyra-blue);

}

.referral-content > p{

    max-width:600px;

    margin:18px 0 30px;

    color:

        var(--skyra-muted);

    font-size:15px;

    line-height:1.8;

}


/*==================================================
CODE
==================================================*/

.referral-code-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    max-width:560px;

    padding:18px 20px;

    background:#fff;

    border:

        1px solid

        var(--skyra-border);

    border-radius:16px;

}

.referral-code-box small{

    display:block;

    margin-bottom:5px;

    color:

        var(--skyra-muted);

    font-size:10px;

}

.referral-code-box strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:20px;

    letter-spacing:2px;

}

.referral-copy{

    display:flex;

    align-items:center;

    gap:7px;

    padding:10px 14px;

    border:0;

    border-radius:10px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

    font-size:11px;

    font-weight:700;

    cursor:pointer;

}


/*==================================================
RECOMPENSE
==================================================*/

.referral-reward{

    display:flex;

    align-items:center;

    gap:13px;

    margin-top:18px;

}

.referral-reward-icon{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:13px;

    background:

        var(--skyra-blue-light);

    color:

        var(--skyra-blue);

}

.referral-reward small{

    display:block;

    color:

        var(--skyra-muted);

    font-size:10px;

}

.referral-reward strong{

    display:block;

    margin-top:3px;

    color:

        var(--skyra-blue-dark);

    font-size:15px;

}


/*==================================================
BOUTON
==================================================*/

.btn-referral{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:24px;

    padding:14px 20px;

    border:0;

    border-radius:12px;

    background:

        var(--skyra-blue);

    color:#fff;

    font-size:12px;

    font-weight:800;

    cursor:pointer;

    transition:

        var(--skyra-transition);

}

.btn-referral:hover{

    transform:

        translateY(-3px);

    box-shadow:

        0 12px 30px

        rgba(22,119,255,.20);

}


/*==================================================
ETAPES
==================================================*/

.referral-steps{

    display:grid;

    grid-template-columns:

        1fr 1fr 1fr;

    gap:0;

    margin-top:50px;

    border-top:

        1px solid

        var(--skyra-border);

    border-bottom:

        1px solid

        var(--skyra-border);

}

.referral-step{

    display:flex;

    align-items:center;

    gap:15px;

    padding:25px;

    border-right:

        1px solid

        var(--skyra-border);

}

.referral-step:last-child{

    border-right:0;

}

.referral-step > span{

    color:

        #B8CBE0;

    font-size:22px;

    font-weight:900;

}

.referral-step strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:13px;

}

.referral-step small{

    display:block;

    margin-top:4px;

    color:

        var(--skyra-muted);

    font-size:10px;

    line-height:1.5;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

    .referral-layout{

        grid-template-columns:1fr;

        gap:30px;

    }

    .referral-visual{

        width:350px;

        height:350px;

    }

    .referral-steps{

        grid-template-columns:1fr;

    }

    .referral-step{

        border-right:0;

        border-bottom:

            1px solid

            var(--skyra-border);

    }

    .referral-step:last-child{

        border-bottom:0;

    }

}


@media(max-width:600px){

    .referral-content h2{

        font-size:34px;

    }

    .referral-visual{

        width:280px;

        height:280px;

    }

    .referral-circle{

        width:120px;

        height:120px;

        font-size:42px;

    }

    .referral-user{

        width:50px;

        height:50px;

    }

    .referral-user-one{

        top:15px;

        left:45px;

    }

    .referral-user-two{

        top:55px;

        right:10px;

    }

    .referral-user-three{

        right:15px;

        bottom:25px;

    }

    .referral-code-box{

        align-items:flex-start;

        flex-direction:column;

        gap:15px;

    }

    .referral-copy{

        width:100%;

        justify-content:center;

    }

}


/*==================================================
SKYRA REWARDS
BLOC 8 — HISTORIQUE
==================================================*/

.rewards-history{

    position:relative;

    background:#fff;

    overflow:hidden;

}


/*==================================================
HEADER
==================================================*/

.history-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

    margin-bottom:50px;

}

.history-header .mini-title{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:

        var(--skyra-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.history-header h2{

    margin:0;

    color:

        var(--skyra-blue-dark);

    font-size:46px;

    line-height:1.15;

    font-weight:800;

}

.history-header h2 span{

    color:

        var(--skyra-blue);

}

.history-header p{

    max-width:650px;

    margin-top:18px;

    color:

        var(--skyra-muted);

    font-size:15px;

    line-height:1.8;

}

.history-link{

    display:inline-flex;

    align-items:center;

    gap:9px;

    flex-shrink:0;

    color:

        var(--skyra-blue);

    font-size:12px;

    font-weight:800;

    text-decoration:none;

}


/*==================================================
RESUME
==================================================*/

.history-summary{

    display:grid;

    grid-template-columns:

        1.5fr 1fr 1fr 1fr;

    align-items:stretch;

    border:

        1px solid

        var(--skyra-border);

    background:

        #F8FBFF;

}


/*==================================================
PRINCIPAL
==================================================*/

.summary-main{

    padding:30px;

    background:

        var(--skyra-blue);

    color:#fff;

}

.summary-main > span{

    display:block;

    font-size:11px;

    opacity:.75;

}

.summary-main > strong{

    display:block;

    margin:6px 0 2px;

    font-size:42px;

    line-height:1;

}

.summary-main > small{

    font-size:11px;

    opacity:.75;

}


/*==================================================
PROGRESSION
==================================================*/

.summary-progress{

    margin-top:25px;

}

.summary-progress > div:first-child{

    display:flex;

    justify-content:space-between;

    margin-bottom:7px;

}

.summary-progress span{

    font-size:10px;

    opacity:.75;

}

.summary-progress strong{

    font-size:10px;

}

.summary-track{

    width:100%;

    height:6px;

    overflow:hidden;

    border-radius:20px;

    background:

        rgba(255,255,255,.18);

}

.summary-track span{

    display:block;

    width:82%;

    height:100%;

    border-radius:20px;

    background:#fff;

}


/*==================================================
STATISTIQUES
==================================================*/

.summary-stat{

    display:flex;

    align-items:center;

    gap:14px;

    padding:25px;

    border-left:

        1px solid

        var(--skyra-border);

}

.summary-stat > i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:13px;

    background:

        #EAF3FF;

    color:

        var(--skyra-blue);

}

.summary-stat small{

    display:block;

    color:

        var(--skyra-muted);

    font-size:10px;

}

.summary-stat strong{

    display:block;

    margin-top:4px;

    color:

        var(--skyra-blue-dark);

    font-size:20px;

}


/*==================================================
CONTENU
==================================================*/

.history-content{

    display:grid;

    grid-template-columns:

        1.5fr .5fr;

    gap:35px;

    margin-top:35px;

}


/*==================================================
LISTE
==================================================*/

.history-list{

    border-top:

        1px solid

        var(--skyra-border);

}

.history-item{

    display:grid;

    grid-template-columns:

        48px 1fr auto auto;

    align-items:center;

    gap:15px;

    padding:19px 5px;

    border-bottom:

        1px solid

        var(--skyra-border);

}

.history-icon{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

        #EEF5FC;

    color:

        var(--skyra-blue);

}

.history-icon.positive{

    background:

        #EAF7F0;

    color:

        #24935B;

}

.history-icon.reward{

    background:

        #EEF5FC;

    color:

        var(--skyra-blue);

}

.history-icon.cashback{

    background:

        #EEF5FC;

    color:

        var(--skyra-blue);

}

.history-icon.mission{

    background:

        #F0F5FF;

    color:

        var(--skyra-blue);

}

.history-icon.referral{

    background:

        #EAF7F0;

    color:

        #24935B;

}

.history-item-info strong{

    display:block;

    color:

        var(--skyra-blue-dark);

    font-size:13px;

}

.history-item-info span{

    display:block;

    margin-top:4px;

    color:

        var(--skyra-muted);

    font-size:10px;

}

.history-item-date{

    color:

        var(--skyra-muted);

    font-size:10px;

    white-space:nowrap;

}

.history-item-value{

    color:

        var(--skyra-blue-dark);

    font-size:12px;

    font-weight:800;

    white-space:nowrap;

}

.positive-text{

    color:

        #24935B;

}


/*==================================================
CTA
==================================================*/

.history-cta{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:center;

    padding:35px;

    border-radius:25px;

    background:

        var(--skyra-blue-dark);

    color:#fff;

}

.history-cta-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

    border-radius:15px;

    background:

        rgba(255,255,255,.10);

    color:

        #9BC9FF;

}

.history-cta h3{

    margin:0;

    font-size:24px;

}

.history-cta p{

    margin:10px 0 25px;

    color:

        #B9C7D8;

    font-size:12px;

    line-height:1.7;

}

.btn-history-order{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 17px;

    border-radius:11px;

    background:#fff;

    color:

        var(--skyra-blue);

    font-size:11px;

    font-weight:800;

    text-decoration:none;

    transition:

        var(--skyra-transition);

}

.btn-history-order:hover{

    transform:

        translateY(-3px);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1000px){

    .history-summary{

        grid-template-columns:

            1fr 1fr;

    }

    .summary-main{

        grid-column:

            1 / -1;

    }

    .summary-stat:nth-child(3){

        border-left:0;

    }

    .history-content{

        grid-template-columns:1fr;

    }

}


@media(max-width:700px){

    .history-header{

        align-items:flex-start;

        flex-direction:column;

    }

    .history-header h2{

        font-size:34px;

    }

    .history-summary{

        grid-template-columns:1fr;

    }

    .summary-main{

        grid-column:auto;

    }

    .summary-stat{

        border-left:0;

        border-top:

            1px solid

            var(--skyra-border);

    }

    .history-item{

        grid-template-columns:

            42px 1fr auto;

    }

    .history-item-date{

        display:none;

    }

    .history-item-value{

        grid-column:3;

    }

}


@media(max-width:500px){

    .history-content{

        margin-top:25px;

    }

    .history-item{

        gap:10px;

        padding:16px 0;

    }

    .history-item-info strong{

        font-size:12px;

    }

    .history-item-info span{

        font-size:9px;

    }

    .history-cta{

        padding:25px;

    }

}