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

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{
    background:#050505;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    overflow-x:hidden;
}

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

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

button{
    border:none;
    background:none;
    cursor:pointer;
}

:root{

    --red:#ff1b1b;
    --red2:#ff3d3d;
    --gold:#ffd24a;

    --bg:#050505;
    --card:#121212;
    --card2:#1b1b1b;

    --white:#ffffff;
    --text:#dcdcdc;

    --shadow-red:
        0 0 10px rgba(255,0,0,.45),
        0 0 30px rgba(255,0,0,.25);

}

.app{

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

    margin:auto;

    background:#050505;

    overflow:hidden;

    position:relative;

    padding-bottom:100px;

}

.header{

    position:sticky;

    top:0;

    z-index:999;

    height:74px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 22px;

    background:#080808;

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

}

.menu{

    width:52px;
    height:52px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--red);

    font-size:34px;

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

    box-shadow:var(--shadow-red);

}

.logo{

    display:flex;

    align-items:center;

    justify-content:center;

}

.logo img{

    width:170px;

    height:auto;

}

.gift{

    width:52px;
    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    border-radius:14px;

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

    box-shadow:var(--shadow-red);

}

.running{

    height:44px;

    overflow:hidden;

    white-space:nowrap;

    display:flex;

    align-items:center;

    background:

    linear-gradient(
    180deg,
    #5d0000,
    #c40000,
    #5d0000);

    border-top:1px solid #ff2929;

    border-bottom:1px solid #ff2929;

}

.running span{

    display:inline-block;

    padding-left:100%;

    animation:running 18s linear infinite;

    font-size:15px;

    font-weight:bold;

    will-change:transform;

}

@keyframes running{

    to{

        transform:translateX(-100%);

    }

}

.hero{
    position:relative;
    min-height:720px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.97) 0%,
            rgba(0,0,0,.82) 42%,
            rgba(0,0,0,.15) 72%
        ),
        url("../images/hero.webp");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
}

.hero-text{

    width:100%;

    max-width:640px;

    padding-left:70px;

    position:relative;

    z-index:3;

}

/* HERO CONTENT */

.label{
    display:inline-block;
    padding:8px 16px;
    margin-bottom:18px;
    background:linear-gradient(180deg,#ff1616,#b00000);
    color:#fff;
    font-size:34px;
    font-weight:900;
    font-style:italic;
    border-radius:8px;
    border:1px solid #ff4b4b;
    box-shadow:var(--shadow-red);
}

.hero-text h1{
    font-size:76px;
    line-height:.95;
    font-weight:900;
    text-shadow:0 4px 14px #000;
    margin-bottom:26px;
}

.hero-text h1 span{
    color:var(--red);
    text-shadow:
        0 0 12px red,
        0 0 28px rgba(255,0,0,.9);
}

.feature-line{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    margin-bottom:34px;
    border:1px solid var(--red);
    border-radius:999px;
    background:rgba(0,0,0,.65);
    font-size:16px;
    font-weight:700;
}

.feature-line b{
    color:var(--red);
}

.hero-text p{
    max-width:460px;
    color:#f2f2f2;
    font-size:18px;
    line-height:1.75;
}

.hero-text p::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    margin-top:28px;
    background:var(--red);
    box-shadow:0 0 12px red;
}

/* CTA BUTTON */

.cta{
    position:relative;
    z-index:5;
    max-width:820px;
    margin:-80px auto 0;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.cta-btn{
    min-height:105px;
    display:grid;
    grid-template-columns:56px 1fr 24px;
    align-items:center;
    gap:14px;
    padding:18px;
    border-radius:18px;
    border:1px solid var(--red);
    color:#fff;
    background:linear-gradient(145deg,rgba(255,0,0,.85),rgba(50,0,0,.95));
    box-shadow:
        0 0 25px rgba(255,0,0,.75),
        inset 0 0 18px rgba(255,255,255,.08);
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-6px) scale(1.02);
}

.cta-btn.login{
    background:linear-gradient(145deg,rgba(40,40,40,.95),rgba(5,5,5,.95));
}

.icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    font-size:26px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.2);
}

.cta-btn strong{
    display:block;
    font-size:28px;
    font-weight:900;
}

.cta-btn span{
    color:var(--gold);
    font-size:14px;
    font-weight:900;
}

.cta-btn em{
    font-size:48px;
    font-style:normal;
}

/*==================================
            CARDS
==================================*/

.cards{

    width:100%;

    max-width:1180px;

    margin:55px auto 0;

    padding:0 20px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.card{

    position:relative;

    overflow:hidden;

    min-height:220px;

    padding:30px 22px;

    border-radius:22px;

    background:
    linear-gradient(
    180deg,
    rgba(20,20,20,.96),
    rgba(10,10,10,.92));

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

    backdrop-filter:blur(18px);

    transition:.35s;

    box-shadow:

    inset 0 0 18px rgba(255,255,255,.03),

    0 0 22px rgba(255,0,0,.18);

}

.card::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:0;

    transition:.4s;

    background:

    radial-gradient(circle at top,

    rgba(255,0,0,.28),

    transparent 70%);

}

.card:hover{

    transform:

    translateY(-12px)

    scale(1.03);

    border-color:#ff4040;

    box-shadow:

    0 0 28px rgba(255,0,0,.45),

    inset 0 0 20px rgba(255,255,255,.06);

}

.card:hover::before{

    opacity:1;

}

.card-icon{

    width:78px;

    height:78px;

    margin:auto;

    margin-bottom:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:46px;

    color:#ffd84d;

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03));

    box-shadow:

    0 0 22px rgba(255,0,0,.22);

}

.card h3{

    text-align:center;

    font-size:31px;

    font-weight:900;

    line-height:1.15;

    margin-bottom:18px;

}

.card p{

    text-align:center;

    font-size:17px;

    line-height:1.8;

    color:#d5d5d5;

}

.card::after{

    content:"";

    position:absolute;

    left:25px;

    right:25px;

    bottom:0;

    height:2px;

    background:#ff2020;

    box-shadow:

    0 0 15px red;

}

/*==================================
        BOTTOM NAV PREMIUM
==================================*/

.bottom-nav{
    width:min(900px,95%);
    height:76px;
    margin:45px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:rgba(5,5,5,.95);
    border:1px solid rgba(255,35,35,.75);
    border-radius:22px;
    box-shadow:0 0 28px rgba(255,0,0,.45);
    overflow:hidden;
}

.bottom-nav a{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    color:#ddd;
    font-size:25px;
    transition:.3s;
}

.bottom-nav a span{
    font-size:12px;
    font-weight:900;
}

.bottom-nav a:hover,
.bottom-nav a.active{
    color:#ff2b2b;
    text-shadow:0 0 14px red;
}

.bottom-nav a.active::after{
    content:"";
    position:absolute;
    bottom:0;
    width:55%;
    height:4px;
    border-radius:10px 10px 0 0;
    background:#ff2424;
    box-shadow:0 0 14px red;
}

.header.scrolled{
    background:rgba(5,5,5,.92);
    backdrop-filter:blur(14px);
    box-shadow:0 0 22px rgba(255,0,0,.35);
}

/* PROVIDER SECTION */

.provider-section{
    width:100%;
    max-width:1180px;
    margin:70px auto 0;
    padding:0 20px;
}

.section-head{
    text-align:center;
    margin-bottom:28px;
}

