/* =========================
   HERO
========================= */

.projects-hero{
    position: relative;

    overflow: hidden;

    padding:
        80px 0
        120px;

    background:
        linear-gradient(
            135deg,
            #071421 0%,
            #0b2c4d 55%,
            #102f52 100%
        );
}

/* GLOWS */
.projects-glow{
    position: absolute;

    border-radius: 50%;
    filter: blur(90px);

    opacity: .25;
}

.projects-glow-1{
    width: 350px;
    height: 350px;

    background: #f59e0b;

    top: -120px;
    right: -120px;
}

.projects-glow-2{
    width: 300px;
    height: 300px;

    background: #1d4f86;

    bottom: -120px;
    left: -100px;
}

/* CONTENT */
.projects-hero-content{
    position: relative;
    z-index: 2;
}

/* BADGE */
.projects-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    color: #f59e0b;

    font-size: .82rem;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    margin-bottom: 28px;
}

/* TITLE */
.projects-title{
    font-size: clamp(3.2rem, 7vw, 6.2rem);

    line-height: .92;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 30px;
}

.projects-title span{
    display: block;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ffd089
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.projects-subtitle{
    max-width: 640px;

    color: rgba(255,255,255,.76);

    font-size: 1.1rem;
    line-height: 2;

    margin-bottom: 40px;
}

/* ACTIONS */
.projects-actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* BTN PRIMARY */
.btn-project-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    border-radius: 999px;

    background: #f59e0b;

    color: #0b2c4d;

    font-weight: 800;

    text-decoration: none;

    transition: .3s ease;
}

.btn-project-primary:hover{
    transform: translateY(-4px);

    background: #ffb733;

    color: #0b2c4d;
}

/* BTN SECONDARY */
.btn-project-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(10px);

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.btn-project-secondary:hover{
    background: rgba(255,255,255,.10);

    color: #fff;

    transform: translateY(-4px);
}

/* IMAGE */
.projects-image-wrap{
    position: relative;
}

.projects-image{
    width: 100%;

    border-radius: 30px;

    box-shadow:
        0 40px 90px rgba(0,0,0,.35);

    position: relative;
    z-index: 2;
}

/* FLOAT CARD */
.projects-floating-card{
    position: absolute;

    left: -40px;
    bottom: 40px;

    max-width: 280px;

    padding: 22px;

    border-radius: 24px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(16px);

    z-index: 3;

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);
}

.projects-floating-card strong{
    display: block;

    color: #fff;

    font-size: 1rem;
    font-weight: 800;

    margin-bottom: 10px;
}

.projects-floating-card span{
    color: rgba(255,255,255,.72);

    font-size: .92rem;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 992px){

    .projects-hero{
        padding:
            60px 0
            90px;
    }

    .projects-image-wrap{
        margin-top: 30px;
    }

    .projects-floating-card{
        left: 20px;
        bottom: 20px;
    }

}

@media (max-width: 768px){

    .projects-title{
        line-height: 1;
    }

    .projects-subtitle{
        font-size: 1rem;
        line-height: 1.9;
    }

    .projects-floating-card{
        position: relative;

        left: auto;
        bottom: auto;

        margin-top: -50px;
    }

}

/* =========================
   PROCESS SECTION
========================= */

.projects-process-section{
    position: relative;

    overflow: hidden;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #08111b 0%,
            #091521 100%
        );
}

/* TOP GLOW */
.projects-process-section::before{
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(245,158,11,.08);

    filter: blur(120px);

    top: -180px;
    left: -180px;
}

/* HEADER */
.projects-process-header{
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 120px;
}

/* BADGE */
.projects-process-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #f59e0b;

    font-size: .82rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    margin-bottom: 28px;
}

/* TITLE */
.projects-process-title{
    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 30px;
}

.projects-process-title span{
    display: block;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ffd089
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.projects-process-text{
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 1.08rem;
    line-height: 2;
}

/* TIMELINE */
.projects-process-timeline{
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 140px;
}

/* CENTER LINE */
.projects-process-timeline::before{
    content: '';

    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.12),
            transparent
        );

    transform: translateX(-50%);
}

/* ITEM */
.projects-process-item{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* REVERSE */
.projects-process-item.reverse .projects-process-image{
    order: 2;
}

.projects-process-item.reverse .projects-process-content{
    order: 1;
}

/* IMAGE */
.projects-process-image{
    position: relative;
}

.projects-process-image img{
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

/* CONTENT */
.projects-process-content{
    position: relative;

    padding: 30px;
}

/* STEP */
.projects-process-step{
    position: absolute;

    top: -40px;
    left: 0;

    font-size: 7rem;
    font-weight: 900;

    color: rgba(255,255,255,.04);

    line-height: 1;
}

/* H4 */
.projects-process-content h4{
    position: relative;
    z-index: 2;

    font-size: 2.2rem;
    font-weight: 800;

    color: #fff;

    margin-bottom: 25px;
}

/* P */
.projects-process-content p{
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.72);

    line-height: 2;

    font-size: 1rem;
}

/* MOBILE */
@media (max-width: 992px){

    .projects-process-timeline::before{
        display: none;
    }

    .projects-process-item{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-process-item.reverse .projects-process-image,
    .projects-process-item.reverse .projects-process-content{
        order: initial;
    }

    .projects-process-image img{
        height: 380px;
    }

}

@media (max-width: 768px){

    .projects-process-section{
        padding: 100px 0;
    }

    .projects-process-title{
        line-height: 1;
    }

    .projects-process-content{
        padding: 10px;
    }

    .projects-process-content h4{
        font-size: 1.7rem;
    }

    .projects-process-step{
        font-size: 5rem;
    }

}

/* =========================
   VIDEO SECTION
========================= */

.projects-video-section{
    position: relative;

    overflow: hidden;

    padding: 140px 0;

    background:
        linear-gradient(
            180deg,
            #0b1622 0%,
            #07111b 100%
        );
}

/* GLOW */
.projects-video-glow{
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(245,158,11,.08);

    filter: blur(120px);

    top: -120px;
    right: -120px;
}

/* HEADER */
.projects-video-header{
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 70px;
}

/* BADGE */
.projects-video-badge{
    display: inline-flex;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #f59e0b;

    font-size: .82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .14em;

    margin-bottom: 28px;
}

/* TITLE */
.projects-video-title{
    font-size: clamp(3rem, 6vw, 5.2rem);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -0.05em;

    color: #fff;

    margin-bottom: 30px;
}

.projects-video-title span{
    display: block;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ffd089
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.projects-video-text{
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 1.08rem;
    line-height: 2;
}

/* WRAPPER */
.projects-video-wrapper{
    position: relative;
    z-index: 2;

    max-width: 1200px;

    margin: 0 auto;

    border-radius: 34px;

    overflow: hidden;

    box-shadow:
        0 40px 90px rgba(0,0,0,.45);

    border:
        1px solid rgba(255,255,255,.06);

    background: #000;
}

/* VIDEO */
.projects-video{
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    display: block;
}

/* MOBILE */
@media (max-width: 768px){

    .projects-video-section{
        padding: 100px 0;
    }

    .projects-video-title{
        line-height: 1;
    }

    .projects-video-text{
        font-size: 1rem;
        line-height: 1.9;
    }

    .projects-video-wrapper{
        border-radius: 24px;
    }

}