/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#0a0a0a;
    color:#fff;
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

ul{
    list-style:none;
}

/* ===================================
   CONTAINER
=================================== */

.container{

    width:min(1280px,92%);
    margin:auto;

}

/* ===================================
   BUTTON
=================================== */

.button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    border-radius:999px;

    background:#FF5A1F;

    color:white;

    font-weight:700;

    transition:.35s;

}

.button:hover{

    background:#ff7a47;

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(255,90,31,.35);

}

/* ===================================
   HEADER
=================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(10,10,10,.45);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.header .container{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:30px;

    font-weight:900;

    letter-spacing:.25em;

}

.nav{

    display:flex;

    gap:46px;

}

.nav a{

    color:#cfcfcf;

    transition:.3s;

    position:relative;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#FF5A1F;

    transition:.35s;

}

.nav a:hover{

    color:white;

}

.nav a:hover::after{

    width:100%;

}

.nav a.active{

    color:#FF5A1F;

}

.burger{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.burger span{

    width:28px;

    height:2px;

    background:white;

    transition:.35s;

}

/* ===================================
   HERO
=================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-2;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82),
        rgba(0,0,0,.45)
    );

    z-index:-1;

}

.hero-content{

    padding-top:90px;

    max-width:760px;

}

.hero span{

    display:inline-block;

    color:#FF5A1F;

    font-weight:700;

    letter-spacing:.35em;

    margin-bottom:28px;

}

.hero h1{

    font-size:86px;

    line-height:.95;

    font-weight:900;

    text-transform:uppercase;

}

.hero p{

    margin-top:34px;

    color:#d0d0d0;

    font-size:22px;

    line-height:1.8;

    max-width:620px;

}

.hero .button{

    margin-top:50px;

}

/* ===================================
   MARQUEE
=================================== */

.marquee{

    background:#FF5A1F;

    overflow:hidden;

    white-space:nowrap;

    padding:22px 0;

}

.track{

    display:inline-block;

    color:#fff;

    font-size:42px;

    font-weight:900;

    letter-spacing:.18em;

    text-transform:uppercase;

    animation:marquee 28s linear infinite;

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* ===================================
   FEATURES
=================================== */

.features{

    padding:130px 0;

    background:#0d0d0d;

}

.features h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:#171717;

    border:1px solid rgba(255,255,255,.06);

    border-radius:32px;

    padding:45px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#FF5A1F;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.icon{

    font-size:60px;

    margin-bottom:30px;

}

.card h3{

    font-size:30px;

    margin-bottom:18px;

}

.card p{

    color:#bfbfbf;

    line-height:1.8;

}

/* ===================================
   GALLERY
=================================== */

.gallery{

    padding:140px 0;

    background:#090909;

    overflow:hidden;

}

.gallery h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.gallery-row{

    overflow:hidden;

    margin-bottom:26px;

}

.gallery-track{

    display:flex;

    gap:24px;

    width:max-content;

    animation:galleryScroll 70s linear infinite;

}

.gallery-row.reverse .gallery-track{

    animation:galleryScrollReverse 70s linear infinite;

}

.gallery-track:hover{

    animation-play-state:paused;

}

.gallery-track img{

    width:420px;

    height:280px;

    object-fit:cover;

    border-radius:26px;

    transition:.45s;

    flex-shrink:0;

}

.gallery-track img:hover{

    transform:scale(1.06);

}

@keyframes galleryScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes galleryScrollReverse{

    from{

        transform:translateX(-50%);

    }

    to{

        transform:translateX(0);

    }

}

/* ===================================
   SECTION LABEL
=================================== */