.section-head span{
    display:inline-block;
    color:var(--gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-head h2{
    font-size:38px;
    font-weight:900;
    margin-bottom:12px;
}

.section-head p{
    max-width:560px;
    margin:auto;
    color:#cfcfcf;
    font-size:15px;
    line-height:1.7;
}

.provider-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.provider-item{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(255,30,30,.65);
    background:rgba(15,15,15,.75);
    box-shadow:
        inset 0 0 18px rgba(255,255,255,.04),
        0 0 18px rgba(255,0,0,.22);
    color:#fff;
    font-size:18px;
    font-weight:900;
    letter-spacing:1px;
    transition:.3s;
}

.provider-item:hover{
    transform:translateY(-6px);
    border-color:#ff4040;
    box-shadow:0 0 26px rgba(255,0,0,.45);
}

/* STATS SECTION */

.stats-section{
    width:100%;
    max-width:1180px;
    margin:55px auto 0;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.stat-box{
    min-height:125px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:20px;
    border:1px solid rgba(255,30,30,.65);
    background:
        linear-gradient(180deg,rgba(20,20,20,.95),rgba(8,8,8,.95));
    box-shadow:
        inset 0 0 18px rgba(255,255,255,.04),
        0 0 18px rgba(255,0,0,.25);
}

.stat-box h3{
    color:var(--red);
    font-size:34px;
    font-weight:900;
    margin-bottom:8px;
    text-shadow:0 0 16px red;
}

.stat-box p{
    color:#d0d0d0;
    font-size:14px;
    font-weight:700;
}

/* PROMO SECTION */

.promo-section{
    width:100%;
    max-width:1180px;
    margin:60px auto 0;
    padding:0 20px;
}

.promo-box{
    min-height:230px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:38px;
    border-radius:28px;
    border:1px solid rgba(255,30,30,.75);
    background:
        linear-gradient(120deg,rgba(120,0,0,.75),rgba(10,10,10,.95)),
        radial-gradient(circle at right,rgba(255,0,0,.35),transparent 45%);
    box-shadow:
        inset 0 0 22px rgba(255,255,255,.04),
        0 0 28px rgba(255,0,0,.35);
}

.promo-box span{
    color:var(--gold);
    font-size:13px;
    font-weight:900;
    letter-spacing:3px;
}

.promo-box h2{
    font-size:42px;
    margin:12px 0;
    font-weight:900;
}

.promo-box p{
    max-width:620px;
    color:#e0e0e0;
    font-size:16px;
    line-height:1.7;
}

.promo-btn{
    min-width:170px;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:linear-gradient(145deg,#ff2020,#7a0000);
    border:1px solid #ff5050;
    box-shadow:0 0 20px rgba(255,0,0,.65);
    font-size:14px;
    font-weight:900;
    transition:.3s;
}

.promo-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,0,0,.85);
}

/* FAQ SECTION */

.faq-section{
    width:100%;
    max-width:900px;
    margin:65px auto 0;
    padding:0 20px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    border-radius:18px;
    border:1px solid rgba(255,30,30,.65);
    background:rgba(15,15,15,.78);
    box-shadow:0 0 18px rgba(255,0,0,.22);
    overflow:hidden;
}

.faq-item summary{
    cursor:pointer;
    padding:20px 22px;
    font-size:16px;
    font-weight:900;
    list-style:none;
    position:relative;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:22px;
    color:var(--red);
    font-size:24px;
    top:50%;
    transform:translateY(-50%);
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 22px 22px;
    color:#d0d0d0;
    font-size:14px;
    line-height:1.7;
}

/* FOOTER PREMIUM */

.footer-premium{
    width:100%;
    max-width:1180px;
    margin:70px auto 0;
    padding:42px 20px 110px;
    text-align:center;
    border-top:1px solid rgba(255,30,30,.35);
}

.footer-logo{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.footer-logo img{
    width:160px;
    height:auto;
}

.footer-premium p{
    max-width:620px;
    margin:0 auto 25px;
    color:#cfcfcf;
    font-size:14px;
    line-height:1.7;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:25px;
}

.footer-links a{
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(255,30,30,.45);
    background:rgba(15,15,15,.75);
    font-size:13px;
    font-weight:800;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--red);
    box-shadow:0 0 18px rgba(255,0,0,.35);
}

.footer-copy{
    color:#777;
    font-size:12px;
}

/* PREMIUM EXPERIENCE PACK - STEP 1 */

.cta-btn,
.card,
.provider-item,
.stat-box,
.promo-btn,
.footer-links a,
.bottom-nav a{
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease,
        color .35s ease;
}

.cta-btn:hover,
.provider-item:hover,
.promo-btn:hover,
.footer-links a:hover{
    transform:translateY(-6px);
}

.card:hover{
    transform:translateY(-10px) scale(1.025);
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 0 24px rgba(255,0,0,.45);
}

.bottom-nav a.active{
    transform:scale(1.05);
}

/* PREMIUM EXPERIENCE PACK - STEP 2 */
/* Scroll reveal */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

/* PREMIUM EXPERIENCE PACK - STEP 3 */
/* Bottom nav active premium */

.bottom-nav a{
    overflow:hidden;
}

.bottom-nav a::before{
    content:"";
    position:absolute;
    inset:10px;
    border-radius:16px;
    background:rgba(255,0,0,.12);
    opacity:0;
    transition:.35s;
}

.bottom-nav a:hover::before,
.bottom-nav a.active::before{
    opacity:1;
}

.bottom-nav a:hover{
    transform:translateY(-3px);
}

.bottom-nav a.active{
    color:#ff2b2b;
    text-shadow:0 0 14px red;
}

.counter{
    animation:statGlow 2s ease-in-out infinite;
}

@keyframes statGlow{
    0%,100%{
        text-shadow:0 0 12px rgba(255,0,0,.65);
    }
    50%{
        text-shadow:0 0 24px rgba(255,0,0,1);
    }
}

/* PREMIUM EXPERIENCE PACK - STEP 5 */
/* Loading screen */

.loader{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    background:#050505;
    transition:opacity .45s ease, visibility .45s ease;
}

.loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-ring{
    width:58px;
    height:58px;
    border-radius:50%;
    border:4px solid rgba(255,255,255,.12);
    border-top-color:var(--red);
    box-shadow:0 0 22px rgba(255,0,0,.75);
    animation:loaderSpin 1s linear infinite;
}

.loader p{
    color:#fff;
    font-size:14px;
    font-weight:900;
    letter-spacing:2px;
}

@keyframes loaderSpin{
    to{
        transform:rotate(360deg);
    }
}

/*==================================
        CURSOR GLOW
==================================*/

.cursor-glow{

    position:fixed;

    width:260px;

    height:260px;

    left:0;

    top:0;

    border-radius:50%;

    pointer-events:none;

    z-index:1;

    opacity:.28;

    transform:translate(-50%,-50%);

    background:
    radial-gradient(circle,
    rgba(255,40,40,.35),
    rgba(255,0,0,.08),
    transparent 72%);

    filter:blur(12px);

    transition:
    transform .08s linear,
    opacity .25s;

}

/* SVG ICON PREMIUM PACK */

.icon,
.card-icon{
    background-position:center;
    background-repeat:no-repeat;
    background-size:58%;
}

.icon-user{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M19 8v6'/%3E%3Cpath d='M22 11h-6'/%3E%3C/svg%3E");
}

.icon-lock{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='10' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

.icon-trophy{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M7 4h10v5a5 5 0 0 1-10 0V4Z'/%3E%3Cpath d='M5 5H3v3a4 4 0 0 0 4 4'/%3E%3Cpath d='M19 5h2v3a4 4 0 0 1-4 4'/%3E%3C/svg%3E");
}

.icon-bolt{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l1-7Z'/%3E%3C/svg%3E");
}

.icon-shield{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.icon-headset{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-2v-8h4v6Z'/%3E%3Cpath d='M3 19a2 2 0 0 0 2 2h2v-8H3v6Z'/%3E%3C/svg%3E");
}

/*==================================
      PREMIUM NAV ICON
==================================*/

.nav-icon{

    width:28px;

    height:28px;

    margin-bottom:6px;

    background-repeat:no-repeat;

    background-position:center;

    background-size:contain;

    transition:.35s;

    filter:
    drop-shadow(0 0 6px rgba(255,0,0,.35));

}

.bottom-nav a:hover .nav-icon{

    transform:
    scale(1.15);

}

.bottom-nav a.active .nav-icon{

    transform:
    scale(1.15);

    filter:

    drop-shadow(0 0 12px red);

}

.icon-gift{

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffd24a' viewBox='0 0 24 24'%3E%3Cpath d='M20 7h-2.18A3 3 0 0013 3a2.98 2.98 0 00-2 1 2.98 2.98 0 00-2-1 3 3 0 00-4.82 4H2v4h1v10h18V11h1V7Zm-8-2a1 1 0 011 1 1 1 0 01-2 0 1 1 0 011-1Zm-4 2a1 1 0 010-2 1 1 0 010 2Zm4 14H5v-8h7v8Zm7 0h-5v-8h5v8Zm0-10H3V9h16v2Z'/%3E%3C/svg%3E");

}

.icon-register{

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h9l5 5v15H6zM14 3v5h5'/%3E%3C/svg%3E");

}

.icon-login{

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M10 17l5-5-5-5v3H2v4h8v3Zm9-14H8v4h2V5h9v14h-9v-2H8v4h11V3Z'/%3E%3C/svg%3E");

}

.icon-chat{

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v12H7l-3 3V4z'/%3E%3C/svg%3E");

}

.bottom-nav a.active{

    animation:

    navPulse 2s infinite;

}

@keyframes navPulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

}

/* STEP 9 - PROVIDER LOGO PREMIUM */

.provider-item{
    flex-direction:column;
    gap:6px;
    position:relative;
    overflow:hidden;
}

.provider-item::before{
    content:"";
    position:absolute;
    inset:-60%;
    background:conic-gradient(
        transparent,
        rgba(255,0,0,.35),
        transparent,
        rgba(255,210,74,.25),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.provider-item::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:17px;
    background:rgba(10,10,10,.92);
    z-index:1;
}

.provider-item strong,
.provider-item span{
    position:relative;
    z-index:2;
}

.provider-item strong{
    font-size:20px;
    font-weight:900;
    color:#fff;
}

.provider-item span{
    color:var(--gold);
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
}

.provider-item:hover::before{
    opacity:1;
    animation:providerRotate 3s linear infinite;
}

@keyframes providerRotate{
    to{
        transform:rotate(360deg);
    }
}

/* STEP 10 - PREMIUM FOOTER UPGRADE */

.footer-premium{
    width:100%;
    max-width:1180px;
    margin:80px auto 0;
    padding:45px 20px 120px;
    border-top:1px solid rgba(255,30,30,.35);
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:35px;
    padding:30px;
    border-radius:26px;
    border:1px solid rgba(255,30,30,.45);
    background:
        linear-gradient(180deg,rgba(20,20,20,.92),rgba(8,8,8,.95));
    box-shadow:
        inset 0 0 20px rgba(255,255,255,.04),
        0 0 28px rgba(255,0,0,.22);
}

.footer-brand img{
    width:160px;
    height:auto;
    margin-bottom:18px;
}

.footer-brand p{
    max-width:420px;
    color:#cfcfcf;
    font-size:14px;
    line-height:1.8;
}

.footer-menu h3{
    color:var(--gold);
    font-size:16px;
    margin-bottom:15px;
}

.footer-menu a{
    display:block;
    color:#d0d0d0;
    font-size:14px;
    margin-bottom:12px;
    transition:.3s;
}

.footer-menu a:hover{
    color:var(--red);
    transform:translateX(6px);
}

.footer-badge{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin:25px 0;
}

.footer-badge span{
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(255,30,30,.45);
    background:rgba(15,15,15,.75);
    color:#fff;
    font-size:12px;
    font-weight:900;
    box-shadow:0 0 14px rgba(255,0,0,.18);
}

.footer-copy{
    text-align:center;
    color:#777;
    font-size:12px;
}

.skip-link{

    position:absolute;

    left:-9999px;

    top:20px;

    background:#ff2020;

    color:#fff;

    padding:12px 18px;

    border-radius:8px;

    z-index:99999;

}

.skip-link:focus{

    left:20px;

}