.section-label{

    display:block;

    text-align:center;

    color:#FF5A1F;

    letter-spacing:.4em;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

/* ===================================
   PLANS
=================================== */

.plans{

    padding:140px 0;

    background:#101010;

}

.plans h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.plans-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

.plan{

    position:relative;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:34px;

    padding:50px 40px;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.plan:hover{

    transform:translateY(-12px);

    border-color:#FF5A1F;

}

.plan h3{

    font-size:34px;

    margin-bottom:25px;

    text-align:center;

}

.price{

    font-size:54px;

    font-weight:900;

    color:#FF5A1F;

    text-align:center;

    margin-bottom:35px;

}

.plan ul{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

    flex:1;

}

.plan li{

    color:#d1d1d1;

    font-size:18px;

}

.plan .button{

    width:100%;

}

.featured{

    border:2px solid #FF5A1F;

    transform:scale(1.05);

    box-shadow:0 20px 70px rgba(255,90,31,.2);

}

.featured:hover{

    transform:scale(1.05) translateY(-12px);

}

.badge{

    position:absolute;

    top:-16px;

    left:50%;

    transform:translateX(-50%);

    background:#FF5A1F;

    color:white;

    padding:10px 22px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.18em;

}

/* ===================================
   COACHES
=================================== */

.coaches{

    padding:140px 0;

    background:#090909;

}

.coaches h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.coach-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.coach{

    overflow:hidden;

    border-radius:30px;

    background:#181818;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.coach:hover{

    transform:translateY(-10px);

    border-color:#FF5A1F;

}

.coach img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:.6s;

}

.coach:hover img{

    transform:scale(1.08);

}

.coach-info{

    padding:30px;

}

.coach-info h3{

    font-size:30px;

    margin-bottom:10px;

}

.coach-info p{

    color:#FF5A1F;

    font-size:18px;

    font-weight:600;

}

/* ===================================
   STATS
=================================== */

.stats{

    padding:140px 0;

    background:#101010;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    text-align:center;

    background:#181818;

    border:1px solid rgba(255,255,255,.06);

    border-radius:28px;

    padding:50px 25px;

    transition:.35s;

}

.stat:hover{

    transform:translateY(-8px);

    border-color:#FF5A1F;

}

.stat h2{

    font-size:68px;

    color:#FF5A1F;

    margin-bottom:18px;

    font-weight:900;

}

.stat p{

    color:#bfbfbf;

    line-height:1.7;

    font-size:18px;

}

/* ===================================
   REVIEWS
=================================== */

.reviews{

    padding:140px 0;

    background:#0b0b0b;

}

.reviews h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review{

    background:#181818;

    border:1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:40px;

    transition:.35s;

}

.review:hover{

    transform:translateY(-10px);

    border-color:#FF5A1F;

}

.review{

    color:#FF5A1F;

    font-size:22px;

}

.review p{

    margin:24px 0;

    color:#d0d0d0;

    line-height:1.9;

    font-size:17px;

}

.review strong{

    display:block;

    color:white;

    font-size:18px;

    font-weight:700;

}

/* ===================================
   FAQ
=================================== */

.faq{

    padding:140px 0;

    background:#101010;

}

.faq h2{

    text-align:center;

    font-size:58px;

    margin-bottom:70px;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    margin-bottom:20px;

    background:#181818;

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 34px;

    background:none;

    color:white;

    font-size:22px;

    font-weight:600;

    transition:.3s;

}

.faq-question:hover{

    color:#FF5A1F;

}

.faq-question span{

    font-size:30px;

    transition:.35s;

}

.faq-item.active span{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 34px 30px;

    color:#bfbfbf;

    line-height:1.9;

}

/* ===================================
   CONTACT
=================================== */

.contact{

    padding:140px 0;

    background:#0b0b0b;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}

.contact-info h2{

    font-size:60px;

    line-height:1.1;

    margin-bottom:30px;

}

.contact-info>p{

    color:#bfbfbf;

    line-height:1.9;

    margin-bottom:50px;

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.contact-item{

    padding-left:22px;

    border-left:3px solid #FF5A1F;

}

.contact-item h4{

    margin-bottom:10px;

    font-size:18px;

}

.contact-item a,

.contact-item p{

    color:#bfbfbf;

}

.contact-form{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:42px;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    background:#242424;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    border-radius:16px;

    padding:18px 22px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#FF5A1F;

}

.contact-form button{

    background:#FF5A1F;

    color:white;

    padding:18px;

    border-radius:16px;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.contact-form button:hover{

    background:#ff7647;

    transform:translateY(-4px);

}

/* ===================================
   FOOTER
=================================== */

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding:80px 0;

}

.footer h3{

    font-size:34px;

    margin-bottom:18px;

}

.footer h4{

    margin-bottom:20px;

}

.footer p,

.footer li{

    color:#9b9b9b;

    line-height:2;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.footer a{

    transition:.3s;

}

.footer a:hover{

    color:#FF5A1F;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.05);

    padding:26px;

    text-align:center;

    color:#777;

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:1100px){

    .grid,

    .plans-grid,

    .coach-grid,

    .review-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats .container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:900px){

    .nav{

        position:fixed;

        top:82px;

        left:-100%;

        width:100%;

        height:calc(100vh - 82px);

        background:#111;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:40px;

        transition:.35s;

    }

    .nav.active{

        left:0;

    }

    .burger{

        display:flex;

    }

    .burger.active span:nth-child(1){

        transform:translateY(8px) rotate(45deg);

    }

    .burger.active span:nth-child(2){

        opacity:0;

    }

    .burger.active span:nth-child(3){

        transform:translateY(-8px) rotate(-45deg);

    }

    .contact-grid,

    .footer-grid{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:64px;

    }

    .contact-info h2{

        font-size:46px;

    }

}

@media(max-width:768px){

    .grid,

    .plans-grid,

    .coach-grid,

    .review-grid,

    .stats .container{

        grid-template-columns:1fr;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        font-size:18px;

        margin-inline:auto;

    }

    .gallery-track img{

        width:300px;

        height:220px;

    }

    .track{

        font-size:28px;

    }

    .features h2,

    .plans h2,

    .gallery h2,

    .coaches h2,

    .reviews h2,

    .faq h2{

        font-size:42px;

    }

    .contact-info h2{

        font-size:40px;

    }

}

@media(max-width:480px){

    .header .container{

        height:72px;

    }

    .logo{

        font-size:22px;

    }

    .hero h1{

        font-size:36px;

    }

    .button{

        width:100%;

    }

    .contact-form{

        padding:28px;

    }

}

